summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-09-12 18:15:42 +0200
committerAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-09-12 18:15:42 +0200
commitbf9242cbbc2a66c622af821aa39c183d28e4d22f (patch)
tree2bbaa137fd5a88a7d1bedbb297a64a62364474f6
parentab2a3710c50b28d11bd57ae00eab283cbab65d8c (diff)
downloadembtoolkit-bf9242cbbc2a66c622af821aa39c183d28e4d22f.tar.gz
embtoolkit-bf9242cbbc2a66c622af821aa39c183d28e4d22f.tar.bz2
embtoolkit-bf9242cbbc2a66c622af821aa39c183d28e4d22f.tar.xz
Toolchain: MIPS: fix mips64 toolchain build
Signed-off-by: Abdoulaye Walsimou Gaye <walsimou@walsimou.com>
-rw-r--r--mk/mips-arch.mk16
1 files changed, 8 insertions, 8 deletions
diff --git a/mk/mips-arch.mk b/mk/mips-arch.mk
index 5cc1ccc..85a0dba 100644
--- a/mk/mips-arch.mk
+++ b/mk/mips-arch.mk
@@ -70,45 +70,45 @@ endif
ifeq ($(CONFIG_EMBTK_ARCH_MIPS_MIPS32_LITTLE),y)
GNU_TARGET := mipsel-linux
-STRICT_GNU_TARGET := mipsisa32el-unknown-linux-gnu
+STRICT_GNU_TARGET := mips32el-unknown-linux-gnu
GNU_TARGET_ARCH := mips32
endif
ifeq ($(CONFIG_EMBTK_ARCH_MIPS_MIPS32_BIG),y)
GNU_TARGET := mips-linux
-STRICT_GNU_TARGET := mipsisa32-unknown-linux-gnu
+STRICT_GNU_TARGET := mips32-unknown-linux-gnu
GNU_TARGET_ARCH := mips32
endif
ifeq ($(CONFIG_EMBTK_ARCH_MIPS_MIPS32R2_LITTLE),y)
GNU_TARGET := mipsel-linux
-STRICT_GNU_TARGET := mipsisa32r2el-unknown-linux-gnu
+STRICT_GNU_TARGET := mips32r2el-unknown-linux-gnu
GNU_TARGET_ARCH := mips32r2
endif
ifeq ($(CONFIG_EMBTK_ARCH_MIPS_MIPS32R2_BIG),y)
GNU_TARGET := mips-linux
-STRICT_GNU_TARGET := mipsisa32r2-unknown-linux-gnu
+STRICT_GNU_TARGET := mips32r2-unknown-linux-gnu
GNU_TARGET_ARCH := mips32r2
endif
ifeq ($(CONFIG_EMBTK_ARCH_MIPS_MIPS64_LITTLE),y)
GNU_TARGET := mips64el-linux
-STRICT_GNU_TARGET := mipsisa64el-unknown-linux-gnu
+STRICT_GNU_TARGET := mips64el-unknown-linux-gnu
GNU_TARGET_ARCH := mips64
endif
ifeq ($(CONFIG_EMBTK_ARCH_MIPS_MIPS64_BIG),y)
GNU_TARGET := mips64-linux
-STRICT_GNU_TARGET := mipsisa64-unknown-linux-gnu
+STRICT_GNU_TARGET := mips64-unknown-linux-gnu
GNU_TARGET_ARCH := mips64
endif
ifeq ($(CONFIG_EMBTK_ARCH_MIPS_MIPS64R2_LITTLE),y)
GNU_TARGET := mips64el-linux
-STRICT_GNU_TARGET := mipsisa64r2el-unknown-linux-gnu
+STRICT_GNU_TARGET := mips64r2el-unknown-linux-gnu
GNU_TARGET_ARCH := mips64r2
endif
ifeq ($(CONFIG_EMBTK_ARCH_MIPS_MIPS64R2_BIG),y)
GNU_TARGET := mips64-linux
-STRICT_GNU_TARGET := mipsisa64r2-unknown-linux-gnu
+STRICT_GNU_TARGET := mips64r2-unknown-linux-gnu
GNU_TARGET_ARCH := mips64r2
endif