Changeset 1986 for releases/1.15.3/Clp/configure
- Timestamp:
- Oct 15, 2013 5:12:13 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
releases/1.15.3/Clp/configure
r1985 r1986 1098 1098 (implies --disable-shared) 1099 1099 --enable-debug-clp compile project Clp with debug compiler flags 1100 1101 --enable-msvc Prefer (i)cl/ifort/link over GNU on MinGW/Cygwin. 1100 --enable-doscompile Under Cygwin, compile so that executables run under 1101 DOS. Set to mingw to use gcc/g++/ld with 1102 -mno-cygwin. Set to msvc to use cl/link (or 1103 icl/link). Default when mentioned: mingw. Default 1104 when not mentioned: disabled. 1102 1105 --enable-static[=PKGS] 1103 1106 build static libraries [default=no] … … 1945 1948 1946 1949 # Get the name of the C++ compiler and appropriate compiler options 1947 1948 1949 # for backward compatibility 1950 # Check whether --enable-doscompile or --disable-doscompile was given. 1951 if test "${enable_doscompile+set}" = set; then 1952 enableval="$enable_doscompile" 1953 enable_doscompile=$enableval 1954 else 1955 enable_doscompile=no 1956 fi; 1957 1958 # Check whether --enable-msvc or --disable-msvc was given. 1959 if test "${enable_msvc+set}" = set; then 1960 enableval="$enable_msvc" 1961 enable_msvc=$enableval 1962 else 1963 enable_msvc=no 1964 if test "$enable_doscompile" = msvc ; then 1965 enable_msvc=yes 1966 elif test "$enable_doscompile" != no ; then 1967 { { echo "$as_me:$LINENO: error: --enable-doscompile=$enable_doscompile not supported anymore." >&5 1968 echo "$as_me: error: --enable-doscompile=$enable_doscompile not supported anymore." >&2;} 1969 { (exit 1); exit 1; }; } 1970 fi 1971 1972 fi; 1973 1974 if test "$enable_msvc" = yes; then 1975 case $build in 1976 *-cygwin* | *-mingw*) ;; 1977 *) { { echo "$as_me:$LINENO: error: --enable-msvc option makes sense only under Cygwin or MinGW" >&5 1978 echo "$as_me: error: --enable-msvc option makes sense only under Cygwin or MinGW" >&2;} 1979 { (exit 1); exit 1; }; } ;; 1980 esac 1981 fi 1982 1983 1984 case $build in 1950 case $build in 1985 1951 *-mingw*) 1986 1952 if test "${LD+set}" = set; then :; else … … 1989 1955 ;; 1990 1956 esac 1991 if test $enable_msvc = yes ; then 1992 if test "x${LD+set}" = xset; then :; else 1993 LD=link 1957 case $enable_doscompile in 1958 msvc) 1959 if test "x${LD+set}" = xset; then :; else 1960 LD=link 1961 fi 1962 ;; 1963 esac 1964 1965 1966 # Check whether --enable-doscompile or --disable-doscompile was given. 1967 if test "${enable_doscompile+set}" = set; then 1968 enableval="$enable_doscompile" 1969 if test "$enable_doscompile" != no; then 1970 case $build in 1971 *-cygwin* | *-mingw*) ;; 1972 *) { { echo "$as_me:$LINENO: error: --enable-doscompile option makes sense only under Cygwin or MinGW" >&5 1973 echo "$as_me: error: --enable-doscompile option makes sense only under Cygwin or MinGW" >&2;} 1974 { (exit 1); exit 1; }; } ;; 1975 esac 1994 1976 fi 1995 fi 1977 else 1978 enable_doscompile=no 1979 fi; 1980 case "$enable_doscompile" in 1981 mingw) 1982 case $build in 1983 *-mingw*) enable_doscompile=no ;; 1984 esac 1985 ;; 1986 msvc|no) ;; 1987 yes) enable_doscompile=mingw ;; 1988 *) { { echo "$as_me:$LINENO: error: Invalid value $enable_doscompile for --enable-doscompile. 1989 Try configure --help=recursive." >&5 1990 echo "$as_me: error: Invalid value $enable_doscompile for --enable-doscompile. 1991 Try configure --help=recursive." >&2;} 1992 { (exit 1); exit 1; }; } 1993 ;; 1994 esac 1995 if test "$enable_doscompile" != no ; then 1996 { echo "$as_me:$LINENO: DOS compile style is: $enable_doscompile" >&5 1997 echo "$as_me: DOS compile style is: $enable_doscompile" >&6;} 1998 fi 1996 1999 1997 2000 … … 2036 2039 case $build in 2037 2040 *-cygwin* | *-mingw*) 2038 if test "$enable_ msvc" = yes; then2039 comps="icl cl gcc"2041 if test "$enable_doscompile" = msvc ; then 2042 comps="icl cl" 2040 2043 else 2041 comps="gcc iclcl"2044 comps="gcc cl" 2042 2045 fi ;; 2043 2046 *-*-solaris*) … … 2892 2895 ;; 2893 2896 esac 2897 case $enable_doscompile in 2898 mingw) 2899 CFLAGS="-mno-cygwin" 2900 cat >conftest.$ac_ext <<_ACEOF 2901 /* confdefs.h. */ 2902 _ACEOF 2903 cat confdefs.h >>conftest.$ac_ext 2904 cat >>conftest.$ac_ext <<_ACEOF 2905 /* end confdefs.h. */ 2906 2907 int 2908 main () 2909 { 2910 int i=0; i++; 2911 ; 2912 return 0; 2913 } 2914 _ACEOF 2915 rm -f conftest.$ac_objext conftest$ac_exeext 2916 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 2917 (eval $ac_link) 2>conftest.er1 2918 ac_status=$? 2919 grep -v '^ *+' conftest.er1 >conftest.err 2920 rm -f conftest.er1 2921 cat conftest.err >&5 2922 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2923 (exit $ac_status); } && 2924 { ac_try='test -z "$ac_c_werror_flag" 2925 || test ! -s conftest.err' 2926 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2927 (eval $ac_try) 2>&5 2928 ac_status=$? 2929 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2930 (exit $ac_status); }; } && 2931 { ac_try='test -s conftest$ac_exeext' 2932 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2933 (eval $ac_try) 2>&5 2934 ac_status=$? 2935 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2936 (exit $ac_status); }; }; then 2937 coin_add_cflags="-mno-cygwin $coin_add_cflags" 2938 else 2939 echo "$as_me: failed program was:" >&5 2940 sed 's/^/| /' conftest.$ac_ext >&5 2941 2942 fi 2943 rm -f conftest.err conftest.$ac_objext \ 2944 conftest$ac_exeext conftest.$ac_ext 2945 CFLAGS= 2946 ;; 2947 esac 2894 2948 esac 2895 2949 fi … … 3232 3286 clang* ) ;; 3233 3287 cl* | */cl* | CL* | */CL* | icl* | */icl* | ICL* | */ICL*) 3234 3235 case $build in 3288 case $build in 3236 3289 *-mingw*) 3237 3290 if test "${LD+set}" = set; then :; else … … 3240 3293 ;; 3241 3294 esac 3242 if test $enable_msvc = yes ; then 3243 if test "x${LD+set}" = xset; then :; else 3244 LD=link 3245 fi 3246 fi 3295 case $enable_doscompile in 3296 msvc) 3297 if test "x${LD+set}" = xset; then :; else 3298 LD=link 3299 fi 3300 ;; 3301 esac 3247 3302 3248 3303 ;; … … 3277 3332 case $build in 3278 3333 *-cygwin* | *-mingw*) 3279 if test "$enable_msvc" = yes; then3280 comps="icl cl g++"3281 3282 comps="g++ iclcl"3283 3334 if test "$enable_doscompile" = msvc ; then 3335 comps="icl cl" 3336 else 3337 comps="g++ cl" 3338 fi ;; 3284 3339 *-*-solaris*) 3285 3340 comps="CC xlC_r aCC g++ c++ pgCC icpc gpp cxx cc++ cl FCC KCC RCC" ;; … … 3788 3843 coin_warn_cxxflags="-pedantic-errors $coin_warn_cxxflags" 3789 3844 ;; 3845 esac 3846 3847 case $enable_doscompile in 3848 mingw) 3849 CXXFLAGS="-mno-cygwin" 3850 cat >conftest.$ac_ext <<_ACEOF 3851 /* confdefs.h. */ 3852 _ACEOF 3853 cat confdefs.h >>conftest.$ac_ext 3854 cat >>conftest.$ac_ext <<_ACEOF 3855 /* end confdefs.h. */ 3856 3857 int 3858 main () 3859 { 3860 int i=0; i++; 3861 ; 3862 return 0; 3863 } 3864 _ACEOF 3865 rm -f conftest.$ac_objext conftest$ac_exeext 3866 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 3867 (eval $ac_link) 2>conftest.er1 3868 ac_status=$? 3869 grep -v '^ *+' conftest.er1 >conftest.err 3870 rm -f conftest.er1 3871 cat conftest.err >&5 3872 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3873 (exit $ac_status); } && 3874 { ac_try='test -z "$ac_cxx_werror_flag" 3875 || test ! -s conftest.err' 3876 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3877 (eval $ac_try) 2>&5 3878 ac_status=$? 3879 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3880 (exit $ac_status); }; } && 3881 { ac_try='test -s conftest$ac_exeext' 3882 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3883 (eval $ac_try) 2>&5 3884 ac_status=$? 3885 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3886 (exit $ac_status); }; }; then 3887 coin_add_cxxflags="-mno-cygwin $coin_add_cxxflags" 3888 else 3889 echo "$as_me: failed program was:" >&5 3890 sed 's/^/| /' conftest.$ac_ext >&5 3891 3892 fi 3893 rm -f conftest.err conftest.$ac_objext \ 3894 conftest$ac_exeext conftest.$ac_ext 3895 CXXFLAGS= 3896 ;; 3790 3897 esac 3791 3898 esac … … 4140 4247 clang* ) ;; 4141 4248 cl* | */cl* | CL* | */CL* | icl* | */icl* | ICL* | */ICL*) 4142 4143 case $build in 4249 case $build in 4144 4250 *-mingw*) 4145 4251 if test "${LD+set}" = set; then :; else … … 4148 4254 ;; 4149 4255 esac 4150 if test $enable_msvc = yes ; then 4151 if test "x${LD+set}" = xset; then :; else 4152 LD=link 4153 fi 4154 fi 4256 case $enable_doscompile in 4257 msvc) 4258 if test "x${LD+set}" = xset; then :; else 4259 LD=link 4260 fi 4261 ;; 4262 esac 4155 4263 4156 4264 ;; … … 5925 6033 *-*-irix6*) 5926 6034 # Find out which ABI we are using. 5927 echo '#line 5927"configure"' > conftest.$ac_ext6035 echo '#line 6035 "configure"' > conftest.$ac_ext 5928 6036 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 5929 6037 (eval $ac_compile) 2>&5 … … 7059 7167 7060 7168 # Provide some information about the compiler. 7061 echo "$as_me:7 061:" \7169 echo "$as_me:7169:" \ 7062 7170 "checking for Fortran 77 compiler version" >&5 7063 7171 ac_compiler=`set X $ac_compile; echo $2` … … 8126 8234 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8127 8235 -e 's:$: $lt_compiler_flag:'` 8128 (eval echo "\"\$as_me:8 128: $lt_compile\"" >&5)8236 (eval echo "\"\$as_me:8236: $lt_compile\"" >&5) 8129 8237 (eval "$lt_compile" 2>conftest.err) 8130 8238 ac_status=$? 8131 8239 cat conftest.err >&5 8132 echo "$as_me:8 132: \$? = $ac_status" >&58240 echo "$as_me:8240: \$? = $ac_status" >&5 8133 8241 if (exit $ac_status) && test -s "$ac_outfile"; then 8134 8242 # The compiler can only warn and ignore the option if not recognized … … 8394 8502 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8395 8503 -e 's:$: $lt_compiler_flag:'` 8396 (eval echo "\"\$as_me:8 396: $lt_compile\"" >&5)8504 (eval echo "\"\$as_me:8504: $lt_compile\"" >&5) 8397 8505 (eval "$lt_compile" 2>conftest.err) 8398 8506 ac_status=$? 8399 8507 cat conftest.err >&5 8400 echo "$as_me:8 400: \$? = $ac_status" >&58508 echo "$as_me:8508: \$? = $ac_status" >&5 8401 8509 if (exit $ac_status) && test -s "$ac_outfile"; then 8402 8510 # The compiler can only warn and ignore the option if not recognized … … 8498 8606 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8499 8607 -e 's:$: $lt_compiler_flag:'` 8500 (eval echo "\"\$as_me:8 500: $lt_compile\"" >&5)8608 (eval echo "\"\$as_me:8608: $lt_compile\"" >&5) 8501 8609 (eval "$lt_compile" 2>out/conftest.err) 8502 8610 ac_status=$? 8503 8611 cat out/conftest.err >&5 8504 echo "$as_me:8 504: \$? = $ac_status" >&58612 echo "$as_me:8612: \$? = $ac_status" >&5 8505 8613 if (exit $ac_status) && test -s out/conftest2.$ac_objext 8506 8614 then … … 10843 10951 lt_status=$lt_dlunknown 10844 10952 cat > conftest.$ac_ext <<EOF 10845 #line 10 845"configure"10953 #line 10953 "configure" 10846 10954 #include "confdefs.h" 10847 10955 … … 10943 11051 lt_status=$lt_dlunknown 10944 11052 cat > conftest.$ac_ext <<EOF 10945 #line 1 0945"configure"11053 #line 11053 "configure" 10946 11054 #include "confdefs.h" 10947 11055 … … 13287 13395 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 13288 13396 -e 's:$: $lt_compiler_flag:'` 13289 (eval echo "\"\$as_me:13 289: $lt_compile\"" >&5)13397 (eval echo "\"\$as_me:13397: $lt_compile\"" >&5) 13290 13398 (eval "$lt_compile" 2>conftest.err) 13291 13399 ac_status=$? 13292 13400 cat conftest.err >&5 13293 echo "$as_me:13 293: \$? = $ac_status" >&513401 echo "$as_me:13401: \$? = $ac_status" >&5 13294 13402 if (exit $ac_status) && test -s "$ac_outfile"; then 13295 13403 # The compiler can only warn and ignore the option if not recognized … … 13391 13499 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 13392 13500 -e 's:$: $lt_compiler_flag:'` 13393 (eval echo "\"\$as_me:13 393: $lt_compile\"" >&5)13501 (eval echo "\"\$as_me:13501: $lt_compile\"" >&5) 13394 13502 (eval "$lt_compile" 2>out/conftest.err) 13395 13503 ac_status=$? 13396 13504 cat out/conftest.err >&5 13397 echo "$as_me:13 397: \$? = $ac_status" >&513505 echo "$as_me:13505: \$? = $ac_status" >&5 13398 13506 if (exit $ac_status) && test -s out/conftest2.$ac_objext 13399 13507 then … … 14961 15069 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 14962 15070 -e 's:$: $lt_compiler_flag:'` 14963 (eval echo "\"\$as_me:1 4963: $lt_compile\"" >&5)15071 (eval echo "\"\$as_me:15071: $lt_compile\"" >&5) 14964 15072 (eval "$lt_compile" 2>conftest.err) 14965 15073 ac_status=$? 14966 15074 cat conftest.err >&5 14967 echo "$as_me:1 4967: \$? = $ac_status" >&515075 echo "$as_me:15075: \$? = $ac_status" >&5 14968 15076 if (exit $ac_status) && test -s "$ac_outfile"; then 14969 15077 # The compiler can only warn and ignore the option if not recognized … … 15065 15173 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 15066 15174 -e 's:$: $lt_compiler_flag:'` 15067 (eval echo "\"\$as_me:15 067: $lt_compile\"" >&5)15175 (eval echo "\"\$as_me:15175: $lt_compile\"" >&5) 15068 15176 (eval "$lt_compile" 2>out/conftest.err) 15069 15177 ac_status=$? 15070 15178 cat out/conftest.err >&5 15071 echo "$as_me:15 071: \$? = $ac_status" >&515179 echo "$as_me:15179: \$? = $ac_status" >&5 15072 15180 if (exit $ac_status) && test -s out/conftest2.$ac_objext 15073 15181 then … … 17272 17380 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17273 17381 -e 's:$: $lt_compiler_flag:'` 17274 (eval echo "\"\$as_me:17 274: $lt_compile\"" >&5)17382 (eval echo "\"\$as_me:17382: $lt_compile\"" >&5) 17275 17383 (eval "$lt_compile" 2>conftest.err) 17276 17384 ac_status=$? 17277 17385 cat conftest.err >&5 17278 echo "$as_me:17 278: \$? = $ac_status" >&517386 echo "$as_me:17386: \$? = $ac_status" >&5 17279 17387 if (exit $ac_status) && test -s "$ac_outfile"; then 17280 17388 # The compiler can only warn and ignore the option if not recognized … … 17540 17648 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17541 17649 -e 's:$: $lt_compiler_flag:'` 17542 (eval echo "\"\$as_me:17 542: $lt_compile\"" >&5)17650 (eval echo "\"\$as_me:17650: $lt_compile\"" >&5) 17543 17651 (eval "$lt_compile" 2>conftest.err) 17544 17652 ac_status=$? 17545 17653 cat conftest.err >&5 17546 echo "$as_me:17 546: \$? = $ac_status" >&517654 echo "$as_me:17654: \$? = $ac_status" >&5 17547 17655 if (exit $ac_status) && test -s "$ac_outfile"; then 17548 17656 # The compiler can only warn and ignore the option if not recognized … … 17644 17752 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17645 17753 -e 's:$: $lt_compiler_flag:'` 17646 (eval echo "\"\$as_me:17 646: $lt_compile\"" >&5)17754 (eval echo "\"\$as_me:17754: $lt_compile\"" >&5) 17647 17755 (eval "$lt_compile" 2>out/conftest.err) 17648 17756 ac_status=$? 17649 17757 cat out/conftest.err >&5 17650 echo "$as_me:17 650: \$? = $ac_status" >&517758 echo "$as_me:17758: \$? = $ac_status" >&5 17651 17759 if (exit $ac_status) && test -s out/conftest2.$ac_objext 17652 17760 then … … 24717 24825 case $build in 24718 24826 *-cygwin* | *-mingw*) 24719 if test "$enable_ msvc" = yes; then24720 coin_f77_comps="ifort fl32 compile_f2c gfortran g95 g77"24827 if test "$enable_doscompile" = msvc ; then 24828 coin_f77_comps="ifort fl32 compile_f2c" 24721 24829 else 24722 24830 coin_f77_comps="gfortran ifort g95 g77 fl32 compile_f2c" … … 24942 25050 24943 25051 # Provide some information about the compiler. 24944 echo "$as_me:2 4944:" \25052 echo "$as_me:25052:" \ 24945 25053 "checking for Fortran 77 compiler version" >&5 24946 25054 ac_compiler=`set X $ac_compile; echo $2` … … 25111 25219 coin_add_fflags="-pipe" 25112 25220 coin_dbg_fflags="-g -O0" 25221 case $enable_doscompile in 25222 mingw) 25223 FFLAGS="-mno-cygwin" 25224 cat >conftest.$ac_ext <<_ACEOF 25225 program main 25226 write(*,*) 'Hello world' 25227 end 25228 _ACEOF 25229 rm -f conftest.$ac_objext conftest$ac_exeext 25230 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 25231 (eval $ac_link) 2>conftest.er1 25232 ac_status=$? 25233 grep -v '^ *+' conftest.er1 >conftest.err 25234 rm -f conftest.er1 25235 cat conftest.err >&5 25236 echo "$as_me:$LINENO: \$? = $ac_status" >&5 25237 (exit $ac_status); } && 25238 { ac_try='test -z "$ac_f77_werror_flag" 25239 || test ! -s conftest.err' 25240 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 25241 (eval $ac_try) 2>&5 25242 ac_status=$? 25243 echo "$as_me:$LINENO: \$? = $ac_status" >&5 25244 (exit $ac_status); }; } && 25245 { ac_try='test -s conftest$ac_exeext' 25246 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 25247 (eval $ac_try) 2>&5 25248 ac_status=$? 25249 echo "$as_me:$LINENO: \$? = $ac_status" >&5 25250 (exit $ac_status); }; }; then 25251 coin_add_fflags="-mno-cygwin $coin_add_fflags" 25252 else 25253 echo "$as_me: failed program was:" >&5 25254 sed 's/^/| /' conftest.$ac_ext >&5 25255 25256 fi 25257 rm -f conftest.err conftest.$ac_objext \ 25258 conftest$ac_exeext conftest.$ac_ext 25259 FFLAGS= 25260 ;; 25261 esac 25113 25262 else 25114 25263 case $build in … … 25402 25551 case "$F77" in 25403 25552 ifort* | */ifort* | IFORT* | */IFORT*) 25404 25405 case $build in 25553 case $build in 25406 25554 *-mingw*) 25407 25555 if test "${LD+set}" = set; then :; else … … 25410 25558 ;; 25411 25559 esac 25412 if test $enable_msvc = yes ; then 25413 if test "x${LD+set}" = xset; then :; else 25414 LD=link 25415 fi 25416 fi 25560 case $enable_doscompile in 25561 msvc) 25562 if test "x${LD+set}" = xset; then :; else 25563 LD=link 25564 fi 25565 ;; 25566 esac 25417 25567 25418 25568 ;; … … 25479 25629 ac_save_FFLAGS=$FFLAGS 25480 25630 FFLAGS="$FFLAGS $ac_verb" 25481 (eval echo $as_me:25 481: \"$ac_link\") >&525631 (eval echo $as_me:25631: \"$ac_link\") >&5 25482 25632 ac_f77_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'` 25483 25633 echo "$ac_f77_v_output" >&5 … … 25557 25707 ac_save_FFLAGS=$FFLAGS 25558 25708 FFLAGS="$FFLAGS $ac_cv_prog_f77_v" 25559 (eval echo $as_me:25 559: \"$ac_link\") >&525709 (eval echo $as_me:25709: \"$ac_link\") >&5 25560 25710 ac_f77_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'` 25561 25711 echo "$ac_f77_v_output" >&5 … … 26743 26893 # Try to autodetect the library for blas based on build system 26744 26894 #AC_MSG_CHECKING([default locations for BLAS]) 26895 skip_lblas_check=no 26745 26896 case $build in 26746 26897 *-sgi-*) … … 27545 27696 27546 27697 *-cygwin* | *-mingw*) 27698 # On cygwin, consider -lblas only if doscompile is disabled. The prebuilt 27699 # library will want to link with cygwin, hence won't run standalone in DOS. 27700 if test "$enable_doscompile" = mingw; then 27701 skip_lblas_check=yes 27702 fi 27547 27703 case "$CC" in 27548 27704 clang* ) ;; … … 28708 28864 esac 28709 28865 28710 if test -z "$use_blas" ; then28866 if test -z "$use_blas" && test $skip_lblas_check = no; then 28711 28867 echo "$as_me:$LINENO: checking whether -lblas has BLAS" >&5 28712 28868 echo $ECHO_N "checking whether -lblas has BLAS... $ECHO_C" >&6 … … 31352 31508 echo $ECHO_N "checking which command should be used to link input files... $ECHO_C" >&6 31353 31509 coin_link_input_cmd="$LN_S" 31510 if test "$enable_doscompile" = mingw; then 31511 coin_link_input_cmd=cp 31512 fi 31354 31513 case "$CC" in 31355 31514 clang* ) ;;
Note: See TracChangeset
for help on using the changeset viewer.