- Timestamp:
- Aug 27, 2018, 4:40:34 PM (8 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum, stuck-waitfor-destruct
- Children:
- b7c89aa
- Parents:
- f9feab8 (diff), 305581d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
rf9feab8 r90152a4 665 665 CXX 666 666 CFA_FLAGS 667 MACHINE_TYPE 667 LIBCFA_TARGET_MAKEFILES 668 LIBCFA_TARGET_DIRS 669 TARGET_HOSTS 670 HOST_FLAGS 668 671 host_os 669 672 host_vendor … … 674 677 build_cpu 675 678 build 679 BUILD_IN_TREE_FLAGS 680 CFACPP 681 CFACC 682 DRIVER_DIR 676 683 CFA_LIBDIR 677 684 CFA_BINDIR 678 685 CFA_INCDIR 679 686 CFA_PREFIX 680 BUILD_CONCURRENCY_FALSE681 BUILD_CONCURRENCY_TRUE682 BUILD_NO_LIB_FALSE683 BUILD_NO_LIB_TRUE684 BUILD_DEBUG_FALSE685 BUILD_DEBUG_TRUE686 BUILD_RELEASE_FALSE687 BUILD_RELEASE_TRUE688 687 CFA_BACKEND_CC 689 688 BACKEND_CC 689 DOendif 690 DOifskipcompile 690 691 CFA_NAME 691 MAINT692 MAINTAINER_MODE_FALSE693 MAINTAINER_MODE_TRUE694 692 am__untar 695 693 am__tar … … 762 760 enable_option_checking 763 761 enable_silent_rules 764 enable_maintainer_mode765 762 with_cfa_name 766 763 with_backend_compiler 767 enable_target_release 768 enable_target_debug 769 enable_threading 764 with_target_hosts 770 765 enable_dependency_tracking 771 766 ' … … 1417 1412 --enable-silent-rules less verbose build output (undo: "make V=1") 1418 1413 --disable-silent-rules verbose build output (undo: "make V=0") 1419 --disable-maintainer-mode1420 disable make rules and dependencies not useful (and1421 sometimes confusing) to the casual installer1422 --enable-target-release Build and install the release target1423 --enable-target-debug Build and install the debug target1424 --enable-threading Build and install libcfa with threading support1425 (Enabled by default)1426 1414 --enable-dependency-tracking 1427 1415 do not reject slow dependency extractors … … 1434 1422 --with-cfa-name=NAME NAME too which cfa will be installed 1435 1423 --with-backend-compiler=PROGRAM PROGRAM that performs the final code compilation (must be gcc-compatible) 1424 --with-target-hosts=HOSTS HOSTS comma seperated list of hosts to build for, format ARCH:debug|nodebug|nolib 1436 1425 1437 1426 Some influential environment variables: … … 2490 2479 2491 2480 #AC_CONFIG_SRCDIR([src/main.cc]) 2492 ac_config_headers="$ac_config_headers config.h "2481 ac_config_headers="$ac_config_headers config.h:src/config.h.in" 2493 2482 2494 2483 # Check whether --enable-silent-rules was given. … … 2500 2489 yes) AM_DEFAULT_VERBOSITY=0;; 2501 2490 no) AM_DEFAULT_VERBOSITY=1;; 2502 *) AM_DEFAULT_VERBOSITY= 1;;2491 *) AM_DEFAULT_VERBOSITY=0;; 2503 2492 esac 2504 2493 am_make=${MAKE-make} … … 2531 2520 AM_BACKSLASH='\' 2532 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 # don't use the default CFLAGS as they unconditonnaly add -O2 2532 : ${CFLAGS=""} 2533 2533 2534 2534 am__api_version='1.15' … … 3073 3073 3074 3074 3075 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&53076 $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }3077 # Check whether --enable-maintainer-mode was given.3078 if test "${enable_maintainer_mode+set}" = set; then :3079 enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval3080 else3081 USE_MAINTAINER_MODE=yes3082 fi3083 3084 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&53085 $as_echo "$USE_MAINTAINER_MODE" >&6; }3086 if test $USE_MAINTAINER_MODE = yes; then3087 MAINTAINER_MODE_TRUE=3088 MAINTAINER_MODE_FALSE='#'3089 else3090 MAINTAINER_MODE_TRUE='#'3091 MAINTAINER_MODE_FALSE=3092 fi3093 3094 MAINT=$MAINTAINER_MODE_TRUE3095 3096 # may require auto* software to be installed3097 3098 3075 # Allow program name tansformation 3099 3076 # will fill program_transform_name with appropriate sed regex 3100 3077 3101 3078 3079 #============================================================================== 3102 3080 #Trasforming cc1 will break compilation 3103 if test "${program_transform_name}" = ""; then 3104 as_fn_error $? "Program transform not supported. 3105 Use --with-cfa-name='[Desired name here]' instead" "$LINENO" 5 3106 fi 3107 3081 3082 if test "${program_transform_name}" = ""; then 3083 as_fn_error $? "Program transform not supported. 3084 Use --with-cfa-name='[Desired name here]' instead" "$LINENO" 5 3085 fi 3086 3087 #Define the new name of the installed command 3108 3088 3109 3089 # Check whether --with-cfa-name was given. … … 3115 3095 3116 3096 3117 #Define the new name of the installed command 3118 CFA_NAME=${cfa_name} 3119 3097 CFA_NAME=${cfa_name} 3098 3099 3100 3101 #============================================================================== 3102 # version information 3120 3103 3121 3104 rm -f version … … 3169 3152 3170 3153 3171 # Installation paths 3172 3154 #============================================================================== 3155 # HACK to be able to use conditionnals inside makefiles 3156 DOifskipcompile='ifeq ($(skipcompile),yes) 3157 else' 3158 3159 3160 3161 DOendif='endif' 3162 3163 3164 3165 #============================================================================== 3166 # backend compiler implementation 3173 3167 3174 3168 # Check whether --with-backend-compiler was given. … … 3180 3174 3181 3175 if test "x$backendcompiler" != "x"; then 3182 BACKEND_CC=${backendcompiler}3183 else 3184 # Extract the first word of "gcc", so it can be a program name with args.3176 BACKEND_CC=${backendcompiler} 3177 else 3178 # Extract the first word of "gcc", so it can be a program name with args. 3185 3179 set dummy gcc; ac_word=$2 3186 3180 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 … … 3221 3215 fi 3222 3216 3223 # check gcc installed3224 if test "x$BACKEND_CC" = "x"; then3225 as_fn_error $? "some version of gcc is needed. Get it at ftp://ftp.gnu.org" "$LINENO" 53226 exit 13227 fi3217 # check gcc installed 3218 if test "x$BACKEND_CC" = "x"; then 3219 as_fn_error $? "some version of gcc is needed. Get it at ftp://ftp.gnu.org" "$LINENO" 5 3220 exit 1 3221 fi 3228 3222 fi 3229 3223 … … 3234 3228 3235 3229 3236 3237 3238 # Check whether --enable-target-release was given. 3239 if test "${enable_target_release+set}" = set; then : 3240 enableval=$enable_target_release; 3241 fi 3242 3243 # Check whether --enable-target-debug was given. 3244 if test "${enable_target_debug+set}" = set; then : 3245 enableval=$enable_target_debug; 3246 fi 3247 3248 # Check whether --enable-threading was given. 3249 if test "${enable_threading+set}" = set; then : 3250 enableval=$enable_threading; case "${enableval}" in 3251 yes) build_threading="yes" ;; 3252 no) build_threading="no" ;; 3253 *) as_fn_error $? "bad value ${enableval} for --enable-debug" "$LINENO" 5 ;; 3254 esac 3255 else 3256 build_threading="yes" 3257 fi 3258 3259 3260 case "$enable_target_release" in 3261 yes) 3262 case "$enable_target_debug" in 3263 yes) 3264 build_release="yes" 3265 build_debug="yes" 3266 ;; 3267 no) 3268 build_release="yes" 3269 build_debug="no" 3270 ;; 3271 *) 3272 build_release="yes" 3273 build_debug="no" 3274 ;; 3275 esac 3276 ;; 3277 no) 3278 case "$enable_target_debug" in 3279 yes) 3280 build_release="no" 3281 build_debug="yes" 3282 ;; 3283 no) 3284 build_release="no" 3285 build_debug="no" 3286 ;; 3287 *) 3288 build_release="no" 3289 build_debug="yes" 3290 ;; 3291 esac 3292 ;; 3293 *) 3294 case "$enable_target_debug" in 3295 yes) 3296 build_release="no" 3297 build_debug="yes" 3298 ;; 3299 no) 3300 build_release="yes" 3301 build_debug="no" 3302 ;; 3303 *) 3304 build_release="yes" 3305 build_debug="yes" 3306 ;; 3307 esac 3308 ;; 3309 esac 3310 3311 if test "x$build_release" = "xyes"; then 3312 BUILD_RELEASE_TRUE= 3313 BUILD_RELEASE_FALSE='#' 3314 else 3315 BUILD_RELEASE_TRUE='#' 3316 BUILD_RELEASE_FALSE= 3317 fi 3318 3319 if test "x$build_debug" = "xyes"; then 3320 BUILD_DEBUG_TRUE= 3321 BUILD_DEBUG_FALSE='#' 3322 else 3323 BUILD_DEBUG_TRUE='#' 3324 BUILD_DEBUG_FALSE= 3325 fi 3326 3327 if test "x$build_release$build_debug" = "xnono"; then 3328 BUILD_NO_LIB_TRUE= 3329 BUILD_NO_LIB_FALSE='#' 3330 else 3331 BUILD_NO_LIB_TRUE='#' 3332 BUILD_NO_LIB_FALSE= 3333 fi 3334 3335 if test "x$build_threading" = "xyes"; then 3336 BUILD_CONCURRENCY_TRUE= 3337 BUILD_CONCURRENCY_FALSE='#' 3338 else 3339 BUILD_CONCURRENCY_TRUE='#' 3340 BUILD_CONCURRENCY_FALSE= 3341 fi 3342 3343 3344 if test "x$prefix" = "xNONE"; then 3345 cfa_prefix=${ac_default_prefix} 3346 else 3347 cfa_prefix=${prefix} 3348 fi 3230 #============================================================================== 3231 # Installation paths 3232 3233 if test "x$prefix" = "xNONE"; then 3234 cfa_prefix=${ac_default_prefix} 3235 else 3236 cfa_prefix=${prefix} 3237 fi 3238 cfa_prefix="$(readlink -m ${cfa_prefix})/" 3349 3239 3350 3240 cat >>confdefs.h <<_ACEOF … … 3352 3242 _ACEOF 3353 3243 3354 CFA_PREFIX=${cfa_prefix} 3355 3356 3357 if test "$includedir" = '${prefix}/include'; then 3358 cfa_incdir="${cfa_prefix}/include/${cfa_name}" 3359 else 3360 cfa_incdir=${includedir} 3361 fi 3244 CFA_PREFIX=${cfa_prefix} 3245 3246 3247 if test "$includedir" = '${prefix}/include'; then 3248 cfa_incdir="${cfa_prefix}include/${cfa_name}" 3249 else 3250 cfa_incdir=${includedir} 3251 fi 3252 cfa_incdir="$(readlink -m ${cfa_incdir})/" 3362 3253 3363 3254 cat >>confdefs.h <<_ACEOF … … 3365 3256 _ACEOF 3366 3257 3367 CFA_INCDIR=${cfa_incdir} 3368 3369 3370 if test "$bindir" = '${exec_prefix}/bin'; then 3371 cfa_bindir="${cfa_prefix}/bin" 3372 else 3373 cfa_bindir=${bindir} 3374 fi 3258 CFA_INCDIR=${cfa_incdir} 3259 3260 3261 if test "$bindir" = '${exec_prefix}/bin'; then 3262 cfa_bindir="${cfa_prefix}bin" 3263 else 3264 cfa_bindir=${bindir} 3265 fi 3266 cfa_bindir="$(readlink -m ${cfa_bindir})/" 3375 3267 3376 3268 cat >>confdefs.h <<_ACEOF … … 3378 3270 _ACEOF 3379 3271 3380 CFA_BINDIR=${cfa_bindir} 3381 3382 3383 if test "$libdir" = '${exec_prefix}/lib'; then 3384 cfa_libdir="${cfa_prefix}/lib/${cfa_name}" 3385 else 3386 cfa_libdir=${libdir} 3387 fi 3272 CFA_BINDIR=${cfa_bindir} 3273 3274 3275 if test "$libdir" = '${exec_prefix}/lib'; then 3276 if test "${ARCHITECTURE}" != ""; then 3277 cfa_libdir="${cfa_prefix}lib/${cfa_name}/${ARCHITECTURE}-${CONFIGURATION}/" 3278 else 3279 cfa_libdir="${cfa_prefix}lib/${cfa_name}/" 3280 fi 3281 else 3282 cfa_libdir="${libdir}/${ARCHITECTURE}${CONFIGURATION}" 3283 fi 3284 cfa_libdir="$(readlink -m ${cfa_libdir})/" 3388 3285 3389 3286 cat >>confdefs.h <<_ACEOF … … 3391 3288 _ACEOF 3392 3289 3393 CFA_LIBDIR=${cfa_libdir} 3394 3395 3290 CFA_LIBDIR=${cfa_libdir} 3291 3292 3293 3294 #============================================================================== 3295 # Create variables for commonly used targets 3296 3297 TOP_SRCDIR="$(readlink -m $ac_confdir/)/" 3298 TOP_BUILDDIR="$(readlink -m $ac_pwd/)/" 3299 3300 3301 cat >>confdefs.h <<_ACEOF 3302 #define TOP_SRCDIR "$TOP_SRCDIR" 3303 _ACEOF 3304 3305 3306 cat >>confdefs.h <<_ACEOF 3307 #define TOP_BUILDDIR "$TOP_BUILDDIR" 3308 _ACEOF 3309 3310 3311 DRIVER_DIR=${TOP_BUILDDIR}driver/ 3312 CFACC=${DRIVER_DIR}cfa 3313 CFACPP=${DRIVER_DIR}cfa-cpp 3314 3315 3316 3317 3318 #============================================================================== 3319 # Flag variables needed to build in tree 3320 LIBCFA_SRC='${TOP_SRCDIR}/libcfa/src' 3321 BUILD_IN_TREE_FLAGS="-XCFA -t -B${DRIVER_DIR}" 3322 3323 3324 #============================================================================== 3325 # handle the list of hosts to build for 3326 for var in $ac_configure_args 3327 do 3328 #strip quotes surrouding values 3329 case $var in 3330 # skip cross compilation related arguments 3331 \'--host=*) ;; \'host_alias=*) ;; \'--build=*) ;; \'build_alias=*) ;; \'--target=*) ;; \'target_alias=*) ;; 3332 3333 # skip the target hosts 3334 \'--with-target-hosts=*) ;; 3335 3336 # append all other arguments to the sub configure arguments 3337 *) LIBCFA_GENERAL_ARGS="${LIBCFA_GENERAL_ARGS} $var";; 3338 esac 3339 done 3340 3341 #============================================================================== 3342 # handle the list of hosts to build for 3396 3343 # Make sure we can run config.sub. 3397 3344 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || … … 3465 3412 3466 3413 3467 MACHINE_TYPE=$host_cpu3468 3469 3414 3470 3415 if ! test "$host_cpu" = "$build_cpu"; then 3471 3416 case $host_cpu in 3472 3417 i386) 3473 CFLAGS+=" -m32 " 3474 CXXFLAGS+=" -m32 " 3475 CFAFLAGS+=" -m32 " 3476 LDFLAGS+=" -m32 " 3418 HOST_FLAGS="-m32" 3477 3419 ;; 3478 3420 i686) 3479 CFLAGS+=" -m32 " 3480 CXXFLAGS+=" -m32 " 3481 CFAFLAGS+=" -m32 " 3482 LDFLAGS+=" -m32 " 3421 HOST_FLAGS="-m32" 3483 3422 ;; 3484 3423 x86_64) 3485 CFLAGS+=" -m64 " 3486 CXXFLAGS+=" -m64 " 3487 CFAFLAGS+=" -m64 " 3488 LDFLAGS+=" -m64 " 3424 HOST_FLAGS="-m64" 3489 3425 ;; 3490 3426 esac … … 3492 3428 3493 3429 3430 default_target="${host_cpu}:debug, ${host_cpu}:nodebug" 3431 3432 # Check whether --with-target-hosts was given. 3433 if test "${with_target_hosts+set}" = set; then : 3434 withval=$with_target_hosts; target_hosts=$withval 3435 else 3436 target_hosts=${default_target} 3437 fi 3438 3439 3440 TARGET_HOSTS=${target_hosts} 3441 3442 3443 LIBCFA_PATHS="DRIVER_DIR=${DRIVER_DIR}" 3444 3445 for i in $(echo $target_hosts | sed "s/,/ /g") 3446 do 3447 # call your procedure/other scripts here below 3448 arch_name=$(echo $i | sed -r "s/:(.*)//g") 3449 lib_config=$(echo $i | sed -r "s/(.*)://g") 3450 3451 case $lib_config in 3452 "nodebug") ;; 3453 "debug") ;; 3454 "nolib") ;; 3455 *) 3456 >&2 echo "Configuration must be 'debug', 'nodebug' or 'nolib'" 3457 exit 1 3458 ;; 3459 esac 3460 3461 3462 case ${arch_name} in 3463 "host") arch_name=${host_cpu};; 3464 *) arch_name=${arch_name};; 3465 esac 3466 3467 case $arch_name in 3468 "x64" ) cannon_arch_name="x64";; 3469 "x86-64" ) cannon_arch_name="x64";; 3470 "x86_64" ) cannon_arch_name="x64";; 3471 "x86" ) cannon_arch_name="x86";; 3472 "i386" ) cannon_arch_name="x86";; 3473 "i486" ) cannon_arch_name="x86";; 3474 "i686" ) cannon_arch_name="x86";; 3475 "Intel 80386") cannon_arch_name="x86";; 3476 "arm" ) cannon_arch_name="arm";; 3477 "ARM" ) cannon_arch_name="arm";; 3478 *) 3479 >&2 echo "Unkown architecture " $arch_name; 3480 exit 1 3481 ;; 3482 esac 3483 3484 lib_arch=${cannon_arch_name} 3485 lib_dir="libcfa/${lib_arch}-${lib_config}" 3486 3487 LIBCFA_TARGET_DIRS="${LIBCFA_TARGET_DIRS} ${lib_dir}" 3488 LIBCFA_TARGET_MAKEFILES="${LIBCFA_TARGET_MAKEFILES} ${lib_dir}/Makefile" 3489 3490 mkdir -p ${lib_dir} 3491 echo -n "${LIBCFA_GENERAL_ARGS} " > ${lib_dir}/config.data 3492 echo -n "${LIBCFA_PATHS} " >> ${lib_dir}/config.data 3493 echo -n "ARCHITECTURE=${lib_arch} " >> ${lib_dir}/config.data 3494 echo -n "CONFIGURATION=${lib_config}" >> ${lib_dir}/config.data 3495 done 3496 3497 3498 3499 3500 3501 case ${host_cpu} in 3502 "host") arch_name=${host_cpu};; 3503 *) arch_name=${host_cpu};; 3504 esac 3505 3506 case $arch_name in 3507 "x64" ) cannon_arch_name="x64";; 3508 "x86-64" ) cannon_arch_name="x64";; 3509 "x86_64" ) cannon_arch_name="x64";; 3510 "x86" ) cannon_arch_name="x86";; 3511 "i386" ) cannon_arch_name="x86";; 3512 "i486" ) cannon_arch_name="x86";; 3513 "i686" ) cannon_arch_name="x86";; 3514 "Intel 80386") cannon_arch_name="x86";; 3515 "arm" ) cannon_arch_name="arm";; 3516 "ARM" ) cannon_arch_name="arm";; 3517 *) 3518 >&2 echo "Unkown architecture " $arch_name; 3519 exit 1 3520 ;; 3521 esac 3522 3523 3524 cat >>confdefs.h <<_ACEOF 3525 #define CFA_DEFAULT_CPU "$cannon_arch_name" 3526 _ACEOF 3527 3528 3529 cat >>confdefs.h <<_ACEOF 3530 #define CFA_64_CPU "x64" 3531 _ACEOF 3532 3533 3534 cat >>confdefs.h <<_ACEOF 3535 #define CFA_32_CPU "x86" 3536 _ACEOF 3537 3538 3539 #============================================================================== 3540 # CAFLAGS 3541 3494 3542 cat >>confdefs.h <<_ACEOF 3495 3543 #define CFA_FLAGS "${CFAFLAGS}" … … 3499 3547 3500 3548 3549 #============================================================================== 3501 3550 # Checks for programs. 3502 3551 ac_ext=cpp … … 6281 6330 6282 6331 6283 ac_config_files="$ac_config_files Makefile src/driver/Makefile src/Makefile src/benchmark/Makefile src/examples/Makefile src/tests/Makefile src/tests/preempt_longrun/Makefile src/prelude/Makefile src/libcfa/Makefile tools/Makefile tools/prettyprinter/Makefile" 6284 6332 #============================================================================== 6333 ac_config_files="$ac_config_files Makefile driver/Makefile src/Makefile benchmark/Makefile tests/Makefile tests/preempt_longrun/Makefile tools/Makefile tools/prettyprinter/Makefile" 6334 6335 6336 ac_config_links="$ac_config_links tests/test.py:tests/test.py" 6337 6338 6339 ac_config_files="$ac_config_files tests/config.py" 6285 6340 6286 6341 cat >confcache <<\_ACEOF … … 6409 6464 fi 6410 6465 6411 if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then6412 as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined.6413 Usually this means the macro was only invoked conditionally." "$LINENO" 56414 fi6415 if test -z "${BUILD_RELEASE_TRUE}" && test -z "${BUILD_RELEASE_FALSE}"; then6416 as_fn_error $? "conditional \"BUILD_RELEASE\" was never defined.6417 Usually this means the macro was only invoked conditionally." "$LINENO" 56418 fi6419 if test -z "${BUILD_DEBUG_TRUE}" && test -z "${BUILD_DEBUG_FALSE}"; then6420 as_fn_error $? "conditional \"BUILD_DEBUG\" was never defined.6421 Usually this means the macro was only invoked conditionally." "$LINENO" 56422 fi6423 if test -z "${BUILD_NO_LIB_TRUE}" && test -z "${BUILD_NO_LIB_FALSE}"; then6424 as_fn_error $? "conditional \"BUILD_NO_LIB\" was never defined.6425 Usually this means the macro was only invoked conditionally." "$LINENO" 56426 fi6427 if test -z "${BUILD_CONCURRENCY_TRUE}" && test -z "${BUILD_CONCURRENCY_FALSE}"; then6428 as_fn_error $? "conditional \"BUILD_CONCURRENCY\" was never defined.6429 Usually this means the macro was only invoked conditionally." "$LINENO" 56430 fi6431 6466 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then 6432 6467 as_fn_error $? "conditional \"AMDEP\" was never defined. … … 6869 6904 config_files="$ac_config_files" 6870 6905 config_headers="$ac_config_headers" 6906 config_links="$ac_config_links" 6871 6907 config_commands="$ac_config_commands" 6872 6908 … … 6898 6934 Configuration headers: 6899 6935 $config_headers 6936 6937 Configuration links: 6938 $config_links 6900 6939 6901 6940 Configuration commands: … … 7037 7076 do 7038 7077 case $ac_config_target in 7039 "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h " ;;7078 "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:src/config.h.in" ;; 7040 7079 "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; 7041 7080 "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; 7042 " src/driver/Makefile") CONFIG_FILES="$CONFIG_FILES src/driver/Makefile" ;;7081 "driver/Makefile") CONFIG_FILES="$CONFIG_FILES driver/Makefile" ;; 7043 7082 "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; 7044 "src/benchmark/Makefile") CONFIG_FILES="$CONFIG_FILES src/benchmark/Makefile" ;; 7045 "src/examples/Makefile") CONFIG_FILES="$CONFIG_FILES src/examples/Makefile" ;; 7046 "src/tests/Makefile") CONFIG_FILES="$CONFIG_FILES src/tests/Makefile" ;; 7047 "src/tests/preempt_longrun/Makefile") CONFIG_FILES="$CONFIG_FILES src/tests/preempt_longrun/Makefile" ;; 7048 "src/prelude/Makefile") CONFIG_FILES="$CONFIG_FILES src/prelude/Makefile" ;; 7049 "src/libcfa/Makefile") CONFIG_FILES="$CONFIG_FILES src/libcfa/Makefile" ;; 7083 "benchmark/Makefile") CONFIG_FILES="$CONFIG_FILES benchmark/Makefile" ;; 7084 "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;; 7085 "tests/preempt_longrun/Makefile") CONFIG_FILES="$CONFIG_FILES tests/preempt_longrun/Makefile" ;; 7050 7086 "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; 7051 7087 "tools/prettyprinter/Makefile") CONFIG_FILES="$CONFIG_FILES tools/prettyprinter/Makefile" ;; 7088 "tests/test.py") CONFIG_LINKS="$CONFIG_LINKS tests/test.py:tests/test.py" ;; 7089 "tests/config.py") CONFIG_FILES="$CONFIG_FILES tests/config.py" ;; 7052 7090 7053 7091 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; … … 7063 7101 test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files 7064 7102 test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers 7103 test "${CONFIG_LINKS+set}" = set || CONFIG_LINKS=$config_links 7065 7104 test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands 7066 7105 fi … … 7360 7399 7361 7400 7362 eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS"7401 eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :L $CONFIG_LINKS :C $CONFIG_COMMANDS" 7363 7402 shift 7364 7403 for ac_tag … … 7637 7676 s/.*/./; q'`/stamp-h$_am_stamp_count 7638 7677 ;; 7639 7678 :L) 7679 # 7680 # CONFIG_LINK 7681 # 7682 7683 if test "$ac_source" = "$ac_file" && test "$srcdir" = '.'; then 7684 : 7685 else 7686 # Prefer the file from the source tree if names are identical. 7687 if test "$ac_source" = "$ac_file" || test ! -r "$ac_source"; then 7688 ac_source=$srcdir/$ac_source 7689 fi 7690 7691 { $as_echo "$as_me:${as_lineno-$LINENO}: linking $ac_source to $ac_file" >&5 7692 $as_echo "$as_me: linking $ac_source to $ac_file" >&6;} 7693 7694 if test ! -r "$ac_source"; then 7695 as_fn_error $? "$ac_source: file not found" "$LINENO" 5 7696 fi 7697 rm -f "$ac_file" 7698 7699 # Try a relative symlink, then a hard link, then a copy. 7700 case $ac_source in 7701 [\\/$]* | ?:[\\/]* ) ac_rel_source=$ac_source ;; 7702 *) ac_rel_source=$ac_top_build_prefix$ac_source ;; 7703 esac 7704 ln -s "$ac_rel_source" "$ac_file" 2>/dev/null || 7705 ln "$ac_source" "$ac_file" 2>/dev/null || 7706 cp -p "$ac_source" "$ac_file" || 7707 as_fn_error $? "cannot link or copy $ac_source to $ac_file" "$LINENO" 5 7708 fi 7709 ;; 7640 7710 :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 7641 7711 $as_echo "$as_me: executing $ac_file commands" >&6;} … … 7777 7847 7778 7848 7779 if test -z "$BUILD_RELEASE_TRUE"; then :7780 if test -z "$BUILD_DEBUG_TRUE"; then :7781 { $as_echo "$as_me:${as_lineno-$LINENO}: Building libcfa for target: release & debug" >&57782 $as_echo "$as_me: Building libcfa for target: release & debug" >&6;}7783 else7784 { $as_echo "$as_me:${as_lineno-$LINENO}: Building libcfa for target: release" >&57785 $as_echo "$as_me: Building libcfa for target: release" >&6;}7786 fi7787 else7788 if test -z "$BUILD_DEBUG_TRUE"; then :7789 { $as_echo "$as_me:${as_lineno-$LINENO}: Building libcfa for target: debug" >&57790 $as_echo "$as_me: Building libcfa for target: debug" >&6;}7791 else7792 { $as_echo "$as_me:${as_lineno-$LINENO}: Running cfa without libcfa" >&57793 $as_echo "$as_me: Running cfa without libcfa" >&6;}7794 fi7795 fi7796 7797 7849 # Final text 7798 7850 { $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.