Skip to content
The Jenkins Controller is preparing for shutdown. No new builds can be started.
Success

Changes

Summary

  1. Script: ADB launcher: Use system package, instead of user package (pkg (details)
  2. Bug 681: Use ELF Header + ARM EABI Section Parsing in PlatformPropsImpl (details)
  3. TestElfReader01.testGNULinuxSelfExe: Restrict to LINUX
    More change log history
    (details)
Commit 60409268e1d43be26b656b191d6684037f943123 by Sven Gothel
Script: ADB launcher: Use system package, instead of user package (pkg -> sys in URI)
The file was modifiedmake/scripts/adb-launch-main.sh (diff)
Commit 371e1dbff6f5f255ab27ed0ab32368abb06eed82 by Sven Gothel
Bug 681: Use ELF Header + ARM EABI Section Parsing in PlatformPropsImpl to to distinguish ARM soft-float/hard-float (part-2)

+    /**
+     * Returns the {@link ABIType} of the current platform using given {@link CPUType cpuType}
+     * and {@link OSType osType} as a hint.
+     * <p>
+     * Note the following queries are performed:
+     * <ul>
+     *   <li> not {@link CPUFamily#ARM} -> {@link ABIType#GENERIC_ABI} </li>
+     *   <li> else
+     *   <ul>
+     *     <li> not {@link OSType#LINUX} -> {@link ABIType#EABI_GNU_ARMEL} </li>
+     *     <li> else
+     *     <ul>
+     *       <li> Elf ARM Tags -> {@link ABIType#EABI_GNU_ARMEL}, {@link ABIType#EABI_GNU_ARMHF} </li>
+     *     </ul></li>
+     *   </ul></li>
+     * </ul>
+     * </p>
+     * <p>
+     * Elf ARM Tags are read using {@link ElfHeader}, .. and {@link SectionArmAttributes#abiVFPArgsAcceptsVFPVariant(byte)}.
+     * </p>
+     *
+     * @param cpuType
+     * @param osType
+     * @return
+     */
+    private static final ABIType queryABITypeImpl(CPUType cpuType, OSType osType) {
The file was modifiedmake/scripts/crosstest-java-linux-armv6hf-rel.sh (diff)
The file was modifiedsrc/java/jogamp/common/os/PlatformPropsImpl.java (diff)
The file was modifiedmake/scripts/crosstest-java-linux-armv6-rel.sh (diff)
The file was modifiedmake/scripts/runtest.sh (diff)
The file was modifiedsrc/java/jogamp/common/os/elf/ElfHeader.java (diff)
The file was modifiedsrc/junit/com/jogamp/common/os/TestElfReader01.java (diff)
Commit a47d19d59cc8772dcf1ef67083c4401d913ad8d2 by Sven Gothel
TestElfReader01.testGNULinuxSelfExe: Restrict to LINUX
The file was modifiedsrc/junit/com/jogamp/common/os/TestElfReader01.java (diff)