Changeset 1272 for stable/1.8
- Timestamp:
- Sep 12, 2008 8:38:02 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/1.8/configure
r1240 r1272 2647 2647 coin_add_cflags="-pipe" 2648 2648 coin_dbg_cflags="-g" 2649 coin_warn_cflags="-pedantic-errors -Wimplicit -Wparentheses -Wsequence-point -Wreturn-type -Wcast-qual -Wall" 2649 coin_warn_cflags="-Wimplicit -Wparentheses -Wsequence-point -Wreturn-type -Wcast-qual -Wall -Wno-unknown-pragmas" 2650 case $build in 2651 *-darwin*) 2652 ;; 2653 *) 2654 coin_warn_cflags="-pedantic-errors $coin_warn_cflags" 2655 ;; 2656 esac 2650 2657 case $enable_doscompile in 2651 2658 mingw) … … 2720 2727 case "$CC" in 2721 2728 icc* | */icc*) 2722 coin_opt_cflags="-O3 -ip "2729 coin_opt_cflags="-O3 -ip -mp1" 2723 2730 coin_add_cflags="" 2724 2731 coin_dbg_cflags="-g" … … 3077 3084 fi ;; 3078 3085 *-*-solaris*) 3079 comps="CC xlC aCC g++ c++ pgCC icpc gpp cxx cc++ cl FCC KCC RCC" ;;3086 comps="CC xlC_r aCC g++ c++ pgCC icpc gpp cxx cc++ cl FCC KCC RCC" ;; 3080 3087 *-darwin*) comps="g++ c++ CC" ;; 3081 *) comps="xlC aCC CC g++ c++ pgCC icpc gpp cxx cc++ cl FCC KCC RCC" ;;3088 *) comps="xlC_r aCC CC g++ c++ pgCC icpc gpp cxx cc++ cl FCC KCC RCC" ;; 3082 3089 esac 3083 3090 … … 3491 3498 coin_add_cxxflags="-pipe" 3492 3499 coin_dbg_cxxflags="-g" 3493 coin_warn_cxxflags="-pedantic-errors -Wimplicit -Wparentheses -Wreturn-type -Wcast-qual -Wall -Wpointer-arith -Wwrite-strings -Wconversion" 3494 case $enable_doscompile in 3495 mingw) 3496 CXXFLAGS="-mno-cygwin" 3497 cat >conftest.$ac_ext <<_ACEOF 3500 coin_warn_cxxflags="-Wimplicit -Wparentheses -Wreturn-type -Wcast-qual -Wall -Wpointer-arith -Wwrite-strings -Wconversion -Wno-unknown-pragmas" 3501 case $build in 3502 *-darwin*) 3503 ;; 3504 *) 3505 coin_warn_cxxflags="-pedantic-errors $coin_warn_cxxflags" 3506 ;; 3507 esac 3508 3509 case $enable_doscompile in 3510 mingw) 3511 CXXFLAGS="-mno-cygwin" 3512 cat >conftest.$ac_ext <<_ACEOF 3498 3513 /* confdefs.h. */ 3499 3514 _ACEOF … … 3540 3555 rm -f conftest.err conftest.$ac_objext \ 3541 3556 conftest$ac_exeext conftest.$ac_ext 3542 3543 3544 3557 CXXFLAGS= 3558 ;; 3559 esac 3545 3560 esac 3546 3561 fi … … 3569 3584 case "$CXX" in 3570 3585 icpc* | */icpc*) 3571 coin_opt_cxxflags="-O3 -ip "3586 coin_opt_cxxflags="-O3 -ip -mp1" 3572 3587 coin_add_cxxflags="" 3573 3588 coin_dbg_cxxflags="-g" … … 3632 3647 xlC* | */xlC* | mpxlC* | */mpxlC*) 3633 3648 coin_opt_cxxflags="-O -qarch=auto -qcache=auto -qtune=auto -qmaxmem=-1" 3634 coin_add_cxxflags="-bmaxdata:0x80000000 -qrtti=dyna -qsuppress=1500-036 -qsuppress=1500-029 "3649 coin_add_cxxflags="-bmaxdata:0x80000000 -qrtti=dyna -qsuppress=1500-036 -qsuppress=1500-029 -qsourcetype=c++" 3635 3650 coin_dbg_cxxflags="-g" 3636 3651 ;; … … 3911 3926 fi ;; 3912 3927 *-*-solaris*) 3913 coin_f77_comps="f95 f90 f77 xlf fort77 gfortran g77 pgf90 pgf77 ifort ifc frt af77" ;;3914 *) coin_f77_comps="xlf fort77 gfortran f77 g77 pgf90 pgf77 ifort ifc frt af77" ;;3928 coin_f77_comps="f95 f90 f77 xlf_r fort77 gfortran g77 pgf90 pgf77 ifort ifc frt af77" ;; 3929 *) coin_f77_comps="xlf_r fort77 gfortran f77 g77 pgf90 pgf77 ifort ifc frt af77" ;; 3915 3930 esac 3916 3931 … … 4083 4098 4084 4099 # Provide some information about the compiler. 4085 echo "$as_me:4 085:" \4100 echo "$as_me:4100:" \ 4086 4101 "checking for Fortran 77 compiler version" >&5 4087 4102 ac_compiler=`set X $ac_compile; echo $2` … … 4298 4313 case $F77 in 4299 4314 ifort* | */ifort* | IFORT* | */IFORT* ) 4300 coin_opt_fflags='- O3'4301 coin_add_fflags='-fpp -nologo -MT'4302 coin_dbg_fflags='- debug'4315 coin_opt_fflags='-MT -O3' 4316 coin_add_fflags='-fpp -nologo' 4317 coin_dbg_fflags='-MTd -debug' 4303 4318 ;; 4304 4319 compile_f2c*) … … 6342 6357 *-*-irix6*) 6343 6358 # Find out which ABI we are using. 6344 echo '#line 63 44"configure"' > conftest.$ac_ext6359 echo '#line 6359 "configure"' > conftest.$ac_ext 6345 6360 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 6346 6361 (eval $ac_compile) 2>&5 … … 8306 8321 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8307 8322 -e 's:$: $lt_compiler_flag:'` 8308 (eval echo "\"\$as_me:83 08: $lt_compile\"" >&5)8323 (eval echo "\"\$as_me:8323: $lt_compile\"" >&5) 8309 8324 (eval "$lt_compile" 2>conftest.err) 8310 8325 ac_status=$? 8311 8326 cat conftest.err >&5 8312 echo "$as_me:83 12: \$? = $ac_status" >&58327 echo "$as_me:8327: \$? = $ac_status" >&5 8313 8328 if (exit $ac_status) && test -s "$ac_outfile"; then 8314 8329 # The compiler can only warn and ignore the option if not recognized … … 8574 8589 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8575 8590 -e 's:$: $lt_compiler_flag:'` 8576 (eval echo "\"\$as_me:85 76: $lt_compile\"" >&5)8591 (eval echo "\"\$as_me:8591: $lt_compile\"" >&5) 8577 8592 (eval "$lt_compile" 2>conftest.err) 8578 8593 ac_status=$? 8579 8594 cat conftest.err >&5 8580 echo "$as_me:85 80: \$? = $ac_status" >&58595 echo "$as_me:8595: \$? = $ac_status" >&5 8581 8596 if (exit $ac_status) && test -s "$ac_outfile"; then 8582 8597 # The compiler can only warn and ignore the option if not recognized … … 8678 8693 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8679 8694 -e 's:$: $lt_compiler_flag:'` 8680 (eval echo "\"\$as_me:86 80: $lt_compile\"" >&5)8695 (eval echo "\"\$as_me:8695: $lt_compile\"" >&5) 8681 8696 (eval "$lt_compile" 2>out/conftest.err) 8682 8697 ac_status=$? 8683 8698 cat out/conftest.err >&5 8684 echo "$as_me:86 84: \$? = $ac_status" >&58699 echo "$as_me:8699: \$? = $ac_status" >&5 8685 8700 if (exit $ac_status) && test -s out/conftest2.$ac_objext 8686 8701 then … … 11023 11038 lt_status=$lt_dlunknown 11024 11039 cat > conftest.$ac_ext <<EOF 11025 #line 110 25"configure"11040 #line 11040 "configure" 11026 11041 #include "confdefs.h" 11027 11042 … … 11123 11138 lt_status=$lt_dlunknown 11124 11139 cat > conftest.$ac_ext <<EOF 11125 #line 111 25"configure"11140 #line 11140 "configure" 11126 11141 #include "confdefs.h" 11127 11142 … … 13467 13482 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 13468 13483 -e 's:$: $lt_compiler_flag:'` 13469 (eval echo "\"\$as_me:134 69: $lt_compile\"" >&5)13484 (eval echo "\"\$as_me:13484: $lt_compile\"" >&5) 13470 13485 (eval "$lt_compile" 2>conftest.err) 13471 13486 ac_status=$? 13472 13487 cat conftest.err >&5 13473 echo "$as_me:134 73: \$? = $ac_status" >&513488 echo "$as_me:13488: \$? = $ac_status" >&5 13474 13489 if (exit $ac_status) && test -s "$ac_outfile"; then 13475 13490 # The compiler can only warn and ignore the option if not recognized … … 13571 13586 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 13572 13587 -e 's:$: $lt_compiler_flag:'` 13573 (eval echo "\"\$as_me:135 73: $lt_compile\"" >&5)13588 (eval echo "\"\$as_me:13588: $lt_compile\"" >&5) 13574 13589 (eval "$lt_compile" 2>out/conftest.err) 13575 13590 ac_status=$? 13576 13591 cat out/conftest.err >&5 13577 echo "$as_me:135 77: \$? = $ac_status" >&513592 echo "$as_me:13592: \$? = $ac_status" >&5 13578 13593 if (exit $ac_status) && test -s out/conftest2.$ac_objext 13579 13594 then … … 15141 15156 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 15142 15157 -e 's:$: $lt_compiler_flag:'` 15143 (eval echo "\"\$as_me:151 43: $lt_compile\"" >&5)15158 (eval echo "\"\$as_me:15158: $lt_compile\"" >&5) 15144 15159 (eval "$lt_compile" 2>conftest.err) 15145 15160 ac_status=$? 15146 15161 cat conftest.err >&5 15147 echo "$as_me:151 47: \$? = $ac_status" >&515162 echo "$as_me:15162: \$? = $ac_status" >&5 15148 15163 if (exit $ac_status) && test -s "$ac_outfile"; then 15149 15164 # The compiler can only warn and ignore the option if not recognized … … 15245 15260 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 15246 15261 -e 's:$: $lt_compiler_flag:'` 15247 (eval echo "\"\$as_me:152 47: $lt_compile\"" >&5)15262 (eval echo "\"\$as_me:15262: $lt_compile\"" >&5) 15248 15263 (eval "$lt_compile" 2>out/conftest.err) 15249 15264 ac_status=$? 15250 15265 cat out/conftest.err >&5 15251 echo "$as_me:152 51: \$? = $ac_status" >&515266 echo "$as_me:15266: \$? = $ac_status" >&5 15252 15267 if (exit $ac_status) && test -s out/conftest2.$ac_objext 15253 15268 then … … 17452 17467 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17453 17468 -e 's:$: $lt_compiler_flag:'` 17454 (eval echo "\"\$as_me:174 54: $lt_compile\"" >&5)17469 (eval echo "\"\$as_me:17469: $lt_compile\"" >&5) 17455 17470 (eval "$lt_compile" 2>conftest.err) 17456 17471 ac_status=$? 17457 17472 cat conftest.err >&5 17458 echo "$as_me:174 58: \$? = $ac_status" >&517473 echo "$as_me:17473: \$? = $ac_status" >&5 17459 17474 if (exit $ac_status) && test -s "$ac_outfile"; then 17460 17475 # The compiler can only warn and ignore the option if not recognized … … 17720 17735 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17721 17736 -e 's:$: $lt_compiler_flag:'` 17722 (eval echo "\"\$as_me:177 22: $lt_compile\"" >&5)17737 (eval echo "\"\$as_me:17737: $lt_compile\"" >&5) 17723 17738 (eval "$lt_compile" 2>conftest.err) 17724 17739 ac_status=$? 17725 17740 cat conftest.err >&5 17726 echo "$as_me:177 26: \$? = $ac_status" >&517741 echo "$as_me:17741: \$? = $ac_status" >&5 17727 17742 if (exit $ac_status) && test -s "$ac_outfile"; then 17728 17743 # The compiler can only warn and ignore the option if not recognized … … 17824 17839 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17825 17840 -e 's:$: $lt_compiler_flag:'` 17826 (eval echo "\"\$as_me:178 26: $lt_compile\"" >&5)17841 (eval echo "\"\$as_me:17841: $lt_compile\"" >&5) 17827 17842 (eval "$lt_compile" 2>out/conftest.err) 17828 17843 ac_status=$? 17829 17844 cat out/conftest.err >&5 17830 echo "$as_me:178 30: \$? = $ac_status" >&517845 echo "$as_me:17845: \$? = $ac_status" >&5 17831 17846 if (exit $ac_status) && test -s out/conftest2.$ac_objext 17832 17847 then
Note: See TracChangeset
for help on using the changeset viewer.