Skip to content

Commit

Permalink
Added another alias to x32
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlauer committed Nov 3, 2023
1 parent e245fb3 commit 8d87ba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/fizzed/jne/HardwareArchitecture.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*/
public enum HardwareArchitecture {

X32("x32", new String[] { "i386", "i586", "i686" }),
X32("x32", new String[] { "i386", "i586", "i686" }, new String[] { "x86" }),
X64("x64", new String[] { "x86_64", "amd64" }), // also known as amd64 or x86_64
ARMEL("armel", null, new String[] { "arm32v5", "arm32v6" }), // ARMEL, ARM 32-bit SF v6, v7, v5
ARMHF("armhf", null, new String[] { "arm32v7" }), // ARMHF stands for "ARM hard float", and is the name given to a Debian port for ARM processors (armv7+) that have hardware floating point support, which is found on most modern 32-bit ARM boards
Expand Down

0 comments on commit 8d87ba9

Please sign in to comment.