danielwsutton
danielwsutton
> lib_dir="${jre_dir}/jli" I forked this change, https://github.com/danielwsutton/node-java/commit/1e30ba786a6965fd8df2b643a5d962b06891d4fb From: ``` lib_dir="${jre_dir}/jli" ``` To: ``` if [[ -f ${jre_dir}/jli/libjli.dylib ]]; then lib_dir="${jre_dir}"/jli; else lib_dir="${jre_dir}"; fi ``` So far it seems to be...
I did run into a new issue after getting past the original problem, but can't seem to repro it locally, only when running it on aws, so that's progress atleast......
The above issue with `no member named 'GetBackingStore'` was resolved by using node 14.8.0 It seems like when you switch to a new version of Java, it forces you into...
I reverted mainline changes on my fork, and it seems to have fixed the issue, https://github.com/danielwsutton/node-java/commit/511ff1af1977e50cf9925bf3a0b2175ebbb8815a so somewhere between mainline and 0.12.1 caused this issue If i have time i'll...
If you remove the line `'-ljli'` from `binding.gyp` this build issue is resolved. Or if you downgrade jdk to 1.8. I search for a long time to figure out what...
similar issue, i'll take a look > https://github.com/joeferner/node-java/issues/497
> lib_dir="${jre_dir}/jli" I forked this change, https://github.com/danielwsutton/node-java/commit/1e30ba786a6965fd8df2b643a5d962b06891d4fb From: ``` lib_dir="${jre_dir}/jli" ``` To: ``` if [[ -f ${jre_dir}/jli/libjli.dylib ]]; then lib_dir="${jre_dir}"/jli; else lib_dir="${jre_dir}"; fi ``` So far it seems to be...
I did run into a new issue, but can't seem to repro it locally, only when running it on aws, ``` CXX(target) Release/obj.target/nodejavabridge_bindings/src/utils.o ../src/utils.cpp:488:16: error: no member named 'GetBackingStore' in...
The above issue with no member named 'GetBackingStore' was resolved by using node 14.8.0 It seems like when you switch to a new version of Java, it forces you into...