diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-04-01 06:24:42 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-04-01 06:40:35 -0700 |
commit | 918357b9556c9eaf81129ea6691bb6e461e80f86 (patch) | |
tree | 9ecb1b3b05b88562da8adb575a4b45ee10825c33 /gold/options.h | |
parent | 1ac806b8a7d0c09a0052751262f37336fb06bf6f (diff) | |
download | gdb-918357b9556c9eaf81129ea6691bb6e461e80f86.zip gdb-918357b9556c9eaf81129ea6691bb6e461e80f86.tar.gz gdb-918357b9556c9eaf81129ea6691bb6e461e80f86.tar.bz2 |
Regenerate configure in gold
Regenerate configure for zlib.m4 change, which adds --with-system-zlib and
removes --with-zlib in gold. zlib is enabled unconditionally with builtin
zlib imported from GCC.
* Makefile.am (ZLIB): New.
(ZLIBINC): Likewise.
(AM_CFLAGS): Add $(ZLIBINC).
(AM_CXXFLAGS): Likewise.
(ldadd_varldadd_var): Add $(ZLIB).
(incremental_dump_LDADD): Likewise.
(dwp_LDADD): Likewise.
* compressed_output.cc: Don't check HAVE_ZLIB_H to include
<zlib.h>.
(zlib_compress): Don't check HAVE_ZLIB_H.
(zlib_decompress): Likewise.
* options.h (compress_debug_sections): Likewise.
* configure.ac (AM_CONDITIONAL): Removed.
* testsuite/Makefile.am (ZLIB): New.
(LDADD): Add $(ZLIB).
Don't check HAVE_ZLIB.
* Makefile.in: Regenerated.
* config.in: Likewise.
* configure: Likewise.
* testsuite/Makefile.in: Likewise.
Diffstat (limited to 'gold/options.h')
-rw-r--r-- | gold/options.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gold/options.h b/gold/options.h index 956a7f4..8c9c934 100644 --- a/gold/options.h +++ b/gold/options.h @@ -695,17 +695,10 @@ class General_options N_("Check segment addresses for overlaps (default)"), N_("Do not check segment addresses for overlaps")); -#ifdef HAVE_ZLIB_H DEFINE_enum(compress_debug_sections, options::TWO_DASHES, '\0', "none", N_("Compress .debug_* sections in the output file"), ("[none,zlib]"), {"none", "zlib"}); -#else - DEFINE_enum(compress_debug_sections, options::TWO_DASHES, '\0', "none", - N_("Compress .debug_* sections in the output file"), - N_("[none]"), - {"none"}); -#endif DEFINE_bool(copy_dt_needed_entries, options::TWO_DASHES, '\0', false, N_("Not supported"), |