- Timestamp:
- May 31, 2015, 1:54:23 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
- Children:
- 5cb5f842
- Parents:
- 86bd7c1f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r86bd7c1f r00cc023 611 611 GREP 612 612 CPP 613 RANLIB 613 614 am__fastdepCC_FALSE 614 615 am__fastdepCC_TRUE … … 2363 2364 2364 2365 2365 am__api_version='1.11'2366 2367 2366 ac_aux_dir= 2368 for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do2367 for ac_dir in automake "$srcdir"/automake; do 2369 2368 if test -f "$ac_dir/install-sh"; then 2370 2369 ac_aux_dir=$ac_dir … … 2382 2381 done 2383 2382 if test -z "$ac_aux_dir"; then 2384 as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 52383 as_fn_error $? "cannot find install-sh, install.sh, or shtool in automake \"$srcdir\"/automake" "$LINENO" 5 2385 2384 fi 2386 2385 … … 2393 2392 ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. 2394 2393 2394 2395 2396 ac_config_headers="$ac_config_headers config.h" 2397 2398 2399 am__api_version='1.11' 2395 2400 2396 2401 # Find a good install program. We prefer a C program (faster), … … 2894 2899 2895 2900 2896 ac_config_headers="$ac_config_headers config.h"2897 2898 2899 2901 # Installation paths 2900 2902 … … 2908 2910 2909 2911 if test x$backcompiler != x; then 2910 2912 cat >>confdefs.h <<_ACEOF 2911 2913 #define GCC_PATH "${backcompiler}" 2912 2914 _ACEOF 2913 2915 2914 2916 BACKEND_CC=${backcompiler} 2915 2917 else 2916 2918 # Extract the first word of "gcc", so it can be a program name with args. 2917 2919 set dummy gcc; ac_word=$2 2918 2920 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 … … 2955 2957 2956 2958 2957 2958 2959 2960 2959 if test "$GCC_PATH" = "N/A"; then 2960 as_fn_error $? "some version of gcc is needed. Get it at ftp://ftp.gnu.org" "$LINENO" 5 2961 exit 1 2962 fi 2961 2963 2962 2964 cat >>confdefs.h <<_ACEOF … … 2964 2966 _ACEOF 2965 2967 2966 2968 BACKEND_CC=${GCC_PATH} 2967 2969 fi 2968 2970 2969 2971 2970 CFA_PREFIX=2971 2972 if test "x$prefix" = "xNONE"; then 2972 2973 else 2974 2973 cfa_prefix=${ac_default_prefix} 2974 else 2975 cfa_prefix=${prefix} 2975 2976 fi 2976 2977 … … 2982 2983 2983 2984 2984 CFA_INCDIR=2985 2985 if test "$includedir" = '${prefix}/include'; then 2986 2986 cfa_incdir="${cfa_prefix}/include" … … 2996 2996 2997 2997 2998 CFA_BINDIR=2999 2998 if test "$bindir" = '${exec_prefix}/bin'; then 3000 2999 cfa_bindir="${cfa_prefix}/bin" … … 3010 3009 3011 3010 3012 CFA_LIBDIR=3013 3011 if test "$libdir" = '${exec_prefix}/lib'; then 3014 3012 cfa_libdir=${cfa_prefix}/lib … … 4433 4431 4434 4432 4433 if test "x$CC" != xcc; then 4434 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC and cc understand -c and -o together" >&5 4435 $as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; } 4436 else 4437 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether cc understands -c and -o together" >&5 4438 $as_echo_n "checking whether cc understands -c and -o together... " >&6; } 4439 fi 4440 set dummy $CC; ac_cc=`$as_echo "$2" | 4441 sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` 4442 if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then : 4443 $as_echo_n "(cached) " >&6 4444 else 4445 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4446 /* end confdefs.h. */ 4447 4448 int 4449 main () 4450 { 4451 4452 ; 4453 return 0; 4454 } 4455 _ACEOF 4456 # Make sure it works both with $CC and with simple cc. 4457 # We do the test twice because some compilers refuse to overwrite an 4458 # existing .o file with -o, though they will create one. 4459 ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5' 4460 rm -f conftest2.* 4461 if { { case "(($ac_try" in 4462 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 4463 *) ac_try_echo=$ac_try;; 4464 esac 4465 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 4466 $as_echo "$ac_try_echo"; } >&5 4467 (eval "$ac_try") 2>&5 4468 ac_status=$? 4469 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 4470 test $ac_status = 0; } && 4471 test -f conftest2.$ac_objext && { { case "(($ac_try" in 4472 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 4473 *) ac_try_echo=$ac_try;; 4474 esac 4475 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 4476 $as_echo "$ac_try_echo"; } >&5 4477 (eval "$ac_try") 2>&5 4478 ac_status=$? 4479 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 4480 test $ac_status = 0; }; 4481 then 4482 eval ac_cv_prog_cc_${ac_cc}_c_o=yes 4483 if test "x$CC" != xcc; then 4484 # Test first that cc exists at all. 4485 if { ac_try='cc -c conftest.$ac_ext >&5' 4486 { { case "(($ac_try" in 4487 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 4488 *) ac_try_echo=$ac_try;; 4489 esac 4490 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 4491 $as_echo "$ac_try_echo"; } >&5 4492 (eval "$ac_try") 2>&5 4493 ac_status=$? 4494 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 4495 test $ac_status = 0; }; }; then 4496 ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5' 4497 rm -f conftest2.* 4498 if { { case "(($ac_try" in 4499 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 4500 *) ac_try_echo=$ac_try;; 4501 esac 4502 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 4503 $as_echo "$ac_try_echo"; } >&5 4504 (eval "$ac_try") 2>&5 4505 ac_status=$? 4506 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 4507 test $ac_status = 0; } && 4508 test -f conftest2.$ac_objext && { { case "(($ac_try" in 4509 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 4510 *) ac_try_echo=$ac_try;; 4511 esac 4512 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 4513 $as_echo "$ac_try_echo"; } >&5 4514 (eval "$ac_try") 2>&5 4515 ac_status=$? 4516 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 4517 test $ac_status = 0; }; 4518 then 4519 # cc works too. 4520 : 4521 else 4522 # cc exists but doesn't like -o. 4523 eval ac_cv_prog_cc_${ac_cc}_c_o=no 4524 fi 4525 fi 4526 fi 4527 else 4528 eval ac_cv_prog_cc_${ac_cc}_c_o=no 4529 fi 4530 rm -f core conftest* 4531 4532 fi 4533 if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then 4534 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 4535 $as_echo "yes" >&6; } 4536 else 4537 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 4538 $as_echo "no" >&6; } 4539 4540 $as_echo "#define NO_MINUS_C_MINUS_O 1" >>confdefs.h 4541 4542 fi 4543 4544 # FIXME: we rely on the cache variable name because 4545 # there is no other way. 4546 set dummy $CC 4547 am_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` 4548 eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o 4549 if test "$am_t" != yes; then 4550 # Losing compiler, so override with the script. 4551 # FIXME: It is wrong to rewrite CC. 4552 # But if we don't then we get into trouble of one sort or another. 4553 # A longer-term fix would be to have automake use am__CC in this case, 4554 # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" 4555 CC="$am_aux_dir/compile $CC" 4556 fi 4557 4558 # deprecated 4435 4559 4436 4560 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 … … 4463 4587 $as_echo "no" >&6; } 4464 4588 SET_MAKE="MAKE=${MAKE-make}" 4589 fi 4590 4591 if test -n "$ac_tool_prefix"; then 4592 # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. 4593 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 4594 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 4595 $as_echo_n "checking for $ac_word... " >&6; } 4596 if ${ac_cv_prog_RANLIB+:} false; then : 4597 $as_echo_n "(cached) " >&6 4598 else 4599 if test -n "$RANLIB"; then 4600 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 4601 else 4602 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 4603 for as_dir in $PATH 4604 do 4605 IFS=$as_save_IFS 4606 test -z "$as_dir" && as_dir=. 4607 for ac_exec_ext in '' $ac_executable_extensions; do 4608 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 4609 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 4610 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 4611 break 2 4612 fi 4613 done 4614 done 4615 IFS=$as_save_IFS 4616 4617 fi 4618 fi 4619 RANLIB=$ac_cv_prog_RANLIB 4620 if test -n "$RANLIB"; then 4621 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 4622 $as_echo "$RANLIB" >&6; } 4623 else 4624 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 4625 $as_echo "no" >&6; } 4626 fi 4627 4628 4629 fi 4630 if test -z "$ac_cv_prog_RANLIB"; then 4631 ac_ct_RANLIB=$RANLIB 4632 # Extract the first word of "ranlib", so it can be a program name with args. 4633 set dummy ranlib; ac_word=$2 4634 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 4635 $as_echo_n "checking for $ac_word... " >&6; } 4636 if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : 4637 $as_echo_n "(cached) " >&6 4638 else 4639 if test -n "$ac_ct_RANLIB"; then 4640 ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. 4641 else 4642 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 4643 for as_dir in $PATH 4644 do 4645 IFS=$as_save_IFS 4646 test -z "$as_dir" && as_dir=. 4647 for ac_exec_ext in '' $ac_executable_extensions; do 4648 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 4649 ac_cv_prog_ac_ct_RANLIB="ranlib" 4650 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 4651 break 2 4652 fi 4653 done 4654 done 4655 IFS=$as_save_IFS 4656 4657 fi 4658 fi 4659 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB 4660 if test -n "$ac_ct_RANLIB"; then 4661 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 4662 $as_echo "$ac_ct_RANLIB" >&6; } 4663 else 4664 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 4665 $as_echo "no" >&6; } 4666 fi 4667 4668 if test "x$ac_ct_RANLIB" = x; then 4669 RANLIB=":" 4670 else 4671 case $cross_compiling:$ac_tool_warned in 4672 yes:) 4673 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 4674 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} 4675 ac_tool_warned=yes ;; 4676 esac 4677 RANLIB=$ac_ct_RANLIB 4678 fi 4679 else 4680 RANLIB="$ac_cv_prog_RANLIB" 4465 4681 fi 4466 4682 … … 5361 5577 5362 5578 5363 ac_config_files="$ac_config_files Makefile src/Makefile driver/Makefile libcfa/Makefile src/examples/Makefile"5579 ac_config_files="$ac_config_files Makefile driver/Makefile src/Makefile src/examples/Makefile libcfa/Makefile" 5364 5580 5365 5581 … … 6104 6320 "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; 6105 6321 "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; 6322 "driver/Makefile") CONFIG_FILES="$CONFIG_FILES driver/Makefile" ;; 6106 6323 "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; 6107 " driver/Makefile") CONFIG_FILES="$CONFIG_FILES driver/Makefile" ;;6324 "src/examples/Makefile") CONFIG_FILES="$CONFIG_FILES src/examples/Makefile" ;; 6108 6325 "libcfa/Makefile") CONFIG_FILES="$CONFIG_FILES libcfa/Makefile" ;; 6109 "src/examples/Makefile") CONFIG_FILES="$CONFIG_FILES src/examples/Makefile" ;;6110 6326 6111 6327 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
Note: See TracChangeset
for help on using the changeset viewer.