Parse out arm isa targets from dumpmachine The current parsing logic of the dumpmachine tuple lacks any arm cases which means tgt_isa never gets set, so for all arm targets, we get detected as generic-gnu. Add some basic arm checks here so the automatic detection logic works. Change-Id: Ie5e98142876025c6708604236bc519c0bdb09319
diff --git a/build/make/configure.sh b/build/make/configure.sh index 26eb864..eeb959a 100755 --- a/build/make/configure.sh +++ b/build/make/configure.sh
@@ -593,6 +593,15 @@ # detect tgt_isa case "$gcctarget" in + armv6*) + tgt_isa=armv6 + ;; + armv7*) + tgt_isa=armv7 + ;; + armv5te*) + tgt_isa=armv5te + ;; *x86_64*|*amd64*) tgt_isa=x86_64 ;;