diff options
author | Joakim Sindholt <opensource@zhasha.com> | 2016-02-17 13:35:18 +0100 |
---|---|---|
committer | Joakim Sindholt <opensource@zhasha.com> | 2016-02-17 13:35:18 +0100 |
commit | 7c923730de6bef0a9eca2fa8c1a941537a0a17b4 (patch) | |
tree | ca5bac299710644da3b3700f6c1652892cfcd3ca | |
parent | e3bbc99a5c9ffb7e8b4e3c9722212f2f58e6f9de (diff) |
use i686 when compiling for 386
-rw-r--r-- | bin/arch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/arch.sh b/bin/arch.sh index 7550053..8fb22a5 100644 --- a/bin/arch.sh +++ b/bin/arch.sh @@ -4,7 +4,7 @@ case "$objtype" in spim) O=0; MARCH="mipsel" CLANGARCH="mipsel-none-gnu" ;; arm) O=5; MARCH="armv7a" CLANGARCH="armv7a-none-eabihf" ;; amd64) O=6; MARCH="generic" CLANGARCH="x86_64-pc-gnu" ;; - 386) O=8; MARCH="i686" CLANGARCH="i386-pc-gnu" ;; + 386) O=8; MARCH="i686" CLANGARCH="i686-pc-gnu" ;; power64) O=9; MARCH="ppc64" CLANGARCH="ppc64-none-gnu" ;; sparc) O=k; MARCH="sparc" CLANGARCH="sparc-none-gnu" ;; power) O=q; MARCH="ppc" CLANGARCH="powerpc-ellcc-gnu" ;; |