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 | |
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')
-rwxr-xr-x | gcc/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/configure b/gcc/configure index 8ea4281..1c6e340 100755 --- a/gcc/configure +++ b/gcc/configure @@ -28483,7 +28483,7 @@ fi # 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_fn_cxx_check_func "$LINENO" "__stack_chk_fail" "ac_cv_func___stack_chk_fail" if test "x$ac_cv_func___stack_chk_fail" = x""yes; then : gcc_cv_libc_provides_ssp=yes |