diff options
author | Kirill K. Smirnov <kirill.k.smirnov@gmail.com> | 2023-08-13 14:14:26 +0300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-08-15 16:26:10 +1200 |
commit | fab9efd8fad5c9a1b6a85816817f406c91702c56 (patch) | |
tree | 356abcdaeffb85c0d885504edcf4dd3c1d637859 /scripts | |
parent | fd04f436170a208ae30fe42ab2f56b543b0b81c5 (diff) | |
download | crosstool-ng-fab9efd8fad5c9a1b6a85816817f406c91702c56.tar.gz crosstool-ng-fab9efd8fad5c9a1b6a85816817f406c91702c56.tar.bz2 crosstool-ng-fab9efd8fad5c9a1b6a85816817f406c91702c56.zip |
gdb: fix build with recent ncurses
For mingw host a special macro NCURSES_STATIC must be defined.
Signed-off-by: Kirill K. Smirnov <kirill.k.smirnov@gmail.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/debug/300-gdb.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh index 174fcc10..e23298c7 100644 --- a/scripts/build/debug/300-gdb.sh +++ b/scripts/build/debug/300-gdb.sh @@ -69,10 +69,17 @@ do_debug_gdb_build() extra_config+=("--with-expat") extra_config+=("--without-libexpat-prefix") + # ct-ng always builds ncurses in cross mode as a static library. + # Starting from the patchset 20200718 ncurses defines a special macro + # NCURSES_STATIC for a static library. This is critical for mingw host + # platform. + # + # The problem is that the macro must be defined in a user program too, + # not just in ncurses. It won't hurt if we define it here. do_gdb_backend \ buildtype=cross \ host="${CT_HOST}" \ - cflags="${CT_CFLAGS_FOR_HOST}" \ + cflags="${CT_CFLAGS_FOR_HOST} -DNCURSES_STATIC" \ ldflags="${CT_LDFLAGS_FOR_HOST}" \ prefix="${CT_PREFIX_DIR}" \ static="${CT_GDB_CROSS_STATIC}" \ |