diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-18 04:50:27 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-18 04:50:27 +0000 |
commit | 9e3940308e917983e22d402f239f87d6e497d0d8 (patch) | |
tree | 1587dbcd5b01a40040f1b5de9af330dc0d6f4718 | |
parent | 5c0b86e6f865a6fd964f68b131a334b260197610 (diff) | |
download | ppe42-gcc-9e3940308e917983e22d402f239f87d6e497d0d8.tar.gz ppe42-gcc-9e3940308e917983e22d402f239f87d6e497d0d8.zip |
* configure.target (ATOMICITYH): Use cpu/generic code on earlier
versions of AIX.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42237 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/configure.target | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 12cd266f2dd..a80bdc78212 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2001-05-18 Alexandre Oliva <aoliva@redhat.com> + + * configure.target (ATOMICITYH): Use cpu/generic code on earlier + versions of AIX. + 2001-05-17 Alexandre Oliva <aoliva@redhat.com> * configure.target (ATOMICITYH): Don't use AIX 4.3-specific code diff --git a/libstdc++-v3/configure.target b/libstdc++-v3/configure.target index 18563634930..c790e33ea9d 100644 --- a/libstdc++-v3/configure.target +++ b/libstdc++-v3/configure.target @@ -108,6 +108,9 @@ case "${target}" in *-*-aix4.[3456789]* | *-*-aix[56789]*) ATOMICITYH=$os_include_dir ;; + *-*-aix*) + ATOMICITYH=config/cpu/generic + ;; *-*-irix*) ATOMICITYH=$os_include_dir ;; @@ -115,5 +118,3 @@ case "${target}" in ATOMICITYH=$cpu_include_dir ;; esac - - |