diff options
author | Thomas Klausner <wiz@NetBSD.org> | 2016-01-27 16:54:48 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2016-01-27 09:54:48 -0700 |
commit | 388dc9e6fd9dd096a4436b06ffbef0b93d5b4662 (patch) | |
tree | 349308eb9bbb027e62adbcf1463c59edf515da36 /gcc/configure.ac | |
parent | 27e23cca33be1b3db720e40d4a651d88b65ef79d (diff) | |
download | gcc-388dc9e6fd9dd096a4436b06ffbef0b93d5b4662.zip gcc-388dc9e6fd9dd096a4436b06ffbef0b93d5b4662.tar.gz gcc-388dc9e6fd9dd096a4436b06ffbef0b93d5b4662.tar.bz2 |
re PR target/68380 (NetBSD has SSP in libc)
2016-01-27 Thomas Klausner <wiz@NetBSD.org>
PR target/68380
* configure.ac: NetBSD provides SSP in its C library.
* configure: Updated.
From-SVN: r232884
Diffstat (limited to 'gcc/configure.ac')
-rw-r--r-- | gcc/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/configure.ac b/gcc/configure.ac index 6cfb68a..6c1dcd9 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -5489,7 +5489,7 @@ AC_CACHE_CHECK(__stack_chk_fail in target C library, # realistically usable GNU/Hurd configurations. # All supported versions of musl provide it as well gcc_cv_libc_provides_ssp=yes;; - *-*-darwin* | *-*-freebsd*) + *-*-darwin* | *-*-freebsd* | *-*-netbsd*) AC_CHECK_FUNC(__stack_chk_fail,[gcc_cv_libc_provides_ssp=yes], [echo "no __stack_chk_fail on this target"]) ;; |