Slackbot
04/26/2023, 8:18 PMMatthew Von-Maszewski
04/26/2023, 8:29 PMlinkerArgs.add "-Wl,-force_load,$buildDir/libvw_jni.a"
linkerArgs.add "-Wl,-force_load,$buildDir/libboost_program_options.a"
I am currently downloading the two a second time into $buildDir. Would prefer to use them from the local cache.
Open to alternate syntax / methodology for "force_load" equivalent.Matthew Von-Maszewski
04/26/2023, 8:33 PMlinkerArgs.add "-Wl,--whole-archive"
linkerArgs.add "-L${buildDir}"
linkerArgs.add "-lvw_jni"
linkerArgs.add "-lboost_program_options"