diff options
-rw-r--r-- | scripts/build/debug/300-gdb.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh index 67c7069e..508ba25f 100644 --- a/scripts/build/debug/300-gdb.sh +++ b/scripts/build/debug/300-gdb.sh @@ -354,7 +354,9 @@ do_gdb_backend() if [ "${static}" = "y" ]; then if [ "${CT_GDB_CC_LD_LIBTOOL}" = "y" ]; then - extra_make_flags+=("LDFLAGS=${ldflags} -all-static") + # gdb is linked with libtool, but gdbserver is not + # Both linker accept -static --static and create static binaries + extra_make_flags+=("LDFLAGS=${ldflags} -static --static") else extra_make_flags+=("LDFLAGS=${ldflags} -static") fi |