|
 | make/scripts/adb-reinstall-all-x86.sh |
 | make/scripts/make.gluegen.all.sh (diff) |
 | make/lib/gluegen-cpptasks-android-x86.xml |
 | src/java/jogamp/common/os/PlatformPropsImpl.java (diff) |
 | make/gluegen-cpptasks-base.xml (diff) |
 | make/scripts/adb-install-all-x86.sh |
 | make/scripts/make.gluegen.all.android-x86-cross.sh |
|
 | make/scripts/make.gluegen.all.linux-ppc64le.sh |
 | make/build.xml (diff) |
 | make/gluegen-cpptasks-base.xml (diff) |
 | src/java/jogamp/common/os/PlatformPropsImpl.java (diff) |
|
 | doc/manual/example5/gen.sh (diff) |
 | doc/manual/example6/gen.sh (diff) |
 | doc/HowToBuild.html (diff) |
 | doc/manual/example1/gen.sh (diff) |
 | doc/manual/example4/gen.sh (diff) |
 | doc/manual/index.html (diff) |
 | doc/manual/example7/gen.sh (diff) |
 | doc/manual/example2/gen.sh (diff) |
 | doc/manual/example3/gen.sh (diff) |
|
 | src/java/com/jogamp/common/os/AndroidVersion.java (diff) |
Commit
e7ac6b284eb3515f552cba491c43efe75f0a4eba
by Sven GothelAdding 'jogamp.gluegen.TestTempDirExec' property, allowing to disable testing executable of temp dir This also avoids trying to unpack the test executable on Windows, which may cause a virus scanner to halt the process or otherwise cause issues.
|
 | src/java/com/jogamp/common/util/IOUtil.java (diff) |
|
 | make/scripts/make.gluegen.all.win64.bat (diff) |
|
 | .classpath (diff) |
Commit
4375d2824ac6ff656df184ea0c19ab781e3524e8
by Sven GothelBug 1219, Bug 1231: Avoid deflating test-exe on Windows using java.nio.file.Files.isExecutable(Path) Attempt to resolved virus scanner false positive detection on Windows while deflating the native code test-exe file in the temporary folder. As Julien Gouesse suggested, using Java 1.7's java.nio.file.Files.isExecutable(Path) _may_ resolve the issue, this has to be thorougly tested. This patch favors the nio's isExecutable file's ACL test over the more intrusive execution itself using a simple shell script file w/ set executable flag. Mind that previous tests allowed the shell script's execution, even if the temp folder did not allow execution of native code. We have to see how our testing results will be on this attempt.
|
 | src/java/com/jogamp/common/util/IOUtil.java (diff) |
 | make/scripts/runtest.sh (diff) |
Commit
0c567321c6d594ec11edfd3aa848a0a634c544ef
by Sven GothelBug 1219, Bug 1231: Re-add executable test by execution Re-adding executable test by execution is required for 'blocker technology' like Windows's 'Software Restriction Policies (SRP)', which only gets activated by the actual execution attempt. Merely testing the file's (ACL) execution flags via NIO's isExecutable is not sufficient. Implementation first tests the file's (ACL) execution flags via NIO's isExecutable. If the NIO test was successful or not available, the actual execution test is performed. To mitigate the virus scanner's false positive, we use an executable shell script per default now, which may be overriden by the new environment 'jogamp.gluegen.UseNativeExeFile=true' Tested on GNU/Linux with one temp folder having mount options 'noexec' and on Windows using Software Restriction Policies (SRP) disallowing one temp folder. Both temp folder were first in line via environment 'java.io.tmpdir'.
|
 | make/scripts/runtest-x64.bat (diff) |
 | make/scripts/java-win64.bat (diff) |
 | src/java/com/jogamp/common/util/IOUtil.java (diff) |
 | make/scripts/runtest.sh (diff) |
|
 | doc/HowToBuild.html (diff) |
Commit
03bcef96e3105923ccc8c827b70b97ff0aa3464c
by Sven GothelBug 1316: MacOSX: Keep *.dylib (Don't move to *.jnilib) Since Java8 (or even earlier), JRE on OSX uses *.dylib native library suffix instead of *.jnilib when automatically searching and loading them. This is not easily being recognized by JogAmp, since we explicitly name the native libraries with full path when testing with our TempJarCache.
|
 | make/build.xml (diff) |
 | make/build-test.xml (diff) |
 | make/gluegen-cpptasks-base.xml (diff) |
 | make/scripts/runtest.sh (diff) |
|
 | src/java/com/jogamp/common/util/ReflectionUtil.java (diff) |
 | src/java/com/jogamp/common/util/Bitstream.java (diff) |
 | src/junit/com/jogamp/common/util/BitDemoData.java (diff) |
 | src/java/com/jogamp/common/util/IOUtil.java (diff) |
 | src/java/com/jogamp/common/jvm/JNILibLoaderBase.java (diff) |
|
 | src/java/com/jogamp/common/os/Platform.java (diff) |
 | src/java/com/jogamp/common/jvm/JNILibLoaderBase.java (diff) |
 | src/java/com/jogamp/common/util/cache/TempFileCache.java (diff) |
 | src/java/com/jogamp/common/util/cache/TempJarCache.java (diff) |
 | src/java/com/jogamp/common/util/cache/TempCacheReg.java (diff) |
 | src/junit/com/jogamp/common/util/TestTempJarCache.java (diff) |
 | src/junit/com/jogamp/common/util/TestJarUtil.java (diff) |
 | src/java/com/jogamp/common/os/NativeLibrary.java (diff) |
Commit
00ad70b3bd7f8859c710039857aa7da17a29b3d7
by Sven GothelBug 1369: Source Certification Contract (SCC): Initial SHA256 fingerprint & runtime validation This change implements a strong SHA256 signature over: 1) source tree inclusive make recipe (SHA256-Source) 2) all class files (SHA256-Classes) 3) all native libraries (SHA256-Natives) 4) the class files as deployed in the jar (SHA256-Classes-this) 5) the native libraries as deployed in the jar (SHA256-Natives-this) and drops all of these in the deployed Jar file. This allows SHA256 validation of (4) + (5) at runtime and further complete validation (1), (2) and (3) offline. Full SCC would now required (1) - (3) to be placed on a server for further validation. Optionally we may use GPG <https://gnupg.org/> or PGP to validate the build entity to implement the chain of trust <https://en.wikipedia.org/wiki/Chain_of_trust> The SHA256 runtime validation is tested via: com.jogamp.common.util.TestVersionInfo
|
 | make/build.xml (diff) |
 | make/Manifest-android-launcher (diff) |
 | src/java/com/jogamp/common/util/IOUtil.java (diff) |
 | src/junit/com/jogamp/common/util/TestVersionInfo.java (diff) |
 | make/Manifest-rt-alt (diff) |
 | src/java/com/jogamp/common/util/JogampVersion.java (diff) |
 | make/Manifest-rt-natives (diff) |
 | make/Manifest-rt (diff) |
 | make/Manifest-rt-android (diff) |
 | src/java/com/jogamp/common/util/cache/TempJarCache.java (diff) |
 | make/Manifest-rt.cdc (diff) |
 | src/java/com/jogamp/common/util/SHASum.java |
 | make/scripts/runtest.sh (diff) |
 | src/java/com/jogamp/common/GlueGenVersion.java (diff) |
 | make/Manifest (diff) |
|
 | make/scripts/test-win32-smb_share.bat (diff) |
 | make/scripts/java-win64.bat (diff) |
 | make/scripts/java-win32.bat (diff) |
 | make/scripts/setenv-build-jogl-x86.sh (diff) |
 | make/scripts/setenv-build-jogl-x86_64.sh (diff) |
 | make/scripts/make.gluegen.all.win64.bat (diff) |
 | make/scripts/make.gluegen.all.win32.bat (diff) |
|
 | src/junit/com/jogamp/common/util/TestTempJarCache.java (diff) |
 | make/scripts/runtest.sh (diff) |
|
 | src/java/com/jogamp/common/util/SHASum.java (diff) |
 | make/Manifest-rt-android (diff) |
 | make/Manifest-android-launcher (diff) |
 | make/Manifest-rt-natives (diff) |
 | make/scripts/runtest.sh (diff) |
 | src/junit/com/jogamp/common/util/TestVersionInfo.java (diff) |
 | make/Manifest-rt (diff) |
 | make/build.xml (diff) |
 | src/java/com/jogamp/common/util/JogampVersion.java (diff) |
 | make/Manifest (diff) |
 | make/Manifest-rt.cdc (diff) |
 | make/Manifest-rt-alt (diff) |
Commit
302599570c04bae0d96e3b20981fab1ffcaf61ae
by Sven GothelBug 1369: SCC: Clarify & fix build dependencies in build.xml Clean 'base.compile' order w/ matching build -> package tuples, having gluegen.build.shasum after the last actual build and before packaging. - init, - android-launcher.build, - gluegen.build.java, - gluegen.build.native, - gluegen.build.shasum, - gluegen.package.java, - gluegen.package.native, - android-launcher.package Further properly utilize a 'gluegen.package.*.done' property, corresponding with the 'gluegen.build.skip.*' property. Drop 'build.javaonly' gluegen.build.native exclusion
|
 | make/build.xml (diff) |