diff options
author | Stelios Koroneos <skoroneos@digital-opsis.com> | 2006-12-01 19:37:54 +0000 |
---|---|---|
committer | Stelios Koroneos <skoroneos@digital-opsis.com> | 2006-12-01 19:37:54 +0000 |
commit | 70250c8b211f658ae890ed855d00642dc3a503c6 (patch) | |
tree | f41cd19522eb52cb15bb6a7985255265714a7f05 | |
parent | 3169d414181ab6011dd6e1b672bbaa7ecb9b9afe (diff) |
Fixes gcc-cross 4.x compile error on x86_64 arch due to multilibs missing
-rw-r--r-- | packages/gcc/gcc3-build-cross.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/gcc/gcc3-build-cross.inc b/packages/gcc/gcc3-build-cross.inc index e8a23e0d40..62a7bf3b23 100644 --- a/packages/gcc/gcc3-build-cross.inc +++ b/packages/gcc/gcc3-build-cross.inc @@ -1,7 +1,8 @@ USE_NLS = '${@base_conditional( "TARGET_OS", "linux-uclibc", "no", "", d )}' EXTRA_OECONF_PATHS = "--with-local-prefix=${CROSS_DIR}/${TARGET_SYS} \ - --with-gxx-include-dir=${CROSS_DIR}/${TARGET_SYS}/include/c++" + --with-gxx-include-dir=${CROSS_DIR}/${TARGET_SYS}/include/c++ \ + --disable-multilib" do_configure_prepend () { rm -f ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${BINV}/libgcc_eh.a |