diff options
author | Chris Packham <judge.packham@gmail.com> | 2023-02-21 20:31:19 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-02-25 14:22:02 +1300 |
commit | ee5a4026c3560c6b313313cf78236a60e300ee93 (patch) | |
tree | af05c78db1c4193a2de9359a615ff696b565753c /scripts | |
parent | c7bfd36f2278e7c973f7926eaff559e9e7b29765 (diff) | |
download | crosstool-ng-ee5a4026c3560c6b313313cf78236a60e300ee93.tar.gz crosstool-ng-ee5a4026c3560c6b313313cf78236a60e300ee93.tar.bz2 crosstool-ng-ee5a4026c3560c6b313313cf78236a60e300ee93.zip |
gdb: Add gdb 13.1
https://sourceware.org/pipermail/gdb-announce/2023/000134.html
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=blob_plain;f=gdb/NEWS;hb=gdb-13.1-release
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/debug/300-gdb.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh index 2d9619f2..2fa94981 100644 --- a/scripts/build/debug/300-gdb.sh +++ b/scripts/build/debug/300-gdb.sh @@ -131,6 +131,12 @@ do_debug_gdb_build() native_extra_config+=("--disable-inprocess-agent") fi + if [ "${CT_COMP_LIBS_ZSTD}}" = "y" ]; then + native_extra_config+=("--with-zstd=${complibs}") + else + native_extra_config+=("--without-zstd") + fi + export ac_cv_func_strncmp_works=yes # TBD do we need all these? |