This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b19cab9
)
qmaxmem hint doesn't apply to gcc.
author
Perl 5 Porters
<perl5-porters@africa.nicoh.com>
Wed, 17 Jul 1996 07:46:05 +0000
(07:46 +0000)
committer
Andy Dougherty
<doughera@lafcol.lafayette.edu>
Wed, 17 Jul 1996 07:46:05 +0000
(07:46 +0000)
hints/aix.sh
patch
|
blob
|
blame
|
history
diff --git
a/hints/aix.sh
b/hints/aix.sh
index
a9f277e
..
6377336
100644
(file)
--- a/
hints/aix.sh
+++ b/
hints/aix.sh
@@
-32,7
+32,11
@@
case "$osvers" in
*) # These hints at least work for 4.x, possibly other systems too.
d_setregid='undef'
d_setreuid='undef'
- ccflags='-qmaxmem=8192 -D_ALL_SOURCE -D_ANSI_C_SOURCE -D_POSIX_SOURCE'
+ ccflags='-D_ALL_SOURCE -D_ANSI_C_SOURCE -D_POSIX_SOURCE'
+ case "$cc" in
+ *gcc*) ;;
+ *) ccflags="-qmaxmem=8192 $ccflags" ;;
+ esac
nm_opt='-B'
;;
esac