diff options
author | Joseph Myers <joseph@codesourcery.com> | 2007-04-19 13:11:07 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2007-04-19 13:11:07 +0100 |
commit | f7cc5390ec6c351d7ffdfea4a450bf94c7bcec3b (patch) | |
tree | b7d493bc684a1e21e02fa1b798431aca4e61c61c /gcc | |
parent | d47a8b8331c719df4f7c44af84eec7a63092a440 (diff) | |
download | gcc-f7cc5390ec6c351d7ffdfea4a450bf94c7bcec3b.zip gcc-f7cc5390ec6c351d7ffdfea4a450bf94c7bcec3b.tar.gz gcc-f7cc5390ec6c351d7ffdfea4a450bf94c7bcec3b.tar.bz2 |
configure.ac: Allow both powerpc*-*-linux* and powerpc*-*-gnu* for long double compatibility.
gcc:
* configure.ac: Allow both powerpc*-*-linux* and powerpc*-*-gnu*
for long double compatibility.
* configure: Regenerate.
libstdc++-v3:
* configure.ac: Allow both powerpc*-*-linux* and powerpc*-*-gnu*
for long double compatibility.
* configure: Regenerate.
* src/complex_io.cc, src/istream-inst.cc, src/ostream-inst.cc:
Condition some _GLIBCXX_LDBL_COMPAT calls on _GLIBCXX_USE_WCHAR_T.
From-SVN: r123972
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rwxr-xr-x | gcc/configure | 3 | ||||
-rw-r--r-- | gcc/configure.ac | 3 |
3 files changed, 10 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4444365..ddd6f17 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2007-04-19 Joseph Myers <joseph@codesourcery.com> + + * configure.ac: Allow both powerpc*-*-linux* and powerpc*-*-gnu* + for long double compatibility. + * configure: Regenerate. + 2007-04-19 Eric Botcazou <ebotcazou@libertysurf.fr> PR rtl-optimization/29841 diff --git a/gcc/configure b/gcc/configure index ed56355..17e4fdc 100755 --- a/gcc/configure +++ b/gcc/configure @@ -16575,7 +16575,8 @@ fi # Some glibc targets used DFmode long double, but with glibc 2.4 # and later they can use TFmode. case "$target" in - powerpc*-*-*gnu* | \ + powerpc*-*-linux* | \ + powerpc*-*-gnu* | \ sparc*-*-linux* | \ s390*-*-linux* | \ alpha*-*-linux*) diff --git a/gcc/configure.ac b/gcc/configure.ac index 5f91210..9a7c563 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -3440,7 +3440,8 @@ fi # Some glibc targets used DFmode long double, but with glibc 2.4 # and later they can use TFmode. case "$target" in - powerpc*-*-*gnu* | \ + powerpc*-*-linux* | \ + powerpc*-*-gnu* | \ sparc*-*-linux* | \ s390*-*-linux* | \ alpha*-*-linux*) |