ElementsProject / libwally-core

Useful primitives for wallets
Other
280 stars 134 forks source link

compile all Java classes in one `javac` invocation #418

Closed whitslack closed 11 months ago

whitslack commented 11 months ago

Starting up a JVM is not a lightweight affair. For this reason, typically all Java source files are compiled by a single invocation of javac. Use GNU Make's "grouped targets" feature to specify that all Java class files are produced by a single execution of the recipe. Further, avoid compiling the test classes if tests are disabled.

jgriffiths commented 11 months ago

Nice change! merged with rebase, closing thanks.