File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
src/main/java/org/xerial/snappy Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ public class OSInfo {
44
44
public static final String IA64 = "ia64" ;
45
45
public static final String PPC = "ppc" ;
46
46
public static final String PPC64 = "ppc64" ;
47
+ public static final String PPC64LE = "ppc64le" ;
47
48
public static final String IBMZ = "s390" ;
48
49
public static final String IBMZ_64 = "s390x" ;
49
50
public static final String AARCH_64 = "aarch64" ;
@@ -80,6 +81,9 @@ public class OSInfo {
80
81
archMapping .put ("power_pc" , PPC );
81
82
archMapping .put ("power_rs" , PPC );
82
83
84
+ //PowerPC 64bit Little Endian mappings
85
+ archMapping .put (PPC64LE , PPC64LE );
86
+
83
87
// TODO: PowerPC 64bit mappings
84
88
archMapping .put (PPC64 , PPC64 );
85
89
archMapping .put ("power64" , PPC64 );
You can’t perform that action at this time.
0 commit comments