diff options
author | Michael Haardt <michael@moria.de> | 2019-04-22 12:44:42 +0200 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2019-06-17 10:45:19 +1000 |
commit | f4af610f061b3fbfc085e544669ec78982cc2156 (patch) | |
tree | 0f2da530c4c5469045a2ac95a736dffe5b25880c /hints | |
parent | cc1cbb0666e28628f59cb4250463295e43646214 (diff) | |
download | perl-f4af610f061b3fbfc085e544669ec78982cc2156.tar.gz |
Increase cpp macro space for HP-UX 11.00 ANSI compiler
Diffstat (limited to 'hints')
-rw-r--r-- | hints/hpux.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh index d224ceef1d..8f273a6ef9 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -160,7 +160,7 @@ case `$cc -v 2>&1`"" in ccversion=`what $cc_found | awk '/Compiler/{print $2}/Itanium/{print $6,$7}/for Integrity/{print $6,$7}'` case "$ccflags" in "-Ae "*) ;; - *) ccflags="-Ae $cc_cppflags" + *) ccflags="-Ae -Wp,-H65000 $cc_cppflags" # +vnocompatwarnings not known in 10.10 and older if [ $xxOsRev -ge 1020 ]; then ccflags="$ccflags -Wl,+vnocompatwarnings" |