Add -Wp,-H200000 with HP's C compiler.

Bug: 14554
Change-Id: Ieef015daf852049744a5dd9d3d0dfd566f3ce8fc
Reviewed-on: https://code.wireshark.org/review/26603
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2018-03-23 10:42:55 -07:00
parent 9b83aaeccc
commit 4f37a3e015
1 changed files with 7 additions and 3 deletions

View File

@ -980,7 +980,11 @@ else
#
# +O2 is supported both by the C and C++ compiler.
#
WS_CFLAGS="+O2 $WS_CFLAGS"
# Add -Wp,-H200000 to handle some large #defines we
# have; it's not clear whether it's supported by the
# C++ compiler, so we only add it to the C flags.
#
WS_CFLAGS="+O2 -Wp,-H200000 $WS_CFLAGS"
if test "$CC" = "$CC_FOR_BUILD"; then
#
# We're building the build tools with the same
@ -988,10 +992,10 @@ else
# Wireshark, so add the flags to the flags for
# that compiler as well.
#
CFLAGS_FOR_BUILD="-Ae +O2 $CFLAGS"
CFLAGS_FOR_BUILD="-Ae +O2 -Wp,-H200000 $CFLAGS"
fi
WS_CXXFLAGS="+O2 $WS_CXXFLAGS"
AC_MSG_RESULT(HP C/C++ compiler - added +O2)
AC_MSG_RESULT(HP C/C++ compiler - added +O2 -Wp,-H200000)
;;
solaris*)
#