Changeset 1987
- Timestamp:
- Oct 15, 2013 11:46:35 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/1.15/Clp/configure
r1983 r1987 1098 1098 (implies --disable-shared) 1099 1099 --enable-debug-clp compile project Clp with debug compiler flags 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. 1100 1101 --enable-msvc Prefer (i)cl/ifort/link over GNU on MinGW/Cygwin. 1105 1102 --enable-static[=PKGS] 1106 1103 build static libraries [default=no] … … 1947 1944 1948 1945 # Get the name of the C++ compiler and appropriate compiler options 1949 case $build in 1946 1947 1948 # for backward compatibility 1949 # Check whether --enable-doscompile or --disable-doscompile was given. 1950 if test "${enable_doscompile+set}" = set; then 1951 enableval="$enable_doscompile" 1952 enable_doscompile=$enableval 1953 else 1954 enable_doscompile=no 1955 fi; 1956 1957 # Check whether --enable-msvc or --disable-msvc was given. 1958 if test "${enable_msvc+set}" = set; then 1959 enableval="$enable_msvc" 1960 enable_msvc=$enableval 1961 else 1962 enable_msvc=no 1963 if test "$enable_doscompile" = msvc ; then 1964 enable_msvc=yes 1965 elif test "$enable_doscompile" != no ; then 1966 { { echo "$as_me:$LINENO: error: --enable-doscompile=$enable_doscompile not supported anymore." >&5 1967 echo "$as_me: error: --enable-doscompile=$enable_doscompile not supported anymore." >&2;} 1968 { (exit 1); exit 1; }; } 1969 fi 1970 1971 fi; 1972 1973 if test "$enable_msvc" = yes; then 1974 case $build in 1975 *-cygwin* | *-mingw*) ;; 1976 *) { { echo "$as_me:$LINENO: error: --enable-msvc option makes sense only under Cygwin or MinGW" >&5 1977 echo "$as_me: error: --enable-msvc option makes sense only under Cygwin or MinGW" >&2;} 1978 { (exit 1); exit 1; }; } ;; 1979 esac 1980 fi 1981 1982 1983 case $build in 1950 1984 *-mingw*) 1951 1985 if test "${LD+set}" = set; then :; else … … 1954 1988 ;; 1955 1989 esac 1956 case $enable_doscompile in 1957 msvc) 1958 if test "x${LD+set}" = xset; then :; else 1959 LD=link 1960 fi 1961 ;; 1962 esac 1963 1964 1965 # Check whether --enable-doscompile or --disable-doscompile was given. 1966 if test "${enable_doscompile+set}" = set; then 1967 enableval="$enable_doscompile" 1968 if test "$enable_doscompile" != no; then 1969 case $build in 1970 *-cygwin* | *-mingw*) ;; 1971 *) { { echo "$as_me:$LINENO: error: --enable-doscompile option makes sense only under Cygwin or MinGW" >&5 1972 echo "$as_me: error: --enable-doscompile option makes sense only under Cygwin or MinGW" >&2;} 1973 { (exit 1); exit 1; }; } ;; 1974 esac 1990 if test $enable_msvc = yes ; then 1991 if test "x${LD+set}" = xset; then :; else 1992 LD=link 1975 1993 fi 1976 else 1977 enable_doscompile=no 1978 fi; 1979 case "$enable_doscompile" in 1980 mingw) 1981 case $build in 1982 *-mingw*) enable_doscompile=no ;; 1983 esac 1984 ;; 1985 msvc|no) ;; 1986 yes) enable_doscompile=mingw ;; 1987 *) { { echo "$as_me:$LINENO: error: Invalid value $enable_doscompile for --enable-doscompile. 1988 Try configure --help=recursive." >&5 1989 echo "$as_me: error: Invalid value $enable_doscompile for --enable-doscompile. 1990 Try configure --help=recursive." >&2;} 1991 { (exit 1); exit 1; }; } 1992 ;; 1993 esac 1994 if test "$enable_doscompile" != no ; then 1995 { echo "$as_me:$LINENO: DOS compile style is: $enable_doscompile" >&5 1996 echo "$as_me: DOS compile style is: $enable_doscompile" >&6;} 1997 fi 1994 fi 1998 1995 1999 1996 … … 2038 2035 case $build in 2039 2036 *-cygwin* | *-mingw*) 2040 if test "$enable_ doscompile" = msvc; then2041 comps="icl cl "2037 if test "$enable_msvc" = yes ; then 2038 comps="icl cl gcc" 2042 2039 else 2043 comps="gcc cl"2040 comps="gcc icl cl" 2044 2041 fi ;; 2045 2042 *-*-solaris*) … … 2894 2891 ;; 2895 2892 esac 2896 case $enable_doscompile in2897 mingw)2898 CFLAGS="-mno-cygwin"2899 cat >conftest.$ac_ext <<_ACEOF2900 /* confdefs.h. */2901 _ACEOF2902 cat confdefs.h >>conftest.$ac_ext2903 cat >>conftest.$ac_ext <<_ACEOF2904 /* end confdefs.h. */2905 2906 int2907 main ()2908 {2909 int i=0; i++;2910 ;2911 return 0;2912 }2913 _ACEOF2914 rm -f conftest.$ac_objext conftest$ac_exeext2915 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&52916 (eval $ac_link) 2>conftest.er12917 ac_status=$?2918 grep -v '^ *+' conftest.er1 >conftest.err2919 rm -f conftest.er12920 cat conftest.err >&52921 echo "$as_me:$LINENO: \$? = $ac_status" >&52922 (exit $ac_status); } &&2923 { ac_try='test -z "$ac_c_werror_flag"2924 || test ! -s conftest.err'2925 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&52926 (eval $ac_try) 2>&52927 ac_status=$?2928 echo "$as_me:$LINENO: \$? = $ac_status" >&52929 (exit $ac_status); }; } &&2930 { ac_try='test -s conftest$ac_exeext'2931 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&52932 (eval $ac_try) 2>&52933 ac_status=$?2934 echo "$as_me:$LINENO: \$? = $ac_status" >&52935 (exit $ac_status); }; }; then2936 coin_add_cflags="-mno-cygwin $coin_add_cflags"2937 else2938 echo "$as_me: failed program was:" >&52939 sed 's/^/| /' conftest.$ac_ext >&52940 2941 fi2942 rm -f conftest.err conftest.$ac_objext \2943 conftest$ac_exeext conftest.$ac_ext2944 CFLAGS=2945 ;;2946 esac2947 2893 esac 2948 2894 fi … … 3285 3231 clang* ) ;; 3286 3232 cl* | */cl* | CL* | */CL* | icl* | */icl* | ICL* | */ICL*) 3287 case $build in 3233 3234 case $build in 3288 3235 *-mingw*) 3289 3236 if test "${LD+set}" = set; then :; else … … 3292 3239 ;; 3293 3240 esac 3294 case $enable_doscompile in 3295 msvc) 3296 if test "x${LD+set}" = xset; then :; else 3297 LD=link 3298 fi 3299 ;; 3300 esac 3241 if test $enable_msvc = yes ; then 3242 if test "x${LD+set}" = xset; then :; else 3243 LD=link 3244 fi 3245 fi 3301 3246 3302 3247 ;; … … 3331 3276 case $build in 3332 3277 *-cygwin* | *-mingw*) 3333 if test "$enable_doscompile" = msvc; then3334 comps="icl cl"3335 3336 comps="g++cl"3337 3278 if test "$enable_msvc" = yes ; then 3279 comps="icl cl g++" 3280 else 3281 comps="g++ icl cl" 3282 fi ;; 3338 3283 *-*-solaris*) 3339 3284 comps="CC xlC_r aCC g++ c++ pgCC icpc gpp cxx cc++ cl FCC KCC RCC" ;; … … 3842 3787 coin_warn_cxxflags="-pedantic-errors $coin_warn_cxxflags" 3843 3788 ;; 3844 esac3845 3846 case $enable_doscompile in3847 mingw)3848 CXXFLAGS="-mno-cygwin"3849 cat >conftest.$ac_ext <<_ACEOF3850 /* confdefs.h. */3851 _ACEOF3852 cat confdefs.h >>conftest.$ac_ext3853 cat >>conftest.$ac_ext <<_ACEOF3854 /* end confdefs.h. */3855 3856 int3857 main ()3858 {3859 int i=0; i++;3860 ;3861 return 0;3862 }3863 _ACEOF3864 rm -f conftest.$ac_objext conftest$ac_exeext3865 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&53866 (eval $ac_link) 2>conftest.er13867 ac_status=$?3868 grep -v '^ *+' conftest.er1 >conftest.err3869 rm -f conftest.er13870 cat conftest.err >&53871 echo "$as_me:$LINENO: \$? = $ac_status" >&53872 (exit $ac_status); } &&3873 { ac_try='test -z "$ac_cxx_werror_flag"3874 || test ! -s conftest.err'3875 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&53876 (eval $ac_try) 2>&53877 ac_status=$?3878 echo "$as_me:$LINENO: \$? = $ac_status" >&53879 (exit $ac_status); }; } &&3880 { ac_try='test -s conftest$ac_exeext'3881 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&53882 (eval $ac_try) 2>&53883 ac_status=$?3884 echo "$as_me:$LINENO: \$? = $ac_status" >&53885 (exit $ac_status); }; }; then3886 coin_add_cxxflags="-mno-cygwin $coin_add_cxxflags"3887 else3888 echo "$as_me: failed program was:" >&53889 sed 's/^/| /' conftest.$ac_ext >&53890 3891 fi3892 rm -f conftest.err conftest.$ac_objext \3893 conftest$ac_exeext conftest.$ac_ext3894 CXXFLAGS=3895 ;;3896 3789 esac 3897 3790 esac … … 4246 4139 clang* ) ;; 4247 4140 cl* | */cl* | CL* | */CL* | icl* | */icl* | ICL* | */ICL*) 4248 case $build in 4141 4142 case $build in 4249 4143 *-mingw*) 4250 4144 if test "${LD+set}" = set; then :; else … … 4253 4147 ;; 4254 4148 esac 4255 case $enable_doscompile in 4256 msvc) 4257 if test "x${LD+set}" = xset; then :; else 4258 LD=link 4259 fi 4260 ;; 4261 esac 4149 if test $enable_msvc = yes ; then 4150 if test "x${LD+set}" = xset; then :; else 4151 LD=link 4152 fi 4153 fi 4262 4154 4263 4155 ;; … … 6032 5924 *-*-irix6*) 6033 5925 # Find out which ABI we are using. 6034 echo '#line 6034"configure"' > conftest.$ac_ext5926 echo '#line 5926 "configure"' > conftest.$ac_ext 6035 5927 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 6036 5928 (eval $ac_compile) 2>&5 … … 7166 7058 7167 7059 # Provide some information about the compiler. 7168 echo "$as_me:7 168:" \7060 echo "$as_me:7060:" \ 7169 7061 "checking for Fortran 77 compiler version" >&5 7170 7062 ac_compiler=`set X $ac_compile; echo $2` … … 8233 8125 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8234 8126 -e 's:$: $lt_compiler_flag:'` 8235 (eval echo "\"\$as_me:8 235: $lt_compile\"" >&5)8127 (eval echo "\"\$as_me:8127: $lt_compile\"" >&5) 8236 8128 (eval "$lt_compile" 2>conftest.err) 8237 8129 ac_status=$? 8238 8130 cat conftest.err >&5 8239 echo "$as_me:8 239: \$? = $ac_status" >&58131 echo "$as_me:8131: \$? = $ac_status" >&5 8240 8132 if (exit $ac_status) && test -s "$ac_outfile"; then 8241 8133 # The compiler can only warn and ignore the option if not recognized … … 8501 8393 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8502 8394 -e 's:$: $lt_compiler_flag:'` 8503 (eval echo "\"\$as_me:8 503: $lt_compile\"" >&5)8395 (eval echo "\"\$as_me:8395: $lt_compile\"" >&5) 8504 8396 (eval "$lt_compile" 2>conftest.err) 8505 8397 ac_status=$? 8506 8398 cat conftest.err >&5 8507 echo "$as_me:8 507: \$? = $ac_status" >&58399 echo "$as_me:8399: \$? = $ac_status" >&5 8508 8400 if (exit $ac_status) && test -s "$ac_outfile"; then 8509 8401 # The compiler can only warn and ignore the option if not recognized … … 8605 8497 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8606 8498 -e 's:$: $lt_compiler_flag:'` 8607 (eval echo "\"\$as_me:8 607: $lt_compile\"" >&5)8499 (eval echo "\"\$as_me:8499: $lt_compile\"" >&5) 8608 8500 (eval "$lt_compile" 2>out/conftest.err) 8609 8501 ac_status=$? 8610 8502 cat out/conftest.err >&5 8611 echo "$as_me:8 611: \$? = $ac_status" >&58503 echo "$as_me:8503: \$? = $ac_status" >&5 8612 8504 if (exit $ac_status) && test -s out/conftest2.$ac_objext 8613 8505 then … … 10950 10842 lt_status=$lt_dlunknown 10951 10843 cat > conftest.$ac_ext <<EOF 10952 #line 10 952"configure"10844 #line 10844 "configure" 10953 10845 #include "confdefs.h" 10954 10846 … … 11050 10942 lt_status=$lt_dlunknown 11051 10943 cat > conftest.$ac_ext <<EOF 11052 #line 1 1052"configure"10944 #line 10944 "configure" 11053 10945 #include "confdefs.h" 11054 10946 … … 13394 13286 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 13395 13287 -e 's:$: $lt_compiler_flag:'` 13396 (eval echo "\"\$as_me:13 396: $lt_compile\"" >&5)13288 (eval echo "\"\$as_me:13288: $lt_compile\"" >&5) 13397 13289 (eval "$lt_compile" 2>conftest.err) 13398 13290 ac_status=$? 13399 13291 cat conftest.err >&5 13400 echo "$as_me:13 400: \$? = $ac_status" >&513292 echo "$as_me:13292: \$? = $ac_status" >&5 13401 13293 if (exit $ac_status) && test -s "$ac_outfile"; then 13402 13294 # The compiler can only warn and ignore the option if not recognized … … 13498 13390 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 13499 13391 -e 's:$: $lt_compiler_flag:'` 13500 (eval echo "\"\$as_me:13 500: $lt_compile\"" >&5)13392 (eval echo "\"\$as_me:13392: $lt_compile\"" >&5) 13501 13393 (eval "$lt_compile" 2>out/conftest.err) 13502 13394 ac_status=$? 13503 13395 cat out/conftest.err >&5 13504 echo "$as_me:13 504: \$? = $ac_status" >&513396 echo "$as_me:13396: \$? = $ac_status" >&5 13505 13397 if (exit $ac_status) && test -s out/conftest2.$ac_objext 13506 13398 then … … 15068 14960 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 15069 14961 -e 's:$: $lt_compiler_flag:'` 15070 (eval echo "\"\$as_me:1 5070: $lt_compile\"" >&5)14962 (eval echo "\"\$as_me:14962: $lt_compile\"" >&5) 15071 14963 (eval "$lt_compile" 2>conftest.err) 15072 14964 ac_status=$? 15073 14965 cat conftest.err >&5 15074 echo "$as_me:1 5074: \$? = $ac_status" >&514966 echo "$as_me:14966: \$? = $ac_status" >&5 15075 14967 if (exit $ac_status) && test -s "$ac_outfile"; then 15076 14968 # The compiler can only warn and ignore the option if not recognized … … 15172 15064 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 15173 15065 -e 's:$: $lt_compiler_flag:'` 15174 (eval echo "\"\$as_me:15 174: $lt_compile\"" >&5)15066 (eval echo "\"\$as_me:15066: $lt_compile\"" >&5) 15175 15067 (eval "$lt_compile" 2>out/conftest.err) 15176 15068 ac_status=$? 15177 15069 cat out/conftest.err >&5 15178 echo "$as_me:15 178: \$? = $ac_status" >&515070 echo "$as_me:15070: \$? = $ac_status" >&5 15179 15071 if (exit $ac_status) && test -s out/conftest2.$ac_objext 15180 15072 then … … 17379 17271 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17380 17272 -e 's:$: $lt_compiler_flag:'` 17381 (eval echo "\"\$as_me:17 381: $lt_compile\"" >&5)17273 (eval echo "\"\$as_me:17273: $lt_compile\"" >&5) 17382 17274 (eval "$lt_compile" 2>conftest.err) 17383 17275 ac_status=$? 17384 17276 cat conftest.err >&5 17385 echo "$as_me:17 385: \$? = $ac_status" >&517277 echo "$as_me:17277: \$? = $ac_status" >&5 17386 17278 if (exit $ac_status) && test -s "$ac_outfile"; then 17387 17279 # The compiler can only warn and ignore the option if not recognized … … 17647 17539 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17648 17540 -e 's:$: $lt_compiler_flag:'` 17649 (eval echo "\"\$as_me:17 649: $lt_compile\"" >&5)17541 (eval echo "\"\$as_me:17541: $lt_compile\"" >&5) 17650 17542 (eval "$lt_compile" 2>conftest.err) 17651 17543 ac_status=$? 17652 17544 cat conftest.err >&5 17653 echo "$as_me:17 653: \$? = $ac_status" >&517545 echo "$as_me:17545: \$? = $ac_status" >&5 17654 17546 if (exit $ac_status) && test -s "$ac_outfile"; then 17655 17547 # The compiler can only warn and ignore the option if not recognized … … 17751 17643 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17752 17644 -e 's:$: $lt_compiler_flag:'` 17753 (eval echo "\"\$as_me:17 753: $lt_compile\"" >&5)17645 (eval echo "\"\$as_me:17645: $lt_compile\"" >&5) 17754 17646 (eval "$lt_compile" 2>out/conftest.err) 17755 17647 ac_status=$? 17756 17648 cat out/conftest.err >&5 17757 echo "$as_me:17 757: \$? = $ac_status" >&517649 echo "$as_me:17649: \$? = $ac_status" >&5 17758 17650 if (exit $ac_status) && test -s out/conftest2.$ac_objext 17759 17651 then … … 24824 24716 case $build in 24825 24717 *-cygwin* | *-mingw*) 24826 if test "$enable_ doscompile" = msvc; then24827 coin_f77_comps="ifort fl32 compile_f2c "24718 if test "$enable_msvc" = yes ; then 24719 coin_f77_comps="ifort fl32 compile_f2c gfortran g95 g77" 24828 24720 else 24829 24721 coin_f77_comps="gfortran ifort g95 g77 fl32 compile_f2c" … … 25049 24941 25050 24942 # Provide some information about the compiler. 25051 echo "$as_me:2 5051:" \24943 echo "$as_me:24943:" \ 25052 24944 "checking for Fortran 77 compiler version" >&5 25053 24945 ac_compiler=`set X $ac_compile; echo $2` … … 25218 25110 coin_add_fflags="-pipe" 25219 25111 coin_dbg_fflags="-g -O0" 25220 case $enable_doscompile in25221 mingw)25222 FFLAGS="-mno-cygwin"25223 cat >conftest.$ac_ext <<_ACEOF25224 program main25225 write(*,*) 'Hello world'25226 end25227 _ACEOF25228 rm -f conftest.$ac_objext conftest$ac_exeext25229 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&525230 (eval $ac_link) 2>conftest.er125231 ac_status=$?25232 grep -v '^ *+' conftest.er1 >conftest.err25233 rm -f conftest.er125234 cat conftest.err >&525235 echo "$as_me:$LINENO: \$? = $ac_status" >&525236 (exit $ac_status); } &&25237 { ac_try='test -z "$ac_f77_werror_flag"25238 || test ! -s conftest.err'25239 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&525240 (eval $ac_try) 2>&525241 ac_status=$?25242 echo "$as_me:$LINENO: \$? = $ac_status" >&525243 (exit $ac_status); }; } &&25244 { ac_try='test -s conftest$ac_exeext'25245 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&525246 (eval $ac_try) 2>&525247 ac_status=$?25248 echo "$as_me:$LINENO: \$? = $ac_status" >&525249 (exit $ac_status); }; }; then25250 coin_add_fflags="-mno-cygwin $coin_add_fflags"25251 else25252 echo "$as_me: failed program was:" >&525253 sed 's/^/| /' conftest.$ac_ext >&525254 25255 fi25256 rm -f conftest.err conftest.$ac_objext \25257 conftest$ac_exeext conftest.$ac_ext25258 FFLAGS=25259 ;;25260 esac25261 25112 else 25262 25113 case $build in … … 25550 25401 case "$F77" in 25551 25402 ifort* | */ifort* | IFORT* | */IFORT*) 25552 case $build in 25403 25404 case $build in 25553 25405 *-mingw*) 25554 25406 if test "${LD+set}" = set; then :; else … … 25557 25409 ;; 25558 25410 esac 25559 case $enable_doscompile in 25560 msvc) 25561 if test "x${LD+set}" = xset; then :; else 25562 LD=link 25563 fi 25564 ;; 25565 esac 25411 if test $enable_msvc = yes ; then 25412 if test "x${LD+set}" = xset; then :; else 25413 LD=link 25414 fi 25415 fi 25566 25416 25567 25417 ;; … … 25628 25478 ac_save_FFLAGS=$FFLAGS 25629 25479 FFLAGS="$FFLAGS $ac_verb" 25630 (eval echo $as_me:25 630: \"$ac_link\") >&525480 (eval echo $as_me:25480: \"$ac_link\") >&5 25631 25481 ac_f77_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'` 25632 25482 echo "$ac_f77_v_output" >&5 … … 25706 25556 ac_save_FFLAGS=$FFLAGS 25707 25557 FFLAGS="$FFLAGS $ac_cv_prog_f77_v" 25708 (eval echo $as_me:25 708: \"$ac_link\") >&525558 (eval echo $as_me:25558: \"$ac_link\") >&5 25709 25559 ac_f77_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'` 25710 25560 echo "$ac_f77_v_output" >&5 … … 26892 26742 # Try to autodetect the library for blas based on build system 26893 26743 #AC_MSG_CHECKING([default locations for BLAS]) 26894 skip_lblas_check=no26895 26744 case $build in 26896 26745 *-sgi-*) … … 27695 27544 27696 27545 *-cygwin* | *-mingw*) 27697 # On cygwin, consider -lblas only if doscompile is disabled. The prebuilt27698 # library will want to link with cygwin, hence won't run standalone in DOS.27699 if test "$enable_doscompile" = mingw; then27700 skip_lblas_check=yes27701 fi27702 27546 case "$CC" in 27703 27547 clang* ) ;; … … 28863 28707 esac 28864 28708 28865 if test -z "$use_blas" && test $skip_lblas_check = no; then28709 if test -z "$use_blas" ; then 28866 28710 echo "$as_me:$LINENO: checking whether -lblas has BLAS" >&5 28867 28711 echo $ECHO_N "checking whether -lblas has BLAS... $ECHO_C" >&6 … … 31507 31351 echo $ECHO_N "checking which command should be used to link input files... $ECHO_C" >&6 31508 31352 coin_link_input_cmd="$LN_S" 31509 if test "$enable_doscompile" = mingw; then31510 coin_link_input_cmd=cp31511 fi31512 31353 case "$CC" in 31513 31354 clang* ) ;;
Note: See TracChangeset
for help on using the changeset viewer.