diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-08-23 16:08:09 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-08-23 16:08:09 +0000 |
commit | a6c626e6096ef592f702993f82c7bf855613f5a5 (patch) | |
tree | 61e6896ef55b2b5934027a5014959f09b3935cef /toolchain | |
parent | 50dd0a65fcb5d7689d477ceb9cb1b917271bdd35 (diff) | |
download | upstream-a6c626e6096ef592f702993f82c7bf855613f5a5.tar.gz upstream-a6c626e6096ef592f702993f82c7bf855613f5a5.tar.bz2 upstream-a6c626e6096ef592f702993f82c7bf855613f5a5.zip |
Disable multilib by default
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8471 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/gcc/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index bae9220f0c..d784a6084c 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -59,6 +59,7 @@ define Stage1/Configure --with-gnu-ld \ --disable-nls \ --disable-libmudflap \ + --disable-multilib \ ); endef define Stage1/Compile @@ -89,6 +90,7 @@ define Stage2/Configure --with-gnu-ld \ --disable-nls \ --disable-libmudflap \ + --disable-mutlitlib \ ); endef |