Browse Source

binutils: improved by adding an explicit check if multilib has to be enabled or not

tc-work-wip
Christian Wiese 17 years ago
committed by Alejandro Mery
parent
commit
2d86dbed18
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      base/binutils/binutils.conf

+ 6
- 0
base/binutils/binutils.conf

@ -19,6 +19,12 @@ var_append confopt " " "--disable-werror"
var_append confopt " " "--enable-install-libiberty"
var_append confopt " " "--disable-nls"
if [ "$SDECFG_MULTILIB" != 1 ]; then
var_append extraconfopt ' ' "--disable-multilib"
else
var_append extraconfopt ' ' "--enable-multilib"
fi
if atstage toolchain; then
bindir="/$prefix/crosscc"; mkdir -p $root/$prefix/crosscc
var_append confopt " " "--with-sysroot=$sysroot"

Loading…
Cancel
Save