mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-09 17:08:05 +08:00
Linux/x86: Configure gas with --enable-x86-used-note by default
* configure.ac: Configure with --enable-x86-used-note by default for Linux/x86. * configure: Regenerated.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
2020-07-09 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* NEWS: Mention --enable-x86-used-note.
|
||||||
|
* configure.ac: Configure with --enable-x86-used-note by default
|
||||||
|
for Linux/x86.
|
||||||
|
* configure: Regenerated.
|
||||||
|
|
||||||
2020-07-09 Alan Modra <amodra@gmail.com>
|
2020-07-09 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
* config/obj-coff.h: Remove TE_PE support.
|
* config/obj-coff.h: Remove TE_PE support.
|
||||||
|
2
gas/NEWS
2
gas/NEWS
@ -1,5 +1,7 @@
|
|||||||
-*- text -*-
|
-*- text -*-
|
||||||
|
|
||||||
|
* Configure with --enable-x86-used-note by default for Linux/x86.
|
||||||
|
|
||||||
Changes in 2.35:
|
Changes in 2.35:
|
||||||
|
|
||||||
* X86 NaCl target support is removed.
|
* X86 NaCl target support is removed.
|
||||||
|
7
gas/configure
vendored
7
gas/configure
vendored
@ -12636,6 +12636,13 @@ $as_echo "#define STRICTCOFF 1" >>confdefs.h
|
|||||||
|
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
i386-*-linux-* | x86_64-*-linux-*)
|
||||||
|
if test ${this_target} = $target \
|
||||||
|
&& test ${ac_default_generate_x86_used_note} = unset; then
|
||||||
|
ac_default_generate_x86_used_note=1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
i386-*-solaris2 \
|
i386-*-solaris2 \
|
||||||
| x86_64-*-solaris2 \
|
| x86_64-*-solaris2 \
|
||||||
| i386-*-solaris2.[0-9] \
|
| i386-*-solaris2.[0-9] \
|
||||||
|
@ -242,6 +242,13 @@ for this_target in $target $canon_targets ; do
|
|||||||
AC_DEFINE(STRICTCOFF, 1, [Using strict COFF?])
|
AC_DEFINE(STRICTCOFF, 1, [Using strict COFF?])
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
i386-*-linux-* | x86_64-*-linux-*)
|
||||||
|
if test ${this_target} = $target \
|
||||||
|
&& test ${ac_default_generate_x86_used_note} = unset; then
|
||||||
|
ac_default_generate_x86_used_note=1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
i386-*-solaris2 \
|
i386-*-solaris2 \
|
||||||
| x86_64-*-solaris2 \
|
| x86_64-*-solaris2 \
|
||||||
| i386-*-solaris2.[[0-9]] \
|
| i386-*-solaris2.[[0-9]] \
|
||||||
|
Reference in New Issue
Block a user