diff options
author | Nick Clifton <nickc@redhat.com> | 2015-10-21 14:57:28 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2015-10-21 14:57:28 +0100 |
commit | 1283d92f0e4704bb31b1e163b9c88216756ef62c (patch) | |
tree | 0416ae5aee6c6850a2c611be277346e3305b34b7 /ld | |
parent | 6c3bc0f82c625d425b09c01f96b64946abe4118e (diff) | |
download | gdb-1283d92f0e4704bb31b1e163b9c88216756ef62c.zip gdb-1283d92f0e4704bb31b1e163b9c88216756ef62c.tar.gz gdb-1283d92f0e4704bb31b1e163b9c88216756ef62c.tar.bz2 |
Extend description of the --enable-compressed-debug-sections configure option in gas and ld.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 3 | ||||
-rwxr-xr-x | ld/configure | 2 | ||||
-rw-r--r-- | ld/configure.ac | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index e59e9f8..1a12b17 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,7 +1,8 @@ 2015-10-21 Nick Clifton <nickc@redhat.com> PR gas/19109 - * configure.ac: Add --enable-compressed-debug-sections. + * configure.ac: Add --enable-compressed-debug-sections with + options of all, none or ld. * configure: Regenerate. * config.in: Regenerate. * ld.texinfo: Document how to determine the default action for diff --git a/ld/configure b/ld/configure index c068f6f..5b6eb70 100755 --- a/ld/configure +++ b/ld/configure @@ -1445,7 +1445,7 @@ Optional Features: --enable-gold[=ARG] build gold [ARG={default,yes,no}] --enable-got=<type> GOT handling scheme (target, single, negative, multigot) - --enable-compressed-debug-sections compress debug sections by default + --enable-compressed-debug-sections={all,ld,none} compress debug sections by default --enable-werror treat compile warnings as errors --enable-build-warnings enable build-time compiler warnings --disable-nls do not use Native Language Support diff --git a/ld/configure.ac b/ld/configure.ac index 8a9ce2b..21a69e5 100644 --- a/ld/configure.ac +++ b/ld/configure.ac @@ -148,7 +148,7 @@ esac ac_default_compressed_debug_sections=unset # Provide a configure time option to override our default. AC_ARG_ENABLE(compressed_debug_sections, -[ --enable-compressed-debug-sections compress debug sections by default], +[ --enable-compressed-debug-sections={all,ld,none} compress debug sections by default], [case "${enableval}" in yes | all | ld) ac_default_compressed_debug_sections=yes ;; no | none) ac_default_compressed_debug_sections=no ;; |