diff options
author | David Favor <david@davidfavor.com> | 2004-01-23 03:36:27 -0600 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2004-01-28 20:30:40 +0000 |
commit | da559df74e9ad41397970778a000dde2ec9dc4c6 (patch) | |
tree | 461f5bf7a0a554f349a35fee6de12a2666879429 /hints | |
parent | f0f92e3cdda03977fb3659c6ac0273b2c901a9e3 (diff) | |
download | perl-da559df74e9ad41397970778a000dde2ec9dc4c6.tar.gz |
Message-ID: <40113F7B.6050701@davidfavor.com>
Part I: In hints/aix.sh change -qmaxmem=16384 to -qmaxmem=-1
so no compilation stack limits are imposed.
p4raw-id: //depot/perl@22243
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 04c83c04e7..8bda32cebb 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -121,7 +121,7 @@ case "$osvers" in ccflags="$ccflags -D_ALL_SOURCE -D_ANSI_C_SOURCE -D_POSIX_SOURCE" case "$cc" in *gcc*) ;; - *) ccflags="$ccflags -qmaxmem=16384 -qnoansialias" ;; + *) ccflags="$ccflags -qmaxmem=-1 -qnoansialias" ;; esac nm_opt='-B' ;; |