summaryrefslogtreecommitdiff
path: root/toolchain/gcc/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-04-20 00:31:35 -0500
committerWaldemar Brodkorb <wbx@openadk.org>2015-04-20 00:31:35 -0500
commit9dbe643b99c9b4af22044d9ca57108b929cb9ecd (patch)
treef831c489438a91809d80c7a2c1d5fa8b66f1474b /toolchain/gcc/Makefile
parentfac3e853a3b99ea30f0face4bee7bebe1235e76d (diff)
remove lowercase ABI symbols. tested with x86/mips64 variants
Diffstat (limited to 'toolchain/gcc/Makefile')
-rw-r--r--toolchain/gcc/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile
index bba498390..7acf88d5b 100644
--- a/toolchain/gcc/Makefile
+++ b/toolchain/gcc/Makefile
@@ -134,10 +134,10 @@ endif
endif
ifeq ($(ADK_TARGET_ARCH_X86_64),y)
-ifeq ($(ADK_x32),y)
+ifeq ($(ADK_TARGET_ABI_X32),y)
GCC_FINAL_CONFOPTS+= --with-abi=x32
endif
-ifeq ($(ADK_64),y)
+ifeq ($(ADK_TARGET_ABI_64),y)
GCC_FINAL_CONFOPTS+= --disable-biarch --disable-multilib
endif
endif