diff options
author | Paolo Carlini <pcarlini@suse.de> | 2005-11-05 10:00:55 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2005-11-05 10:00:55 +0000 |
commit | 460d832b00a3580ed4dcf175894d99159535deaf (patch) | |
tree | 338e57e40d487bdfa43d8b320419c3f6ad5d3a17 | |
parent | 4b90c838d24b33f6be006a4ceb2056461c4592cf (diff) | |
download | gcc-460d832b00a3580ed4dcf175894d99159535deaf.zip gcc-460d832b00a3580ed4dcf175894d99159535deaf.tar.gz gcc-460d832b00a3580ed4dcf175894d99159535deaf.tar.bz2 |
configure.host: Add | rs6000 to the cpu_defines_dir switch, consistently with the try_cpu one.
2005-11-05 Paolo Carlini <pcarlini@suse.de>
* configure.host: Add | rs6000 to the cpu_defines_dir switch,
consistently with the try_cpu one.
From-SVN: r106525
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/configure.host | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 2dfb62d..da887c2e 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,10 @@ 2005-11-05 Paolo Carlini <pcarlini@suse.de> + * configure.host: Add | rs6000 to the cpu_defines_dir switch, + consistently with the try_cpu one. + +2005-11-05 Paolo Carlini <pcarlini@suse.de> + PR libstdc++/22203 * include/bits/c++config: Include cpu_defines.h. * include/Makefile.am: Add cpu_defines.h to host_headers. diff --git a/libstdc++-v3/configure.host b/libstdc++-v3/configure.host index f7a7109..aecdebc 100644 --- a/libstdc++-v3/configure.host +++ b/libstdc++-v3/configure.host @@ -130,7 +130,7 @@ esac # Set specific CPU overrides for cpu_defines_dir. Most can just use generic. # THIS TABLE IS SORTED. KEEP IT THAT WAY. case "${host_cpu}" in - powerpc*) + powerpc* | rs6000) cpu_defines_dir=cpu/powerpc ;; esac |