Skip to content

Commit

Permalink
Add constant for riscv64 architecture in Platform class
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesWell committed Oct 2, 2024
1 parent c25f2b7 commit 916d7f2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-Version: 3.31.100.qualifier
Bundle-Version: 3.32.0.qualifier
Bundle-SymbolicName: org.eclipse.core.runtime; singleton:=true
Bundle-Vendor: %providerName
Bundle-Activator: org.eclipse.core.internal.runtime.PlatformActivator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,15 @@ public static boolean isMac() {
*/
public static final String ARCH_AARCH64 = "aarch64";//$NON-NLS-1$

/**
* Constant string (value {@code aarch64} indicating the platform is running on
* an RISC-V 64bit-based architecture.
*
* @since 3.32
*
*/
public static final String ARCH_RISCV64 = "riscv64";//$NON-NLS-1$

/**
* Constant string (value "amd64") indicating the platform is running on an
* AMD64-based architecture.
Expand Down

0 comments on commit 916d7f2

Please sign in to comment.