aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/gcc/Makefile.in
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2005-07-20 14:58:27 +0000
committerFelix Fietkau <nbd@openwrt.org>2005-07-20 14:58:27 +0000
commit7e7ad186ecbe9d9e986d595fe300126d961f186d (patch)
treeed2b40035dd266fda98b08fc95cdea9a43a50c50 /toolchain/gcc/Makefile.in
parent70b54787567f0c67c929976e495998c41773760a (diff)
downloadmaster-187ad058-7e7ad186ecbe9d9e986d595fe300126d961f186d.tar.gz
master-187ad058-7e7ad186ecbe9d9e986d595fe300126d961f186d.tar.bz2
master-187ad058-7e7ad186ecbe9d9e986d595fe300126d961f186d.zip
more cleanup in toolchain/
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1501 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/gcc/Makefile.in')
-rw-r--r--toolchain/gcc/Makefile.in26
1 files changed, 0 insertions, 26 deletions
diff --git a/toolchain/gcc/Makefile.in b/toolchain/gcc/Makefile.in
deleted file mode 100644
index 2963ffbe3c..0000000000
--- a/toolchain/gcc/Makefile.in
+++ /dev/null
@@ -1,26 +0,0 @@
-GCC_VERSION:=$(strip $(subst ",, $(BR2_GCC_VERSION)))
-#"
-GCC_USE_SJLJ_EXCEPTIONS:=$(strip $(subst ",, $(BR2_GCC_USE_SJLJ_EXCEPTIONS)))
-#"
-TARGET_OPTIMIZATION:=$(strip $(subst ",, $(BR2_TARGET_OPTIMIZATION)))
-#""
-
-
-ifeq ($(BR2_SOFT_FLOAT),y)
-# gcc 3.4.x soft float configuration is different than previous versions.
-ifeq ($(findstring 3.4.,$(GCC_VERSION)),3.4.)
-SOFT_FLOAT_CONFIG_OPTION:=--with-float=soft
-else
-SOFT_FLOAT_CONFIG_OPTION:=--without-float
-endif
-TARGET_SOFT_FLOAT:=-msoft-float
-ARCH_FPU_SUFFIX:=_nofpu
-else
-SOFT_FLOAT_CONFIG_OPTION:=
-TARGET_SOFT_FLOAT:=
-ARCH_FPU_SUFFIX:=
-endif
-
-ifeq ($(strip $(BR2_PACKAGE_GCC_TARGET)),y)
-TARGETS+=gcc_target
-endif