diff options
author | Trevor Saunders <tbsaunde+gcc@tbsaunde.org> | 2016-06-21 21:57:30 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2016-06-21 21:57:30 +0000 |
commit | 8466af0668a71af6e3a9d75ad37f080e94d4f09c (patch) | |
tree | 64e976e57c574883ea17a191597be1ac1beef21c /libstdc++-v3 | |
parent | d980e73865448313fc6d47a0a48b8195f2100230 (diff) | |
download | gcc-8466af0668a71af6e3a9d75ad37f080e94d4f09c.zip gcc-8466af0668a71af6e3a9d75ad37f080e94d4f09c.tar.gz gcc-8466af0668a71af6e3a9d75ad37f080e94d4f09c.tar.bz2 |
remove knetbsd support
gcc/ChangeLog:
2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* config.gcc: Remove support for knetbsd.
* configure.ac: Likewise.
* config/i386/knetbsd-gnu.h: Remove. * config/i386/knetbsd-gnu64.h: Remove.
* config/knetbsd-gnu.h: Remove.
* configure: Regenerate.
libgcc/ChangeLog:
2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* config.host: Remove support for knetbsd.
libstdc++-v3/ChangeLog:
2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* configure: Regenerate.
* configure.host: Remove support for knetbsd.
* crossconfig.m4: Likewise.
contrib/ChangeLog:
2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* config-list.mk: stop testing knetbsd.
From-SVN: r237662
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rwxr-xr-x | libstdc++-v3/configure | 2 | ||||
-rw-r--r-- | libstdc++-v3/configure.host | 2 | ||||
-rw-r--r-- | libstdc++-v3/crossconfig.m4 | 2 |
4 files changed, 9 insertions, 3 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 10ffc41..fad90d1 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org> + + * configure: Regenerate. + * configure.host: Remove support for knetbsd. + * crossconfig.m4: Likewise. + 2016-06-20 François Dumont <fdumont@gcc.gnu.org> PR libstdc++/71181 diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index 4e81166..fcbf402 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -53544,7 +53544,7 @@ $as_echo "#define HAVE_TLS 1" >>confdefs.h ;; esac ;; - *-linux* | *-uclinux* | *-gnu* | *-kfreebsd*-gnu | *-knetbsd*-gnu | *-cygwin*) + *-linux* | *-uclinux* | *-gnu* | *-kfreebsd*-gnu | *-cygwin*) # All these tests are for C++; save the language and the compiler flags. # The CXXFLAGS thing is suspicious, but based on similar bits previously diff --git a/libstdc++-v3/configure.host b/libstdc++-v3/configure.host index 0b366ea..451c209 100644 --- a/libstdc++-v3/configure.host +++ b/libstdc++-v3/configure.host @@ -265,7 +265,7 @@ case "${host_os}" in linux-musl*) os_include_dir="os/generic" ;; - gnu* | linux* | kfreebsd*-gnu | knetbsd*-gnu) + gnu* | linux* | kfreebsd*-gnu) if [ "$uclibc" = "yes" ]; then os_include_dir="os/uclibc" elif [ "$bionic" = "yes" ]; then diff --git a/libstdc++-v3/crossconfig.m4 b/libstdc++-v3/crossconfig.m4 index ece1256..6abc84f 100644 --- a/libstdc++-v3/crossconfig.m4 +++ b/libstdc++-v3/crossconfig.m4 @@ -149,7 +149,7 @@ case "${host}" in ;; esac ;; - *-linux* | *-uclinux* | *-gnu* | *-kfreebsd*-gnu | *-knetbsd*-gnu | *-cygwin*) + *-linux* | *-uclinux* | *-gnu* | *-kfreebsd*-gnu | *-cygwin*) GLIBCXX_CHECK_COMPILER_FEATURES GLIBCXX_CHECK_LINKER_FEATURES GLIBCXX_CHECK_MATH_SUPPORT |