diff options
author | Martin Liska <mliska@suse.cz> | 2022-10-03 09:42:20 +0200 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2022-10-11 14:15:04 +0200 |
commit | b0c295e1b8d0ec8af33c502a6b00b260d0425c04 (patch) | |
tree | 74b7af58b3c3d0d3613e26b3bf0e5a64150fa643 /ld/ldmain.c | |
parent | 857bddbe737bc963bd9e5a3b24743a9bba5d2d7b (diff) | |
download | gdb-b0c295e1b8d0ec8af33c502a6b00b260d0425c04.zip gdb-b0c295e1b8d0ec8af33c502a6b00b260d0425c04.tar.gz gdb-b0c295e1b8d0ec8af33c502a6b00b260d0425c04.tar.bz2 |
add --enable-default-compressed-debug-sections-algorithm configure option
ChangeLog:
* configure.ac: Add --enable-default-compressed-debug-sections-algorithm.
* configure: Regenerate.
gas/ChangeLog:
* NEWS: Document the new option.
* as.c (flag_compress_debug): Set default algorithm based
on the configure option.
* configure.ac: Add --enable-default-compressed-debug-sections-algorithm.
* configure: Regenerate.
* config.in: Likewise.
ld/ChangeLog:
* NEWS: Document the new option.
* configure.ac: Add --enable-default-compressed-debug-sections-algorithm.
* configure: Regenerate.
* config.in: Likewise.
* ldmain.c: Set default algorithm based
on the configure option.
Diffstat (limited to 'ld/ldmain.c')
-rw-r--r-- | ld/ldmain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/ldmain.c b/ld/ldmain.c index d63002c..10f7a05 100644 --- a/ld/ldmain.c +++ b/ld/ldmain.c @@ -352,7 +352,7 @@ main (int argc, char **argv) link_info.spare_dynamic_tags = 5; link_info.path_separator = ':'; #ifdef DEFAULT_FLAG_COMPRESS_DEBUG - link_info.compress_debug = COMPRESS_DEBUG_GABI_ZLIB; + link_info.compress_debug = DEFAULT_COMPRESSED_DEBUG_ALGORITHM; #endif #ifdef DEFAULT_NEW_DTAGS link_info.new_dtags = DEFAULT_NEW_DTAGS; |