123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- CFLAGS="$CFLAGS -ot"
- CFLAGS="$CFLAGS -op"
- CFLAGS="$CFLAGS -oi"
- CFLAGS="$CFLAGS -oe"
- CFLAGS="$CFLAGS -s"
- case $CPU in
- pentium)
- # optimize for Pentium and Athlon
- # register-based arguments passing conventions
- CPU_OPT="-5r"
- # stack-based arguments passing conventions
- #CPU_OPT="-5s"
- ;;
- pentiumpro)
- # optimize for Pentium Pro, Pentium II and Pentium III
- # register-based arguments passing conventions
- CPU_OPT="-6r"
- # stack-based arguments passing conventions
- #CPU_OPT="-6s"
- ;;
- esac
- CFLAGS="$CFLAGS $CPU_OPT"
- CFLAGS="$CFLAGS -wx"
- CFLAGS="$CFLAGS -we"
- CFLAGS="$CFLAGS -bt=nt"
- CFLAGS="$CFLAGS -bm"
- CFLAGS="$CFLAGS -d2"
- CFLAGS="$CFLAGS -zq"
- have=NGX_HAVE_C99_VARIADIC_MACROS . auto/have
- NGX_RCC="wrc \$(CORE_INCS) -fo=$NGX_OBJS/nginx.res "
- NGX_RCC="$NGX_RCC $NGX_WIN32_RC $NGX_OBJS/nginx.exe"
- ngx_include_opt="-i="
- ngx_objout="-fo"
- ngx_binout="-fe="
- ngx_objext="obj"
- ngx_regex_dirsep='\\'
- ngx_dirsep="\\"
- ngx_long_start=' '
- ngx_long_end=' '
- ngx_long_regex_cont=' \&\
- '
- ngx_long_cont=' &
- '
- ngx_regex_cont=' \&\
- '
- ngx_cont=' &
- '
- ngx_tab=' &
- '
|