From b9f843657aca844a6f08d807fcb493b4abc0f723 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Sun, 17 Jun 2007 15:46:13 +0000 Subject: Offer an option to build the gdbserver statically. This helps in case of debugging shared library loading. --- scripts/build/debug/gdb.sh | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'scripts/build/debug') diff --git a/scripts/build/debug/gdb.sh b/scripts/build/debug/gdb.sh index 55c7c543..47389ac8 100644 --- a/scripts/build/debug/gdb.sh +++ b/scripts/build/debug/gdb.sh @@ -70,6 +70,12 @@ do_debug_gdb_build() { # Bah, GNU folks strike again... :-( chmod +x "${gdb_src_dir}/gdb/gdbserver/configure" + gdbserver_LDFLAGS= + if [ "${CT_GDB_CROSS_STATIC_GDBSERVER}" = "y" ]; then + gdbserver_LDFLAGS=-static + fi + + LDFLAGS="${gdbserver_LDFLAGS}" \ "${gdb_src_dir}/gdb/gdbserver/configure" \ --build=${CT_BUILD} \ --host=${CT_TARGET} \ -- cgit v1.2.3