From: Felix Fietkau Date: Sat, 31 May 2014 13:00:46 +0000 (+0000) Subject: eglibc: add support for other mips64 ABI variants as well X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=108541e49fa2e6a23bd81ed4a065f00919407818 eglibc: add support for other mips64 ABI variants as well Signed-off-by: Felix Fietkau SVN-Revision: 40890 --- diff --git a/toolchain/eglibc/common.mk b/toolchain/eglibc/common.mk index 81f3df5018..9ef92c6667 100644 --- a/toolchain/eglibc/common.mk +++ b/toolchain/eglibc/common.mk @@ -35,7 +35,15 @@ HOST_STAMP_BUILT:=$(CUR_BUILD_DIR)/.built HOST_STAMP_INSTALLED:=$(TOOLCHAIN_DIR)/stamp/.eglibc_$(VARIANT)_installed ifeq ($(ARCH),mips64) - TARGET_CFLAGS += -mabi=64 + ifdef CONFIG_MIPS64_ABI_N64 + TARGET_CFLAGS += -mabi=64 + endif + ifdef CONFIG_MIPS64_ABI_N32 + TARGET_CFLAGS += -mabi=n32 + endif + ifdef CONFIG_MIPS64_ABI_O32 + TARGET_CFLAGS += -mabi=32 + endif endif EGLIBC_CONFIGURE:= \