diff options
author | Michał Zagórski <zagura6+github@gmail.com> | 2024-11-21 00:55:31 +0100 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2024-12-16 08:37:33 +1300 |
commit | 71cfd2d094dfc44b8e0d233cabeb75d536f46d22 (patch) | |
tree | 99ca2f77246004044289c1ba576211c69ad14b17 | |
parent | 9c444f4ca6cfe11ebb2d06e1f3e9822869ecbbfd (diff) | |
download | crosstool-ng-71cfd2d094dfc44b8e0d233cabeb75d536f46d22.tar.gz crosstool-ng-71cfd2d094dfc44b8e0d233cabeb75d536f46d22.tar.bz2 crosstool-ng-71cfd2d094dfc44b8e0d233cabeb75d536f46d22.zip |
gdb/gdbserver: use -static --static for static build
With gdb15.2 gdb uses libtool for linking, but gdbserver is not.
Should not break #2230 or #2053
Signed-off-by: Michał Zagórski <zagura6+github@gmail.com>
-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 |