aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2015-10-21 14:57:28 +0100
committerNick Clifton <nickc@redhat.com>2015-10-21 14:57:28 +0100
commit1283d92f0e4704bb31b1e163b9c88216756ef62c (patch)
tree0416ae5aee6c6850a2c611be277346e3305b34b7 /gas
parent6c3bc0f82c625d425b09c01f96b64946abe4118e (diff)
downloadgdb-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 'gas')
-rw-r--r--gas/ChangeLog3
-rwxr-xr-xgas/configure2
-rw-r--r--gas/configure.ac2
3 files changed, 4 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 6bc2213..4c8af4c 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,7 +1,8 @@
2015-10-21 Nick Clifton <nickc@redhat.com>
PR gas/19109
- * configure.ac: Restore --enable-compressed-debug-sections.
+ * configure.ac: Restore --enable-compressed-debug-sections, with
+ options of all, none or gas.
Do not enable compressed debug sections by default for x86 Linux
targets.
* configure: Regenerate.
diff --git a/gas/configure b/gas/configure
index e7c6fad..3de9333 100755
--- a/gas/configure
+++ b/gas/configure
@@ -1413,7 +1413,7 @@ Optional Features:
--disable-largefile omit support for large files
--enable-targets alternative target configurations besides the primary
--enable-checking enable run-time checks
- --enable-compressed-debug-sections compress debug sections by default
+ --enable-compressed-debug-sections={all,gas,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/gas/configure.ac b/gas/configure.ac
index 278a7fb..f7ed1b3 100644
--- a/gas/configure.ac
+++ b/gas/configure.ac
@@ -69,7 +69,7 @@ fi
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,gas,none} compress debug sections by default],
[case "${enableval}" in
yes | all | gas) ac_default_compressed_debug_sections=yes ;;
no | none) ac_default_compressed_debug_sections=no ;;