Browse Source

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

user/chris/test/multilib
Christian Wiese 17 years ago committed by Christian Wiese
parent
commit
79d9304047
  1. 6
      base/binutils/binutils.conf

6
base/binutils/binutils.conf

@ -15,6 +15,12 @@
hook_add preconf 5 "mkdir -p objdir; cd objdir; configscript=../configure"
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