diff options
author | David Holsgrove <david.holsgrove@xilinx.com> | 2012-10-03 15:59:22 +1000 |
---|---|---|
committer | David Holsgrove <david.holsgrove@xilinx.com> | 2012-10-03 15:59:22 +1000 |
commit | f6eeea18810f299baf1b31bbb896f3a7f762a3f1 (patch) | |
tree | cc86375d7c0587ca30c3d6db402ef670c1c83afe | |
parent | 110027316e7320a6a187436e5a990b1166b06b59 (diff) | |
download | crosstool-ng-f6eeea18810f299baf1b31bbb896f3a7f762a3f1.tar.gz crosstool-ng-f6eeea18810f299baf1b31bbb896f3a7f762a3f1.tar.bz2 crosstool-ng-f6eeea18810f299baf1b31bbb896f3a7f762a3f1.zip |
scripts/gdb: If not building expat for gdb, disable
--with-expat=yes is unconditionally passed to the gdb configure
stage, instead of respecting the ${do_expat} decision.
Disable if not needed. Prevents error building canadian cross;
configure: error: expat is missing or unusable
Where configure stage fails to find expat on the host compiler.
Signed-off-by: "David Holsgrove" <david.holsgrove@xilinx.com>
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Message-Id: <4c4410a2a8aab24a29c5.1349244128@localhost.localdomain>
PatchWork-Id: 188711
-rw-r--r-- | scripts/build/debug/300-gdb.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh index f7b4d1e7..f990e966 100644 --- a/scripts/build/debug/300-gdb.sh +++ b/scripts/build/debug/300-gdb.sh @@ -136,6 +136,13 @@ do_debug_gdb_build() { LD_for_gdb="ld -static" fi + if [ "${do_expat}" = "y" ]; then + cross_extra_config+=("--with-expat=yes") + else + cross_extra_config+=("--disable-expat") + cross_extra_config+=("--with-expat=no") + fi + gdb_cross_configure="${gdb_src_dir}/configure" CT_DoLog DEBUG "Extra config passed: '${cross_extra_config[*]}'" @@ -150,7 +157,6 @@ do_debug_gdb_build() { --prefix="${CT_PREFIX_DIR}" \ --with-build-sysroot="${CT_SYSROOT_DIR}" \ --with-sysroot="${CT_SYSROOT_DIR}" \ - --with-expat=yes \ --disable-werror \ "${cross_extra_config[@]}" \ "${CT_GDB_CROSS_EXTRA_CONFIG_ARRAY[@]}" |