Changes in configure [375a068:65c61ec]
Legend:
- Unmodified
- Added
- Removed
-
configure
r375a068 r65c61ec 616 616 YFLAGS 617 617 YACC 618 am__fastdepCCAS_FALSE619 am__fastdepCCAS_TRUE620 CCASDEPMODE621 CCASFLAGS622 CCAS623 618 am__fastdepCC_FALSE 624 619 am__fastdepCC_TRUE … … 644 639 CXXFLAGS 645 640 CXX 646 MACHINE_TYPE647 host_os648 host_vendor649 host_cpu650 host651 build_os652 build_vendor653 build_cpu654 build655 641 CFA_FLAGS 656 642 CFA_LIBDIR … … 658 644 CFA_INCDIR 659 645 CFA_PREFIX 660 BUILD_NO_LIB_FALSE661 BUILD_NO_LIB_TRUE662 BUILD_DEBUG_FALSE663 BUILD_DEBUG_TRUE664 BUILD_RELEASE_FALSE665 BUILD_RELEASE_TRUE666 646 CFA_BACKEND_CC 667 647 BACKEND_CC … … 740 720 enable_maintainer_mode 741 721 with_backend_compiler 742 enable_target_release743 enable_target_debug744 722 enable_dependency_tracking 745 723 ' … … 755 733 CC 756 734 CFLAGS 757 CCAS758 CCASFLAGS759 735 YACC 760 736 YFLAGS … … 1363 1339 --program-suffix=SUFFIX append SUFFIX to installed program names 1364 1340 --program-transform-name=PROGRAM run sed PROGRAM on installed program names 1365 1366 System types:1367 --build=BUILD configure for building on BUILD [guessed]1368 --host=HOST cross-compile to build programs to run on HOST [BUILD]1369 1341 _ACEOF 1370 1342 fi … … 1384 1356 --disable-maintainer-mode disable make rules and dependencies not useful 1385 1357 (and sometimes confusing) to the casual installer 1386 --enable-target-release Build and install the release target1387 --enable-target-debug Build and install the debug target1388 1358 --disable-dependency-tracking speeds up one-time build 1389 1359 --enable-dependency-tracking do not reject slow dependency extractors … … 1404 1374 CC C compiler command 1405 1375 CFLAGS C compiler flags 1406 CCAS assembler compiler command (defaults to CC)1407 CCASFLAGS assembler compiler flags (defaults to CFLAGS)1408 1376 YACC The `Yet Another Compiler Compiler' implementation to use. 1409 1377 Defaults to the first program found out of: `bison -y', `byacc', … … 3111 3079 3112 3080 3113 3114 3115 # Check whether --enable-target-release was given.3116 if test "${enable_target_release+set}" = set; then :3117 enableval=$enable_target_release;3118 fi3119 3120 # Check whether --enable-target-debug was given.3121 if test "${enable_target_debug+set}" = set; then :3122 enableval=$enable_target_debug;3123 fi3124 3125 3126 case "$enable_target_release" in3127 yes)3128 case "$enable_target_debug" in3129 yes)3130 build_release="yes"3131 build_debug="yes"3132 ;;3133 no)3134 build_release="yes"3135 build_debug="no"3136 ;;3137 *)3138 build_release="yes"3139 build_debug="no"3140 ;;3141 esac3142 ;;3143 no)3144 case "$enable_target_debug" in3145 yes)3146 build_release="no"3147 build_debug="yes"3148 ;;3149 no)3150 build_release="no"3151 build_debug="no"3152 ;;3153 *)3154 build_release="no"3155 build_debug="yes"3156 ;;3157 esac3158 ;;3159 *)3160 case "$enable_target_debug" in3161 yes)3162 build_release="no"3163 build_debug="yes"3164 ;;3165 no)3166 build_release="yes"3167 build_debug="no"3168 ;;3169 *)3170 build_release="yes"3171 build_debug="yes"3172 ;;3173 esac3174 ;;3175 esac3176 3177 if test "x$build_release" = "xyes"; then3178 BUILD_RELEASE_TRUE=3179 BUILD_RELEASE_FALSE='#'3180 else3181 BUILD_RELEASE_TRUE='#'3182 BUILD_RELEASE_FALSE=3183 fi3184 3185 if test "x$build_debug" = "xyes"; then3186 BUILD_DEBUG_TRUE=3187 BUILD_DEBUG_FALSE='#'3188 else3189 BUILD_DEBUG_TRUE='#'3190 BUILD_DEBUG_FALSE=3191 fi3192 3193 if test "x$build_release$build_debug" = "xnono"; then3194 BUILD_NO_LIB_TRUE=3195 BUILD_NO_LIB_FALSE='#'3196 else3197 BUILD_NO_LIB_TRUE='#'3198 BUILD_NO_LIB_FALSE=3199 fi3200 3201 3202 3081 if test "x$prefix" = "xNONE"; then 3203 3082 cfa_prefix=${ac_default_prefix} … … 3258 3137 3259 3138 CFA_FLAGS=${CFAFLAGS} 3260 3261 3262 # Make sure we can run config.sub.3263 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||3264 as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 53265 3266 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&53267 $as_echo_n "checking build system type... " >&6; }3268 if ${ac_cv_build+:} false; then :3269 $as_echo_n "(cached) " >&63270 else3271 ac_build_alias=$build_alias3272 test "x$ac_build_alias" = x &&3273 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`3274 test "x$ac_build_alias" = x &&3275 as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 53276 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||3277 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 53278 3279 fi3280 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&53281 $as_echo "$ac_cv_build" >&6; }3282 case $ac_cv_build in3283 *-*-*) ;;3284 *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;3285 esac3286 build=$ac_cv_build3287 ac_save_IFS=$IFS; IFS='-'3288 set x $ac_cv_build3289 shift3290 build_cpu=$13291 build_vendor=$23292 shift; shift3293 # Remember, the first character of IFS is used to create $*,3294 # except with old shells:3295 build_os=$*3296 IFS=$ac_save_IFS3297 case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac3298 3299 3300 { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&53301 $as_echo_n "checking host system type... " >&6; }3302 if ${ac_cv_host+:} false; then :3303 $as_echo_n "(cached) " >&63304 else3305 if test "x$host_alias" = x; then3306 ac_cv_host=$ac_cv_build3307 else3308 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||3309 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 53310 fi3311 3312 fi3313 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&53314 $as_echo "$ac_cv_host" >&6; }3315 case $ac_cv_host in3316 *-*-*) ;;3317 *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;3318 esac3319 host=$ac_cv_host3320 ac_save_IFS=$IFS; IFS='-'3321 set x $ac_cv_host3322 shift3323 host_cpu=$13324 host_vendor=$23325 shift; shift3326 # Remember, the first character of IFS is used to create $*,3327 # except with old shells:3328 host_os=$*3329 IFS=$ac_save_IFS3330 case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac3331 3332 3333 MACHINE_TYPE=$host_cpu3334 3139 3335 3140 … … 4698 4503 am__fastdepCC_TRUE='#' 4699 4504 am__fastdepCC_FALSE= 4700 fi4701 4702 4703 # By default we simply use the C compiler to build assembly code.4704 4705 test "${CCAS+set}" = set || CCAS=$CC4706 test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS4707 4708 4709 4710 depcc="$CCAS" am_compiler_list=4711 4712 { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&54713 $as_echo_n "checking dependency style of $depcc... " >&6; }4714 if ${am_cv_CCAS_dependencies_compiler_type+:} false; then :4715 $as_echo_n "(cached) " >&64716 else4717 if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then4718 # We make a subdir and do the tests there. Otherwise we can end up4719 # making bogus files that we don't know about and never remove. For4720 # instance it was reported that on HP-UX the gcc test will end up4721 # making a dummy file named `D' -- because `-MD' means `put the output4722 # in D'.4723 rm -rf conftest.dir4724 mkdir conftest.dir4725 # Copy depcomp to subdir because otherwise we won't find it if we're4726 # using a relative directory.4727 cp "$am_depcomp" conftest.dir4728 cd conftest.dir4729 # We will build objects and dependencies in a subdirectory because4730 # it helps to detect inapplicable dependency modes. For instance4731 # both Tru64's cc and ICC support -MD to output dependencies as a4732 # side effect of compilation, but ICC will put the dependencies in4733 # the current directory while Tru64 will put them in the object4734 # directory.4735 mkdir sub4736 4737 am_cv_CCAS_dependencies_compiler_type=none4738 if test "$am_compiler_list" = ""; then4739 am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`4740 fi4741 am__universal=false4742 4743 4744 for depmode in $am_compiler_list; do4745 # Setup a source with many dependencies, because some compilers4746 # like to wrap large dependency lists on column 80 (with \), and4747 # we should not choose a depcomp mode which is confused by this.4748 #4749 # We need to recreate these files for each test, as the compiler may4750 # overwrite some of them when testing with obscure command lines.4751 # This happens at least with the AIX C compiler.4752 : > sub/conftest.c4753 for i in 1 2 3 4 5 6; do4754 echo '#include "conftst'$i'.h"' >> sub/conftest.c4755 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with4756 # Solaris 8's {/usr,}/bin/sh.4757 touch sub/conftst$i.h4758 done4759 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf4760 4761 # We check with `-c' and `-o' for the sake of the "dashmstdout"4762 # mode. It turns out that the SunPro C++ compiler does not properly4763 # handle `-M -o', and we need to detect this. Also, some Intel4764 # versions had trouble with output in subdirs4765 am__obj=sub/conftest.${OBJEXT-o}4766 am__minus_obj="-o $am__obj"4767 case $depmode in4768 gcc)4769 # This depmode causes a compiler race in universal mode.4770 test "$am__universal" = false || continue4771 ;;4772 nosideeffect)4773 # after this tag, mechanisms are not by side-effect, so they'll4774 # only be used when explicitly requested4775 if test "x$enable_dependency_tracking" = xyes; then4776 continue4777 else4778 break4779 fi4780 ;;4781 msvc7 | msvc7msys | msvisualcpp | msvcmsys)4782 # This compiler won't grok `-c -o', but also, the minuso test has4783 # not run yet. These depmodes are late enough in the game, and4784 # so weak that their functioning should not be impacted.4785 am__obj=conftest.${OBJEXT-o}4786 am__minus_obj=4787 ;;4788 none) break ;;4789 esac4790 if depmode=$depmode \4791 source=sub/conftest.c object=$am__obj \4792 depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \4793 $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \4794 >/dev/null 2>conftest.err &&4795 grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&4796 grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&4797 grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&4798 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then4799 # icc doesn't choke on unknown options, it will just issue warnings4800 # or remarks (even with -Werror). So we grep stderr for any message4801 # that says an option was ignored or not supported.4802 # When given -MP, icc 7.0 and 7.1 complain thusly:4803 # icc: Command line warning: ignoring option '-M'; no argument required4804 # The diagnosis changed in icc 8.0:4805 # icc: Command line remark: option '-MP' not supported4806 if (grep 'ignoring option' conftest.err ||4807 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else4808 am_cv_CCAS_dependencies_compiler_type=$depmode4809 break4810 fi4811 fi4812 done4813 4814 cd ..4815 rm -rf conftest.dir4816 else4817 am_cv_CCAS_dependencies_compiler_type=none4818 fi4819 4820 fi4821 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CCAS_dependencies_compiler_type" >&54822 $as_echo "$am_cv_CCAS_dependencies_compiler_type" >&6; }4823 CCASDEPMODE=depmode=$am_cv_CCAS_dependencies_compiler_type4824 4825 if4826 test "x$enable_dependency_tracking" != xno \4827 && test "$am_cv_CCAS_dependencies_compiler_type" = gcc3; then4828 am__fastdepCCAS_TRUE=4829 am__fastdepCCAS_FALSE='#'4830 else4831 am__fastdepCCAS_TRUE='#'4832 am__fastdepCCAS_FALSE=4833 4505 fi 4834 4506 … … 6184 5856 6185 5857 6186 ac_config_files="$ac_config_files Makefile src/driver/Makefile src/Makefile src/examples/Makefile src/tests/Makefile src/ prelude/Makefile src/libcfa/Makefile"5858 ac_config_files="$ac_config_files Makefile src/driver/Makefile src/Makefile src/examples/Makefile src/tests/Makefile src/libcfa/Makefile" 6187 5859 6188 5860 … … 6308 5980 Usually this means the macro was only invoked conditionally." "$LINENO" 5 6309 5981 fi 6310 if test -z "${BUILD_RELEASE_TRUE}" && test -z "${BUILD_RELEASE_FALSE}"; then6311 as_fn_error $? "conditional \"BUILD_RELEASE\" was never defined.6312 Usually this means the macro was only invoked conditionally." "$LINENO" 56313 fi6314 if test -z "${BUILD_DEBUG_TRUE}" && test -z "${BUILD_DEBUG_FALSE}"; then6315 as_fn_error $? "conditional \"BUILD_DEBUG\" was never defined.6316 Usually this means the macro was only invoked conditionally." "$LINENO" 56317 fi6318 if test -z "${BUILD_NO_LIB_TRUE}" && test -z "${BUILD_NO_LIB_FALSE}"; then6319 as_fn_error $? "conditional \"BUILD_NO_LIB\" was never defined.6320 Usually this means the macro was only invoked conditionally." "$LINENO" 56321 fi6322 5982 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then 6323 5983 as_fn_error $? "conditional \"AMDEP\" was never defined. … … 6330 5990 if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then 6331 5991 as_fn_error $? "conditional \"am__fastdepCC\" was never defined. 6332 Usually this means the macro was only invoked conditionally." "$LINENO" 56333 fi6334 if test -z "${am__fastdepCCAS_TRUE}" && test -z "${am__fastdepCCAS_FALSE}"; then6335 as_fn_error $? "conditional \"am__fastdepCCAS\" was never defined.6336 5992 Usually this means the macro was only invoked conditionally." "$LINENO" 5 6337 5993 fi … … 6947 6603 "src/examples/Makefile") CONFIG_FILES="$CONFIG_FILES src/examples/Makefile" ;; 6948 6604 "src/tests/Makefile") CONFIG_FILES="$CONFIG_FILES src/tests/Makefile" ;; 6949 "src/prelude/Makefile") CONFIG_FILES="$CONFIG_FILES src/prelude/Makefile" ;;6950 6605 "src/libcfa/Makefile") CONFIG_FILES="$CONFIG_FILES src/libcfa/Makefile" ;; 6951 6606 … … 7678 7333 7679 7334 7680 if test -z "$BUILD_RELEASE_TRUE"; then :7681 if test -z "$BUILD_DEBUG_TRUE"; then :7682 { $as_echo "$as_me:${as_lineno-$LINENO}: Building libcfa for target: release & debug" >&57683 $as_echo "$as_me: Building libcfa for target: release & debug" >&6;}7684 else7685 { $as_echo "$as_me:${as_lineno-$LINENO}: Building libcfa for target: release" >&57686 $as_echo "$as_me: Building libcfa for target: release" >&6;}7687 fi7688 else7689 if test -z "$BUILD_DEBUG_TRUE"; then :7690 { $as_echo "$as_me:${as_lineno-$LINENO}: Building libcfa for target: debug" >&57691 $as_echo "$as_me: Building libcfa for target: debug" >&6;}7692 else7693 { $as_echo "$as_me:${as_lineno-$LINENO}: Running cfa without libcfa" >&57694 $as_echo "$as_me: Running cfa without libcfa" >&6;}7695 fi7696 fi7697 7698 7335 # Final text 7699 7336 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Cforall configuraton completed. Type \"make -j 8 install\"." >&5
Note:
See TracChangeset
for help on using the changeset viewer.