Compress debug sections for Linux/x86 by default

* config/tc-i386.c (flag_compress_debug): Default to compress
	debug sections for Linux.
This commit is contained in:
H.J. Lu 2014-12-14 06:41:03 -08:00
parent bc696fd5af
commit 89e7505fcd
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2014-12-14 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (flag_compress_debug): Default to compress
debug sections for Linux.
2014-12-12 Alan Modra <amodra@gmail.com>
* config/tc-ppc.h (md_reg_eh_frame_to_debug_frame): Match current

View File

@ -33,6 +33,11 @@
#include "elf/x86-64.h"
#include "opcodes/i386-init.h"
#ifdef TE_LINUX
/* Default to compress debug sections for Linux. */
int flag_compress_debug = 1;
#endif
#ifndef REGISTER_WARNINGS
#define REGISTER_WARNINGS 1
#endif