Skip to content
Snippets Groups Projects
Commit 4e3e1fdf authored by H.J. Lu's avatar H.J. Lu
Browse files

Default to --enable-compressed-debug-sections=gas for Linux/x86

--enable-compressed-debug-sections=gas added to binutils 2.26.  Make it
default for Linux/x86 targets in 2.27.

	* NEWS: Mention --enable-compressed-debug-sections=gas is the
	default for Linux/x86 targets.
	* configure.tgt (ac_default_compressed_debug_sections): Default
	to yes for Linux/x86 targets.
parent 803b47e5
No related branches found
No related tags found
No related merge requests found
2016-06-29 H.J. Lu <hongjiu.lu@intel.com>
* NEWS: Mention --enable-compressed-debug-sections=gas is the
default for Linux/x86 targets.
* configure.tgt (ac_default_compressed_debug_sections): Default
to yes for Linux/x86 targets.
2016-06-29 Maciej W. Rozycki <macro@imgtec.com> 2016-06-29 Maciej W. Rozycki <macro@imgtec.com>
* write.c: Remove "libbfd.h" inclusion. * write.c: Remove "libbfd.h" inclusion.
......
-*- text -*- -*- text -*-
* Default to --enable-compressed-debug-sections=gas for Linux/x86 targets.
* Add --no-pad-sections to stop the assembler from padding the end of output * Add --no-pad-sections to stop the assembler from padding the end of output
sections up to their alignment boundary. sections up to their alignment boundary.
......
...@@ -502,3 +502,12 @@ if test $bfd_gas != yes; then ...@@ -502,3 +502,12 @@ if test $bfd_gas != yes; then
echo This target is no longer supported in gas echo This target is no longer supported in gas
exit 1 exit 1
fi fi
case ${cpu_type}-${fmt}-${os} in
i386-elf-linux*)
# Default to compress DWARF debug sections for Linux/x86.
if test ${ac_default_compressed_debug_sections} = unset; then
ac_default_compressed_debug_sections=yes
fi
;;
esac
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment