Skip to content

Commit

Permalink
Add "aarch64" to the set of ARM CPU archs
Browse files Browse the repository at this point in the history
This change, suggested by @tylerfox at
tensorflow/tensorflow#851 (comment)
allows Bazel 0.4.5 to be built on a Jetson TX1 with JetPack 3.0.

The other of @tylerfox's suggested changes was made in 7c4afb6.

Refs #1264

Closes #2703.
PiperOrigin-RevId: 152498304
  • Loading branch information
dtrebbien authored and hlopko committed Apr 7, 2017
1 parent ee3e192 commit e59d3a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/google/devtools/build/lib/util/CPU.java
Expand Up @@ -24,7 +24,7 @@ public enum CPU {
X86_32("x86_32", ImmutableSet.of("i386", "i486", "i586", "i686", "i786", "x86")),
X86_64("x86_64", ImmutableSet.of("amd64", "x86_64", "x64")),
PPC("ppc", ImmutableSet.of("ppc", "ppc64", "ppc64le")),
ARM("arm", ImmutableSet.of("arm", "armv7l")),
ARM("arm", ImmutableSet.of("aarch64", "arm", "armv7l")),
S390X("s390x", ImmutableSet.of("s390x", "s390")),
UNKNOWN("unknown", ImmutableSet.<String>of());

Expand Down

0 comments on commit e59d3a0

Please sign in to comment.