[binutils-gdb] Make x86 Linux assembler default to gABI compliant

H.J.Lu hjl@sourceware.org
Wed Jul 15 14:34:00 GMT 2015


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=189ebcf9150ee935fd5f9718a3abf02084dde02d

commit 189ebcf9150ee935fd5f9718a3abf02084dde02d
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Wed Jul 15 07:31:55 2015 -0700

    Make x86 Linux assembler default to gABI compliant
    
    The default compression is gABI compliant now.  This patch makes the
    x86 Linux assembler default to gABI compliant.
    
    	* config/tc-i386.c (flag_compress_debug): Replace
    	COMPRESS_DEBUG_GNU_ZLIB with COMPRESS_DEBUG_GABI_ZLIB.

Diff:
---
 gas/ChangeLog        | 5 +++++
 gas/config/tc-i386.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/gas/ChangeLog b/gas/ChangeLog
index 8d84bab..0718efa 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2015-07-15  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* config/tc-i386.c (flag_compress_debug): Replace
+	COMPRESS_DEBUG_GNU_ZLIB with COMPRESS_DEBUG_GABI_ZLIB.
+
 2015-07-14  H.J. Lu  <hongjiu.lu@intel.com>
 
 	* as.c (parse_args): Make --compress-debug-sections and
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c
index 5a1e2b3..2bdb769 100644
--- a/gas/config/tc-i386.c
+++ b/gas/config/tc-i386.c
@@ -36,7 +36,7 @@
 #ifdef TE_LINUX
 /* Default to compress debug sections for Linux.  */
 enum compressed_debug_section_type flag_compress_debug
-  = COMPRESS_DEBUG_GNU_ZLIB;
+  = COMPRESS_DEBUG_GABI_ZLIB;
 #endif
 
 #ifndef REGISTER_WARNINGS



More information about the Binutils-cvs mailing list