aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Packham <judge.packham@gmail.com>2024-03-09 14:10:18 +1300
committerChris Packham <judge.packham@gmail.com>2024-03-13 17:03:23 +1300
commit6ad7b969036afa80963df69cc7bc8ebfbc627cb9 (patch)
treef493aea3e37a14e79aacc2faf6badbf52d9c3dd0
parentecc5e416181f39bed1b9690f4a9fd0178d797365 (diff)
downloadcrosstool-ng-6ad7b969036afa80963df69cc7bc8ebfbc627cb9.tar.gz
crosstool-ng-6ad7b969036afa80963df69cc7bc8ebfbc627cb9.tar.bz2
crosstool-ng-6ad7b969036afa80963df69cc7bc8ebfbc627cb9.zip
gdb: Use correct libexpat for native build
The native gdb needs the version of libexpat built for the target. On some systems gdb's configure will find the one from the build machine. Use --with-expat= to point at the correct one for the target. Fixes: 2092 Signed-off-by: Chris Packham <judge.packham@gmail.com>
-rw-r--r--scripts/build/debug/300-gdb.sh11
1 files changed, 1 insertions, 10 deletions
diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh
index da7f370b..8f9c51e5 100644
--- a/scripts/build/debug/300-gdb.sh
+++ b/scripts/build/debug/300-gdb.sh
@@ -175,16 +175,7 @@ do_debug_gdb_build()
# where libexpat for build platform lives, which is
# unacceptable for cross-compiling.
#
- # To prevent this '--without-libexpat-prefix' flag must be passed.
- # Thus configure falls back to '-lexpat', which is exactly what we want.
- #
- # NOTE: DO NOT USE --with-libexpat-prefix (until GDB configure is smarter)!!!
- # It conflicts with a static build: GDB's configure script will find the shared
- # version of expat and will attempt to link that, despite the -static flag.
- # The link will fail, and configure will abort with "expat missing or unusable"
- # message.
- native_extra_config+=("--with-expat")
- native_extra_config+=("--without-libexpat-prefix")
+ native_extra_config+=("--with-expat=${CT_BUILDTOOLS_PREFIX_DIR}")
do_gdb_backend \
buildtype=native \