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.
This commit is contained in:
H.J. Lu 2015-07-15 07:31:55 -07:00
parent e57bb7a031
commit 189ebcf915
2 changed files with 6 additions and 1 deletions

View File

@ -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> 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
* as.c (parse_args): Make --compress-debug-sections and * as.c (parse_args): Make --compress-debug-sections and

View File

@ -36,7 +36,7 @@
#ifdef TE_LINUX #ifdef TE_LINUX
/* Default to compress debug sections for Linux. */ /* Default to compress debug sections for Linux. */
enum compressed_debug_section_type flag_compress_debug enum compressed_debug_section_type flag_compress_debug
= COMPRESS_DEBUG_GNU_ZLIB; = COMPRESS_DEBUG_GABI_ZLIB;
#endif #endif
#ifndef REGISTER_WARNINGS #ifndef REGISTER_WARNINGS