diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2004-02-03 12:57:37 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2004-02-03 12:57:37 +0000 |
commit | d885ff3e09296e8fc3a676b08705fee491eed903 (patch) | |
tree | 926e8481a61cbac55902bab9731c8f3a86ddf448 /hints | |
parent | 2c549067ebd4303bd2e74113fbc53ed229b18bd2 (diff) | |
download | perl-d885ff3e09296e8fc3a676b08705fee491eed903.tar.gz |
If someone chooses xlc as default C compiler, threaded builds
will fail, unless converted to cc_r
p4raw-id: //depot/perl@22261
Diffstat (limited to 'hints')
-rw-r--r-- | hints/aix.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hints/aix.sh b/hints/aix.sh index 8bda32cebb..ca7052b188 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -314,7 +314,7 @@ $define|true|[yY]*) esac ;; cc_r) ;; - cc|xl[cC]_r) + cc|xl[cC]|xl[cC]_r) echo >&4 "Switching cc to cc_r because of POSIX threads." # xlc_r has been known to produce buggy code in AIX 4.3.2. # (e.g. pragma/overload core dumps) Let's suspect xlC_r, too. |