Changeset 1348 for stable/1.10
- Timestamp:
- Mar 30, 2009 11:33:58 AM (12 years ago)
- Location:
- stable/1.10
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/1.10
- Property svn:externals
-
old new 1 BuildTools https://projects.coin-or.org/svn/BuildTools/ trunk1 BuildTools https://projects.coin-or.org/svn/BuildTools/stable/0.5 2 2 ThirdParty/Blas https://projects.coin-or.org/svn/BuildTools/ThirdParty/Blas/stable/1.0 3 3 ThirdParty/Lapack https://projects.coin-or.org/svn/BuildTools/ThirdParty/Lapack/stable/1.0 4 Data/Netlib https://projects.coin-or.org/svn/Data/stable/1.0/Netlib 5 Data/Sample https://projects.coin-or.org/svn/Data/trunk/Sample 6 CoinUtils https://projects.coin-or.org/svn/CoinUtils/trunk/CoinUtils 4 Data/Sample https://projects.coin-or.org/svn/Data/stable/1.0/Sample 5 CoinUtils https://projects.coin-or.org/svn/CoinUtils/stable/2.5/CoinUtils
-
- Property svn:externals
-
stable/1.10/Externals
r1091 r1348 1 BuildTools https://projects.coin-or.org/svn/BuildTools/ trunk1 BuildTools https://projects.coin-or.org/svn/BuildTools/stable/0.5 2 2 ThirdParty/Blas https://projects.coin-or.org/svn/BuildTools/ThirdParty/Blas/stable/1.0 3 3 ThirdParty/Lapack https://projects.coin-or.org/svn/BuildTools/ThirdParty/Lapack/stable/1.0 4 Data/Netlib https://projects.coin-or.org/svn/Data/stable/1.0/Netlib 5 Data/Sample https://projects.coin-or.org/svn/Data/trunk/Sample 6 CoinUtils https://projects.coin-or.org/svn/CoinUtils/trunk/CoinUtils 4 Data/Sample https://projects.coin-or.org/svn/Data/stable/1.0/Sample 5 CoinUtils https://projects.coin-or.org/svn/CoinUtils/stable/2.5/CoinUtils -
stable/1.10/configure
r1220 r1348 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 … … 3441 3448 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu 3442 3449 3443 if test -z "$CXX" ; then 3444 { { echo "$as_me:$LINENO: error: Failed to find a C++ compiler!" >&5 3445 echo "$as_me: error: Failed to find a C++ compiler!" >&2;} 3450 3451 #AC_PROG_CXX sets CXX to g++ if it cannot find a working C++ compiler 3452 #thus, we test here whether $CXX is actually working 3453 ac_ext=cc 3454 ac_cpp='$CXXCPP $CPPFLAGS' 3455 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' 3456 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 3457 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu 3458 3459 echo "$as_me:$LINENO: checking whether C++ compiler $CXX works" >&5 3460 echo $ECHO_N "checking whether C++ compiler $CXX works... $ECHO_C" >&6; 3461 cat >conftest.$ac_ext <<_ACEOF 3462 /* confdefs.h. */ 3463 _ACEOF 3464 cat confdefs.h >>conftest.$ac_ext 3465 cat >>conftest.$ac_ext <<_ACEOF 3466 /* end confdefs.h. */ 3467 3468 int 3469 main () 3470 { 3471 int i=0; 3472 ; 3473 return 0; 3474 } 3475 _ACEOF 3476 rm -f conftest.$ac_objext 3477 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 3478 (eval $ac_compile) 2>conftest.er1 3479 ac_status=$? 3480 grep -v '^ *+' conftest.er1 >conftest.err 3481 rm -f conftest.er1 3482 cat conftest.err >&5 3483 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3484 (exit $ac_status); } && 3485 { ac_try='test -z "$ac_cxx_werror_flag" 3486 || test ! -s conftest.err' 3487 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3488 (eval $ac_try) 2>&5 3489 ac_status=$? 3490 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3491 (exit $ac_status); }; } && 3492 { ac_try='test -s conftest.$ac_objext' 3493 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3494 (eval $ac_try) 2>&5 3495 ac_status=$? 3496 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3497 (exit $ac_status); }; }; then 3498 echo "$as_me:$LINENO: result: yes" >&5 3499 echo "${ECHO_T}yes" >&6 3500 else 3501 echo "$as_me: failed program was:" >&5 3502 sed 's/^/| /' conftest.$ac_ext >&5 3503 3504 echo "$as_me:$LINENO: result: no" >&5 3505 echo "${ECHO_T}no" >&6 3506 { { echo "$as_me:$LINENO: error: failed to find a C++ compiler or C++ compiler $CXX does not work" >&5 3507 echo "$as_me: error: failed to find a C++ compiler or C++ compiler $CXX does not work" >&2;} 3446 3508 { (exit 1); exit 1; }; } 3447 fi 3509 3510 fi 3511 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 3512 ac_ext=cc 3513 ac_cpp='$CXXCPP $CPPFLAGS' 3514 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' 3515 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 3516 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu 3517 3448 3518 3449 3519 # It seems that we need to cleanup something here for the Windows … … 3491 3561 coin_add_cxxflags="-pipe" 3492 3562 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 3563 coin_warn_cxxflags="-Wimplicit -Wparentheses -Wreturn-type -Wcast-qual -Wall -Wpointer-arith -Wwrite-strings -Wconversion -Wno-unknown-pragmas" 3564 case $build in 3565 *-darwin*) 3566 ;; 3567 *) 3568 coin_warn_cxxflags="-pedantic-errors $coin_warn_cxxflags" 3569 ;; 3570 esac 3571 3572 case $enable_doscompile in 3573 mingw) 3574 CXXFLAGS="-mno-cygwin" 3575 cat >conftest.$ac_ext <<_ACEOF 3498 3576 /* confdefs.h. */ 3499 3577 _ACEOF … … 3540 3618 rm -f conftest.err conftest.$ac_objext \ 3541 3619 conftest$ac_exeext conftest.$ac_ext 3542 3543 3544 3620 CXXFLAGS= 3621 ;; 3622 esac 3545 3623 esac 3546 3624 fi … … 3569 3647 case "$CXX" in 3570 3648 icpc* | */icpc*) 3571 coin_opt_cxxflags="-O3 -ip "3649 coin_opt_cxxflags="-O3 -ip -mp1" 3572 3650 coin_add_cxxflags="" 3573 3651 coin_dbg_cxxflags="-g" … … 3632 3710 xlC* | */xlC* | mpxlC* | */mpxlC*) 3633 3711 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 "3712 coin_add_cxxflags="-bmaxdata:0x80000000 -qrtti=dyna -qsuppress=1500-036 -qsuppress=1500-029 -qsourcetype=c++" 3635 3713 coin_dbg_cxxflags="-g" 3636 3714 ;; … … 3911 3989 fi ;; 3912 3990 *-*-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" ;;3991 coin_f77_comps="f95 f90 f77 xlf_r fort77 gfortran g77 pgf90 pgf77 ifort ifc frt af77" ;; 3992 *) coin_f77_comps="xlf_r fort77 gfortran f77 g77 pgf90 pgf77 ifort ifc frt af77" ;; 3915 3993 esac 3916 3994 … … 4083 4161 4084 4162 # Provide some information about the compiler. 4085 echo "$as_me:4 085:" \4163 echo "$as_me:4163:" \ 4086 4164 "checking for Fortran 77 compiler version" >&5 4087 4165 ac_compiler=`set X $ac_compile; echo $2` … … 4298 4376 case $F77 in 4299 4377 ifort* | */ifort* | IFORT* | */IFORT* ) 4300 coin_opt_fflags='- O3'4301 coin_add_fflags='-fpp -nologo -MT'4302 coin_dbg_fflags='- debug'4378 coin_opt_fflags='-MT -O3' 4379 coin_add_fflags='-fpp -nologo' 4380 coin_dbg_fflags='-MTd -debug' 4303 4381 ;; 4304 4382 compile_f2c*) … … 6342 6420 *-*-irix6*) 6343 6421 # Find out which ABI we are using. 6344 echo '#line 6 344"configure"' > conftest.$ac_ext6422 echo '#line 6422 "configure"' > conftest.$ac_ext 6345 6423 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 6346 6424 (eval $ac_compile) 2>&5 … … 8306 8384 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8307 8385 -e 's:$: $lt_compiler_flag:'` 8308 (eval echo "\"\$as_me:83 08: $lt_compile\"" >&5)8386 (eval echo "\"\$as_me:8386: $lt_compile\"" >&5) 8309 8387 (eval "$lt_compile" 2>conftest.err) 8310 8388 ac_status=$? 8311 8389 cat conftest.err >&5 8312 echo "$as_me:83 12: \$? = $ac_status" >&58390 echo "$as_me:8390: \$? = $ac_status" >&5 8313 8391 if (exit $ac_status) && test -s "$ac_outfile"; then 8314 8392 # The compiler can only warn and ignore the option if not recognized … … 8574 8652 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8575 8653 -e 's:$: $lt_compiler_flag:'` 8576 (eval echo "\"\$as_me:8 576: $lt_compile\"" >&5)8654 (eval echo "\"\$as_me:8654: $lt_compile\"" >&5) 8577 8655 (eval "$lt_compile" 2>conftest.err) 8578 8656 ac_status=$? 8579 8657 cat conftest.err >&5 8580 echo "$as_me:8 580: \$? = $ac_status" >&58658 echo "$as_me:8658: \$? = $ac_status" >&5 8581 8659 if (exit $ac_status) && test -s "$ac_outfile"; then 8582 8660 # The compiler can only warn and ignore the option if not recognized … … 8678 8756 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8679 8757 -e 's:$: $lt_compiler_flag:'` 8680 (eval echo "\"\$as_me:8 680: $lt_compile\"" >&5)8758 (eval echo "\"\$as_me:8758: $lt_compile\"" >&5) 8681 8759 (eval "$lt_compile" 2>out/conftest.err) 8682 8760 ac_status=$? 8683 8761 cat out/conftest.err >&5 8684 echo "$as_me:8 684: \$? = $ac_status" >&58762 echo "$as_me:8762: \$? = $ac_status" >&5 8685 8763 if (exit $ac_status) && test -s out/conftest2.$ac_objext 8686 8764 then … … 11023 11101 lt_status=$lt_dlunknown 11024 11102 cat > conftest.$ac_ext <<EOF 11025 #line 11 025"configure"11103 #line 11103 "configure" 11026 11104 #include "confdefs.h" 11027 11105 … … 11123 11201 lt_status=$lt_dlunknown 11124 11202 cat > conftest.$ac_ext <<EOF 11125 #line 11 125"configure"11203 #line 11203 "configure" 11126 11204 #include "confdefs.h" 11127 11205 … … 13467 13545 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 13468 13546 -e 's:$: $lt_compiler_flag:'` 13469 (eval echo "\"\$as_me:13 469: $lt_compile\"" >&5)13547 (eval echo "\"\$as_me:13547: $lt_compile\"" >&5) 13470 13548 (eval "$lt_compile" 2>conftest.err) 13471 13549 ac_status=$? 13472 13550 cat conftest.err >&5 13473 echo "$as_me:13 473: \$? = $ac_status" >&513551 echo "$as_me:13551: \$? = $ac_status" >&5 13474 13552 if (exit $ac_status) && test -s "$ac_outfile"; then 13475 13553 # The compiler can only warn and ignore the option if not recognized … … 13571 13649 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 13572 13650 -e 's:$: $lt_compiler_flag:'` 13573 (eval echo "\"\$as_me:13 573: $lt_compile\"" >&5)13651 (eval echo "\"\$as_me:13651: $lt_compile\"" >&5) 13574 13652 (eval "$lt_compile" 2>out/conftest.err) 13575 13653 ac_status=$? 13576 13654 cat out/conftest.err >&5 13577 echo "$as_me:13 577: \$? = $ac_status" >&513655 echo "$as_me:13655: \$? = $ac_status" >&5 13578 13656 if (exit $ac_status) && test -s out/conftest2.$ac_objext 13579 13657 then … … 15141 15219 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 15142 15220 -e 's:$: $lt_compiler_flag:'` 15143 (eval echo "\"\$as_me:15 143: $lt_compile\"" >&5)15221 (eval echo "\"\$as_me:15221: $lt_compile\"" >&5) 15144 15222 (eval "$lt_compile" 2>conftest.err) 15145 15223 ac_status=$? 15146 15224 cat conftest.err >&5 15147 echo "$as_me:15 147: \$? = $ac_status" >&515225 echo "$as_me:15225: \$? = $ac_status" >&5 15148 15226 if (exit $ac_status) && test -s "$ac_outfile"; then 15149 15227 # The compiler can only warn and ignore the option if not recognized … … 15245 15323 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 15246 15324 -e 's:$: $lt_compiler_flag:'` 15247 (eval echo "\"\$as_me:15 247: $lt_compile\"" >&5)15325 (eval echo "\"\$as_me:15325: $lt_compile\"" >&5) 15248 15326 (eval "$lt_compile" 2>out/conftest.err) 15249 15327 ac_status=$? 15250 15328 cat out/conftest.err >&5 15251 echo "$as_me:15 251: \$? = $ac_status" >&515329 echo "$as_me:15329: \$? = $ac_status" >&5 15252 15330 if (exit $ac_status) && test -s out/conftest2.$ac_objext 15253 15331 then … … 17452 17530 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17453 17531 -e 's:$: $lt_compiler_flag:'` 17454 (eval echo "\"\$as_me:17 454: $lt_compile\"" >&5)17532 (eval echo "\"\$as_me:17532: $lt_compile\"" >&5) 17455 17533 (eval "$lt_compile" 2>conftest.err) 17456 17534 ac_status=$? 17457 17535 cat conftest.err >&5 17458 echo "$as_me:17 458: \$? = $ac_status" >&517536 echo "$as_me:17536: \$? = $ac_status" >&5 17459 17537 if (exit $ac_status) && test -s "$ac_outfile"; then 17460 17538 # The compiler can only warn and ignore the option if not recognized … … 17720 17798 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17721 17799 -e 's:$: $lt_compiler_flag:'` 17722 (eval echo "\"\$as_me:17 722: $lt_compile\"" >&5)17800 (eval echo "\"\$as_me:17800: $lt_compile\"" >&5) 17723 17801 (eval "$lt_compile" 2>conftest.err) 17724 17802 ac_status=$? 17725 17803 cat conftest.err >&5 17726 echo "$as_me:17 726: \$? = $ac_status" >&517804 echo "$as_me:17804: \$? = $ac_status" >&5 17727 17805 if (exit $ac_status) && test -s "$ac_outfile"; then 17728 17806 # The compiler can only warn and ignore the option if not recognized … … 17824 17902 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17825 17903 -e 's:$: $lt_compiler_flag:'` 17826 (eval echo "\"\$as_me:17 826: $lt_compile\"" >&5)17904 (eval echo "\"\$as_me:17904: $lt_compile\"" >&5) 17827 17905 (eval "$lt_compile" 2>out/conftest.err) 17828 17906 ac_status=$? 17829 17907 cat out/conftest.err >&5 17830 echo "$as_me:17 830: \$? = $ac_status" >&517908 echo "$as_me:17908: \$? = $ac_status" >&5 17831 17909 if (exit $ac_status) && test -s out/conftest2.$ac_objext 17832 17910 then
Note: See TracChangeset
for help on using the changeset viewer.