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 | e955458388a9fd2ca6e48c4bd48a12ff84d24478 (patch) | |
tree | 82edc0b9d9c18783cf72d79e714e6a2f193daecb /toolchain/gcc | |
parent | e384acd55d2d4975b72791a0c8df2a5d49a7b731 (diff) | |
download | upstream-e955458388a9fd2ca6e48c4bd48a12ff84d24478.tar.gz upstream-e955458388a9fd2ca6e48c4bd48a12ff84d24478.tar.bz2 upstream-e955458388a9fd2ca6e48c4bd48a12ff84d24478.zip |
Disable multilib by default
SVN-Revision: 8471
Diffstat (limited to 'toolchain/gcc')
-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 |