diff options
author | Sven Gothel <[email protected]> | 2019-08-19 06:03:58 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-08-19 06:03:58 +0200 |
commit | c63b81c1660f65804b058d1af1b66949b06390df (patch) | |
tree | 5929c1dc905dd76e03602e5caee3108f20abe9de /make/build-test.xml | |
parent | 493f0597646a1521074512b54c77d51fdfcca280 (diff) |
Windows Regression: Mingw64 8.1.0 using statical linked tool lib Test1p1Test1p1JavaEmitter
'com.jogamp.gluegen.test.junit.generation.Test1p1JavaEmitter' exposes a regression
using MingW64 8.1.0: System.loadLibrary() gives a "Can't find dependent libraries".
Here, 'Bindingtest1p1' is linked against 'test1' and fails to load
due to its wrong dependent library name within 'Bindingtest1p1'.
MingW64 8.1.0 dropped 'libtest1.so' into 'Bindingtest1p1.dll',
which is surely wrong. Even passing '-Wl,-soname=test1.dll' didn't help.
Note: Such constellation would only work with adding
the lib-path to PATH on Windows.
Since we don't utilize the method in any of our projects,
but use the dynamic library lookup method - this is not a blocker,
but wasted some good time.
Diffstat (limited to 'make/build-test.xml')
-rw-r--r-- | make/build-test.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/make/build-test.xml b/make/build-test.xml index 736a82a..8fc595e 100644 --- a/make/build-test.xml +++ b/make/build-test.xml @@ -437,8 +437,11 @@ chmod 644 ${results}/* \${line.separator} <jvmarg value="-Drootrel.build=${rootrel.build}"/> <!-- <jvmarg value="-Djogamp.debug.NativeLibrary=true"/> - <jvmarg value="-Djogamp.debug.ProcAddressHelper=true"/> <jvmarg value="-Djogamp.debug.JNILibLoader=true"/> + <jvmarg value="-Djogamp.debug.TempFileCache=true"/> + <jvmarg value="-Djogamp.debug.JarUtil=true"/> + <jvmarg value="-Djogamp.debug.TempJarCache=true"/> + <jvmarg value="-Djogamp.debug.ProcAddressHelper=true"/> <jvmarg value="-verbose:jni"/> <jvmarg value="-client"/> --> |