aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnders Roxell <anders.roxell@linaro.org>2018-08-23 22:35:17 +0200
committerAnders Roxell <anders.roxell@linaro.org>2018-08-23 22:35:17 +0200
commit6f2df90db74b71c7adfa285ca0e4091fd89201c0 (patch)
tree99a0340d17d105bf69f0b8712c659e205a913506
parent922033ebb7a393be664f9c0b8f4d9fb9480fbfb2 (diff)
automated/lib/sh-test-lib: update detect_abi with i386
Change-Id: Ice90297b025b2cbf167cce3928559f2f54bd556f Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
-rwxr-xr-xautomated/lib/sh-test-lib1
1 files changed, 1 insertions, 0 deletions
diff --git a/automated/lib/sh-test-lib b/automated/lib/sh-test-lib
index 1e027958..bf729844 100755
--- a/automated/lib/sh-test-lib
+++ b/automated/lib/sh-test-lib
@@ -157,6 +157,7 @@ detect_abi() {
case "${abi}" in
armv7|armv7l|armv7el|armv7lh) abi="armeabi" ;;
arm64|armv8|arm64-v8a|aarch64) abi="arm64" ;;
+ i386|i686) abi="i386" ;;
x86_64) abi="x86_64" ;;
*) error_msg "Unsupported architecture: ${abi}" ;;
esac