nginx/auto/cc

312 lines
7.2 KiB
Plaintext
Raw Normal View History

2003-11-26 04:44:56 +08:00
case $CC in
*gcc)
2004-03-05 16:34:24 +08:00
# gcc 2.95.4, 3.3.2
2003-11-26 04:44:56 +08:00
# optimization
#CFLAGS="$CFLAGS -O2 -fomit-frame-pointer"
2004-03-11 01:55:19 +08:00
2004-03-11 04:56:39 +08:00
case $CPU in
2004-03-13 00:57:08 +08:00
pentium)
# optimize for Pentium and Athlon
CPU_OPT="-march=pentium"
;;
2004-03-11 01:55:19 +08:00
pentiumpro)
# optimize for Pentium Pro, Pentium II and Pentium III
2004-03-11 04:56:39 +08:00
CPU_OPT="-march=pentiumpro"
2004-03-11 01:55:19 +08:00
;;
2004-03-13 00:57:08 +08:00
2004-03-11 01:55:19 +08:00
pentium4)
# optimize for Pentium 4, gcc 3.x
2004-03-11 04:56:39 +08:00
CPU_OPT="-march=pentium4"
2004-03-11 01:55:19 +08:00
;;
esac
2004-03-11 23:42:41 +08:00
CFLAGS="$CFLAGS $PIPE"
2004-03-11 04:56:39 +08:00
CFLAGS="$CFLAGS $CPU_OPT"
2004-03-12 05:34:52 +08:00
if [ ".$PCRE_OPT" = "." ]; then
PCRE_OPT="-O2 -fomit-frame-pointer $PIPE $CPU_OPT"
else
PCRE_OPT="$PCRE_OPT $PIPE"
2004-03-11 04:56:39 +08:00
fi
2004-03-12 05:34:52 +08:00
if [ ".$MD5_OPT" = "." ]; then
MD5_OPT="-O2 -fomit-frame-pointer $PIPE $CPU_OPT"
else
MD5_OPT="$MD5_OPT $PIPE"
2004-03-11 04:56:39 +08:00
fi
2004-03-12 05:34:52 +08:00
if [ ".$ZLIB_OPT" = "." ]; then
ZLIB_OPT="-O2 -fomit-frame-pointer $PIPE $CPU_OPT"
else
ZLIB_OPT="$ZLIB_OPT $PIPE"
2004-03-11 04:56:39 +08:00
fi
2003-11-26 04:44:56 +08:00
# warnings
CFLAGS="$CFLAGS -O -W"
CFLAGS="$CFLAGS -Wall -Wpointer-arith"
#CFLAGS="$CFLAGS -Wconversion"
#CFLAGS="$CFLAGS -Winline"
# we have a lot of the unused function arguments
CFLAGS="$CFLAGS -Wno-unused"
# stop on warning
CFLAGS="$CFLAGS -Werror"
# ANSI C warnings
#CFLAGS="$CFLAGS -pedantic"
# debug
CFLAGS="$CFLAGS -g"
2004-02-18 23:45:21 +08:00
have=HAVE_GCC_VARIADIC_MACROS . auto/have
2003-12-01 04:03:18 +08:00
2004-03-12 05:34:52 +08:00
if [ ".$CPP" = "." ]; then
CPP="$CC -E"
fi
2004-03-10 03:47:07 +08:00
LINK="\$(CC)"
2003-11-26 04:44:56 +08:00
OBJEXT=o
2004-03-10 03:47:07 +08:00
COMPILEONLY="-c"
2003-11-26 04:44:56 +08:00
OBJOUT="-o "
BINOUT="-o "
CC_STRONG="$CC -Wall -Werror"
;;
*icc)
# Intel C++ compiler 7.1
# optimization
CFLAGS="$CFLAGS -O"
2004-03-11 04:56:39 +08:00
# inline functions declared with __inline
2004-03-15 04:46:25 +08:00
#CFLAGS="$CFLAGS -Ob1"
2004-03-11 04:56:39 +08:00
# inline any function, at the compiler's discretion
2004-03-15 04:46:25 +08:00
CFLAGS="$CFLAGS -Ob2"
# single-file IP optimizations
#IPO="-ip"
# multi-file IP optimizations
IPO="-ipo -ipo_obj"
CFLAGS="$CFLAGS $IPO"
CORE_LINK="$CORE_LINK $IPO"
CORE_LINK="$CORE_LINK -opt_report_file=$OBJS/opt_report_file"
2004-03-11 01:55:19 +08:00
2004-03-11 04:56:39 +08:00
case $CPU in
2004-03-13 00:57:08 +08:00
pentium)
# optimize for Pentium and Athlon
CPU_OPT="-march=pentium"
;;
2004-03-11 01:55:19 +08:00
pentiumpro)
# optimize for Pentium Pro, Pentium II and Pentium III
2004-03-11 04:56:39 +08:00
CPU_OPT="-mcpu=pentiumpro -march=pentiumpro"
2004-03-11 01:55:19 +08:00
;;
2004-03-13 00:57:08 +08:00
2004-03-11 01:55:19 +08:00
pentium4)
# optimize for Pentium 4, default
2004-03-11 04:56:39 +08:00
CPU_OPT="-march=pentium4"
2004-03-11 01:55:19 +08:00
;;
esac
2004-03-11 04:56:39 +08:00
CFLAGS="$CFLAGS $CPU_OPT"
2004-03-12 05:34:52 +08:00
if [ ".$PCRE_OPT" = "." ]; then
2004-03-15 04:46:25 +08:00
PCRE_OPT="-O $IPO $CPU_OPT"
2004-03-11 04:56:39 +08:00
fi
2004-03-12 05:34:52 +08:00
if [ ".$MD5_OPT" = "." ]; then
2004-03-15 04:46:25 +08:00
MD5_OPT="-O $IPO $CPU_OPT"
2004-03-11 04:56:39 +08:00
fi
2004-03-12 05:34:52 +08:00
if [ ".$ZLIB_OPT" = "." ]; then
2004-03-15 04:46:25 +08:00
ZLIB_OPT="-O $IPO $CPU_OPT"
2004-03-11 04:56:39 +08:00
fi
2003-11-26 04:44:56 +08:00
# warnings
CFLAGS="$CFLAGS -w1"
2004-03-16 15:10:12 +08:00
#CFLAGS="$CFLAGS -w2"
2003-11-26 04:44:56 +08:00
# stop on warning
CFLAGS="$CFLAGS -Werror"
2004-03-15 04:46:25 +08:00
# debug
CFLAGS="$CFLAGS -g"
2004-02-18 23:45:21 +08:00
have=HAVE_C99_VARIADIC_MACROS . auto/have
2003-12-01 04:03:18 +08:00
2004-03-10 03:47:07 +08:00
LINK="\$(CC)"
2003-11-26 04:44:56 +08:00
OBJEXT=o
2004-03-10 03:47:07 +08:00
COMPILEONLY="-c"
2003-11-26 04:44:56 +08:00
OBJOUT="-o "
BINOUT="-o "
CC_STRONG="$CC -w1 -Werror"
;;
cl)
# MSVC 6.0 SP2
# optimization
# maximize speed
CFLAGS="$CFLAGS -O2"
# enable global optimization
CFLAGS="$CFLAGS -Og"
# enable intrinsic functions
CFLAGS="$CFLAGS -Oi"
# inline expansion
CFLAGS="$CFLAGS -Ob1"
# enable frame pointer omission
CFLAGS="$CFLAGS -Oy"
# disable stack checking calls
CFLAGS="$CFLAGS -Gs"
2004-03-11 01:55:19 +08:00
2004-03-11 04:56:39 +08:00
case $CPU in
2004-03-13 00:57:08 +08:00
pentiumpro)
# optimize for Pentium and Athlon
CPU_OPT="-G5"
;;
2004-03-11 01:55:19 +08:00
pentiumpro)
# optimize for Pentium Pro, Pentium II and Pentium III
2004-03-11 04:56:39 +08:00
CPU_OPT="-G6"
2004-03-11 01:55:19 +08:00
;;
2004-03-13 00:57:08 +08:00
2004-03-11 01:55:19 +08:00
pentium4)
# optimize for Pentium 4
2004-03-11 04:56:39 +08:00
#CPU_OPT="-G7"
2004-03-11 01:55:19 +08:00
;;
esac
2004-03-11 04:56:39 +08:00
CFLAGS="$CFLAGS $CPU_OPT"
2003-11-26 04:44:56 +08:00
# warnings
2004-03-16 15:10:12 +08:00
#CFLAGS="$CFLAGS -W3"
CFLAGS="$CFLAGS -W4"
2003-11-26 04:44:56 +08:00
# stop on warning
CFLAGS="$CFLAGS -WX"
2004-03-12 05:34:52 +08:00
# link with libcmt.lib, multithreaded
#LIBC="-MT"
# link with msvcrt.dll
LIBC="-MD"
CFLAGS="$CFLAGS $LIBC"
2003-11-26 04:44:56 +08:00
# disable logo
CFLAGS="$CFLAGS -nologo"
2004-03-10 03:47:07 +08:00
LINK="\$(CC)"
2003-11-26 04:44:56 +08:00
# link flags
2004-03-12 05:34:52 +08:00
CORE_LINK="$CORE_LINK -link -verbose:lib"
2003-11-26 04:44:56 +08:00
# debug
CFLAGS="$CFLAGS -Yd"
CORE_LINK="$CORE_LINK -debug -debugtype:coff"
2004-03-10 03:47:07 +08:00
# precompiled headers
CORE_DEPS="$CORE_DEPS ngx_config.pch"
PCH="ngx_config.pch"
BUILDPCH="-Ycngx_config.h"
USEPCH="-Yungx_config.h"
2003-11-26 04:44:56 +08:00
OBJEXT=obj
2004-03-10 03:47:07 +08:00
COMPILEONLY="-c"
2003-11-26 04:44:56 +08:00
OBJOUT="-Fo"
BINOUT="-Fe"
2004-03-10 03:47:07 +08:00
BINEXT=.exe
2003-11-26 04:44:56 +08:00
CC_STRONG="$CC -W3 -WX"
;;
2004-03-05 00:34:23 +08:00
2004-03-10 03:47:07 +08:00
wcl386)
2004-03-05 00:34:23 +08:00
# Open Watcom 1.0
2004-03-05 16:34:24 +08:00
# optimization
# maximize speed
CFLAGS="$CFLAGS -ot"
# reorder instructions for best pipeline usage
CFLAGS="$CFLAGS -op"
# inline intrinsic functions
CFLAGS="$CFLAGS -oi"
# inline expansion
CFLAGS="$CFLAGS -oe"
# disable stack checking calls
CFLAGS="$CFLAGS -s"
2004-03-11 01:55:19 +08:00
2004-03-11 04:56:39 +08:00
case $CPU in
2004-03-13 00:57:08 +08:00
pentium)
# optimize for Pentium and Athlon
# register-based arguments passing conventions
CPU_OPT="-5r"
# stack-based arguments passing conventions
#CPU_OPT="-5s"
;;
2004-03-11 01:55:19 +08:00
pentiumpro)
# optimize for Pentium Pro, Pentium II and Pentium III
# register-based arguments passing conventions
2004-03-11 04:56:39 +08:00
CPU_OPT="-6r"
2004-03-11 01:55:19 +08:00
# stack-based arguments passing conventions
2004-03-11 04:56:39 +08:00
#CPU_OPT="-6s"
2004-03-11 01:55:19 +08:00
;;
esac
2004-03-11 04:56:39 +08:00
CFLAGS="$CFLAGS $CPU_OPT"
2004-03-05 16:34:24 +08:00
# warnings
#CFLAGS="$CFLAGS -w3"
CFLAGS="$CFLAGS -wx"
# stop on warning
2004-03-10 03:47:07 +08:00
CFLAGS="$CFLAGS -we"
2004-03-05 16:34:24 +08:00
# built target is NT
CFLAGS="$CFLAGS -bt=nt"
# multithreaded
CFLAGS="$CFLAGS -bm"
# debug
CFLAGS="$CFLAGS -d2"
# quiet
CFLAGS="$CFLAGS -zq"
2004-03-10 03:47:07 +08:00
# precompiled headers
CORE_DEPS="$CORE_DEPS $OBJS\\ngx_config.pch"
PCH="$OBJS\\ngx_config.pch"
BUILDPCH="-fhq=$OBJS\\ngx_config.pch"
USEPCH="-fh=$OBJS\\ngx_config.pch"
LINK="\$(CC)"
# link flags
2004-03-05 16:34:24 +08:00
CORE_LINK="$CORE_LINK -l=nt"
OBJEXT=obj
2004-03-10 03:47:07 +08:00
COMPILEONLY="-c"
2004-03-05 16:34:24 +08:00
OBJOUT="-fo"
2004-03-10 03:47:07 +08:00
BINOUT="-fe="
BINEXT=.exe
2004-03-05 16:34:24 +08:00
INC_EQ=YES
MAKE_BS=YES
MAKE_SL=YES
2004-03-05 00:34:23 +08:00
;;
2003-11-26 04:44:56 +08:00
esac