aboutsummaryrefslogtreecommitdiff
path: root/scripts/build/debug/300-gdb.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build/debug/300-gdb.sh')
-rw-r--r--scripts/build/debug/300-gdb.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh
index ce77260a..67c7069e 100644
--- a/scripts/build/debug/300-gdb.sh
+++ b/scripts/build/debug/300-gdb.sh
@@ -175,8 +175,14 @@ do_debug_gdb_build()
# where libexpat for build platform lives, which is
# unacceptable for cross-compiling.
#
- native_extra_config+=("--with-expat=${CT_BUILDTOOLS_PREFIX_DIR}")
+ native_extra_config+=("--with-expat=y")
+ native_extra_config+=("--with-libexpat-prefix=${CT_BUILDTOOLS_PREFIX_DIR}")
+ # Without specifying libexpat type, configure would look for -lexpat
+ # and try to link with shared library, set library type explicitly.
+ if [ "${CT_GDB_NATIVE_STATIC}" = "y" ]; then
+ native_extra_config+=("--with-libexpat-type=static")
+ fi
do_gdb_backend \
buildtype=native \
subdir=${subdir} \