aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2021-08-11 13:17:54 +0100
committerArsen Arsenović <arsen@gcc.gnu.org>2023-08-07 22:59:41 +0200
commit9fc0ae6033f3e41c9b4605531a6a8543414b0d2d (patch)
tree6dec72dc36ec1f349d5160de6dbe4f242adda4d9 /config
parent120397f3963541db4e0121baebadf7f82452278c (diff)
downloadgcc-9fc0ae6033f3e41c9b4605531a6a8543414b0d2d.zip
gcc-9fc0ae6033f3e41c9b4605531a6a8543414b0d2d.tar.gz
gcc-9fc0ae6033f3e41c9b4605531a6a8543414b0d2d.tar.bz2
Deprecate a.out support for NetBSD targets.
As discussed previously, a.out support is now quite deprecated, and in some cases removed, in both Binutils itself and NetBSD, so this legacy default makes little sense. `netbsdelf*` and `netbsdaout*` still work allowing the user to be explicit about there choice. Additionally, the configure script warns about the change as Nick Clifton requested. One possible concern was the status of NetBSD on NS32K, where only a.out was supported. But per [1] NetBSD has removed support, and if it were to come back, it would be with ELF. The binutils implementation is therefore marked obsolete, per the instructions in the last message. With that patch and this one applied, I have confirmed the following: --target=i686-unknown-netbsd --target=i686-unknown-netbsdelf builds completely --target=i686-unknown-netbsdaout properly fails because target is deprecated. --target=vax-unknown-netbsdaout builds completely except for gas, where the target is deprecated. [1]: https://mail-index.netbsd.org/tech-toolchain/2021/07/19/msg004025.html config/ChangeLog: * picflag.m4: Simplify SHmedia NetBSD match by presuming ELF. gcc/ChangeLog: * configure: Regenerate. libada/ChangeLog: * configure: Regenerate. libgcc/ChangeLog: * configure: Regenerate. libiberty/ChangeLog: * configure: Regenerate.
Diffstat (limited to 'config')
-rw-r--r--config/picflag.m44
1 files changed, 1 insertions, 3 deletions
diff --git a/config/picflag.m4 b/config/picflag.m4
index 0aefcf6..3f3ac74 100644
--- a/config/picflag.m4
+++ b/config/picflag.m4
@@ -63,9 +63,7 @@ case "${$2}" in
sh-*-linux* | sh[[2346lbe]]*-*-linux*)
$1=-fpic
;;
- # FIXME: Simplify to sh*-*-netbsd*?
- sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
- sh64-*-netbsd* | sh64l*-*-netbsd*)
+ sh*-*-netbsd*)
$1=-fpic
;;
# Default to -fPIC unless specified otherwise.