Skip to content

Commit

Permalink
Add constant for ppc64le architecture in Platform class
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesWell authored and akurtakov committed Oct 3, 2024
1 parent 44074c7 commit 65ab78f
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,14 @@ public static boolean isMac() {
*/
public static final String ARCH_AARCH64 = "aarch64";//$NON-NLS-1$

/**
* Constant string (value {@code ppc64le}) indicating the platform is running on
* an little-endian PowerPC 64bit based architecture.
*
* @since 3.32
*/
public static final String ARCH_PPC64LE = "ppc64le"; //$NON-NLS-1$

/**
* Constant string (value {@code riscv64} indicating the platform is running on
* an RISC-V 64bit-based architecture.
Expand Down

0 comments on commit 65ab78f

Please sign in to comment.