Skip to content

Commit

Permalink
Merge pull request #88 from smlambert/arm32
Browse files Browse the repository at this point in the history
Add case for os.arch equals 'arm'
  • Loading branch information
renfeiw authored Jul 7, 2020
2 parents 4689da2 + 8e4b936 commit da88ca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/openj9/envInfo/JavaInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public String getSPEC() {
spec += "_ppc";
} else if (osArch.contains("s390x")) {
spec += "_390";
} else if (osArch.contains("aarch")) {
} else if (osArch.contains("aarch") || osArch.contains("arm")) {
spec += "_arm";
} else if (osArch.contains("sparcv9")) {
spec += "_sparcv9";
Expand Down

0 comments on commit da88ca4

Please sign in to comment.