Changes in configure [575a6e5:ad486c5b]
Legend:
- Unmodified
- Added
- Removed
-
configure
r575a6e5 rad486c5b 665 665 CXX 666 666 CFA_FLAGS 667 LIBCFA_TARGET_MAKEFILES 668 LIBCFA_TARGET_DIRS 669 TARGET_HOSTS 667 MACHINE_TYPE 670 668 host_os 671 669 host_vendor … … 677 675 build 678 676 BUILD_IN_TREE_FLAGS 677 BUILD_IN_TREE_FLAGS_NOLIB 679 678 CFACPP 680 679 CFACC … … 684 683 CFA_INCDIR 685 684 CFA_PREFIX 685 DOendif 686 DOifskipcompile 687 BUILD_CONCURRENCY_FALSE 688 BUILD_CONCURRENCY_TRUE 689 BUILD_NO_LIB_FALSE 690 BUILD_NO_LIB_TRUE 691 BUILD_DEBUG_FALSE 692 BUILD_DEBUG_TRUE 693 BUILD_RELEASE_FALSE 694 BUILD_RELEASE_TRUE 686 695 CFA_BACKEND_CC 687 696 BACKEND_CC 688 DOendif689 DOifskipcompile690 697 CFA_NAME 691 698 am__untar … … 761 768 with_cfa_name 762 769 with_backend_compiler 763 with_target_hosts 770 enable_target_release 771 enable_target_debug 772 enable_threading 764 773 enable_dependency_tracking 765 774 ' … … 1411 1420 --enable-silent-rules less verbose build output (undo: "make V=1") 1412 1421 --disable-silent-rules verbose build output (undo: "make V=0") 1422 --enable-target-release Build and install the release target 1423 --enable-target-debug Build and install the debug target 1424 --enable-threading Build and install libcfa with threading support 1425 (Enabled by default) 1413 1426 --enable-dependency-tracking 1414 1427 do not reject slow dependency extractors … … 1421 1434 --with-cfa-name=NAME NAME too which cfa will be installed 1422 1435 --with-backend-compiler=PROGRAM PROGRAM that performs the final code compilation (must be gcc-compatible) 1423 --with-target-hosts=HOSTS HOSTS comma seperated list of hosts to build for, format ARCH:debug|nodebug|nolib1424 1436 1425 1437 Some influential environment variables: … … 2488 2500 yes) AM_DEFAULT_VERBOSITY=0;; 2489 2501 no) AM_DEFAULT_VERBOSITY=1;; 2490 *) AM_DEFAULT_VERBOSITY= 0;;2502 *) AM_DEFAULT_VERBOSITY=1;; 2491 2503 esac 2492 2504 am_make=${MAKE-make} … … 2519 2531 AM_BACKSLASH='\' 2520 2532 2521 2522 2523 2524 2525 2526 2527 2528 2529 # don't use the default CFLAGS as they unconditonnaly add -O22530 : ${CFLAGS=""}2531 2533 2532 2534 am__api_version='1.15' … … 3075 3077 3076 3078 3077 #==============================================================================3078 3079 #Trasforming cc1 will break compilation 3079 3080 if test "${program_transform_name}" = ""; then 3081 as_fn_error $? "Program transform not supported. 3082 Use --with-cfa-name='[Desired name here]' instead" "$LINENO" 5 3083 fi 3084 3085 #Define the new name of the installed command 3080 if test "${program_transform_name}" = ""; then 3081 as_fn_error $? "Program transform not supported. 3082 Use --with-cfa-name='[Desired name here]' instead" "$LINENO" 5 3083 fi 3084 3086 3085 3087 3086 # Check whether --with-cfa-name was given. … … 3093 3092 3094 3093 3095 CFA_NAME=${cfa_name} 3096 3097 3098 3099 #============================================================================== 3100 # version information 3094 #Define the new name of the installed command 3095 CFA_NAME=${cfa_name} 3096 3101 3097 3102 3098 rm -f version … … 3150 3146 3151 3147 3152 #============================================================================== 3153 # HACK to be able to use conditionnals inside makefiles 3154 DOifskipcompile='ifeq ($(skipcompile),yes) 3155 else' 3156 3157 3158 3159 DOendif='endif' 3160 3161 3162 3163 #============================================================================== 3164 # backend compiler implementation 3148 # Installation paths 3149 3165 3150 3166 3151 # Check whether --with-backend-compiler was given. … … 3172 3157 3173 3158 if test "x$backendcompiler" != "x"; then 3174 BACKEND_CC=${backendcompiler}3175 else 3176 # Extract the first word of "gcc", so it can be a program name with args.3159 BACKEND_CC=${backendcompiler} 3160 else 3161 # Extract the first word of "gcc", so it can be a program name with args. 3177 3162 set dummy gcc; ac_word=$2 3178 3163 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 … … 3213 3198 fi 3214 3199 3215 # check gcc installed3216 if test "x$BACKEND_CC" = "x"; then3217 as_fn_error $? "some version of gcc is needed. Get it at ftp://ftp.gnu.org" "$LINENO" 53218 exit 13219 fi3200 # check gcc installed 3201 if test "x$BACKEND_CC" = "x"; then 3202 as_fn_error $? "some version of gcc is needed. Get it at ftp://ftp.gnu.org" "$LINENO" 5 3203 exit 1 3204 fi 3220 3205 fi 3221 3206 … … 3226 3211 3227 3212 3228 #============================================================================== 3229 # Installation paths 3230 3231 if test "x$prefix" = "xNONE"; then 3232 cfa_prefix=${ac_default_prefix} 3233 else 3234 cfa_prefix=${prefix} 3235 fi 3213 3214 3215 # Check whether --enable-target-release was given. 3216 if test "${enable_target_release+set}" = set; then : 3217 enableval=$enable_target_release; 3218 fi 3219 3220 # Check whether --enable-target-debug was given. 3221 if test "${enable_target_debug+set}" = set; then : 3222 enableval=$enable_target_debug; 3223 fi 3224 3225 # Check whether --enable-threading was given. 3226 if test "${enable_threading+set}" = set; then : 3227 enableval=$enable_threading; case "${enableval}" in 3228 yes) build_threading="yes" ;; 3229 no) build_threading="no" ;; 3230 *) as_fn_error $? "bad value ${enableval} for --enable-debug" "$LINENO" 5 ;; 3231 esac 3232 else 3233 build_threading="yes" 3234 fi 3235 3236 3237 case "$enable_target_release" in 3238 yes) 3239 case "$enable_target_debug" in 3240 yes) 3241 build_release="yes" 3242 build_debug="yes" 3243 ;; 3244 no) 3245 build_release="yes" 3246 build_debug="no" 3247 ;; 3248 *) 3249 build_release="yes" 3250 build_debug="no" 3251 ;; 3252 esac 3253 ;; 3254 no) 3255 case "$enable_target_debug" in 3256 yes) 3257 build_release="no" 3258 build_debug="yes" 3259 ;; 3260 no) 3261 build_release="no" 3262 build_debug="no" 3263 ;; 3264 *) 3265 build_release="no" 3266 build_debug="yes" 3267 ;; 3268 esac 3269 ;; 3270 *) 3271 case "$enable_target_debug" in 3272 yes) 3273 build_release="no" 3274 build_debug="yes" 3275 ;; 3276 no) 3277 build_release="yes" 3278 build_debug="no" 3279 ;; 3280 *) 3281 build_release="yes" 3282 build_debug="yes" 3283 ;; 3284 esac 3285 ;; 3286 esac 3287 3288 if test "x$build_release" = "xyes"; then 3289 BUILD_RELEASE_TRUE= 3290 BUILD_RELEASE_FALSE='#' 3291 else 3292 BUILD_RELEASE_TRUE='#' 3293 BUILD_RELEASE_FALSE= 3294 fi 3295 3296 if test "x$build_debug" = "xyes"; then 3297 BUILD_DEBUG_TRUE= 3298 BUILD_DEBUG_FALSE='#' 3299 else 3300 BUILD_DEBUG_TRUE='#' 3301 BUILD_DEBUG_FALSE= 3302 fi 3303 3304 if test "x$build_release$build_debug" = "xnono"; then 3305 BUILD_NO_LIB_TRUE= 3306 BUILD_NO_LIB_FALSE='#' 3307 else 3308 BUILD_NO_LIB_TRUE='#' 3309 BUILD_NO_LIB_FALSE= 3310 fi 3311 3312 if test "x$build_threading" = "xyes"; then 3313 BUILD_CONCURRENCY_TRUE= 3314 BUILD_CONCURRENCY_FALSE='#' 3315 else 3316 BUILD_CONCURRENCY_TRUE='#' 3317 BUILD_CONCURRENCY_FALSE= 3318 fi 3319 3320 3321 DOifskipcompile='ifeq ($(skipcompile),yes) 3322 else' 3323 3324 3325 3326 DOendif='endif' 3327 3328 3329 3330 if test "x$prefix" = "xNONE"; then 3331 cfa_prefix=${ac_default_prefix} 3332 else 3333 cfa_prefix=${prefix} 3334 fi 3236 3335 3237 3336 cat >>confdefs.h <<_ACEOF … … 3239 3338 _ACEOF 3240 3339 3241 CFA_PREFIX=${cfa_prefix}3242 3243 3244 if test "$includedir" = '${prefix}/include'; then3245 cfa_incdir="${cfa_prefix}/include/${cfa_name}"3246 else3247 cfa_incdir=${includedir}3248 fi3340 CFA_PREFIX=${cfa_prefix} 3341 3342 3343 if test "$includedir" = '${prefix}/include'; then 3344 cfa_incdir="${cfa_prefix}/include/${cfa_name}" 3345 else 3346 cfa_incdir=${includedir} 3347 fi 3249 3348 3250 3349 cat >>confdefs.h <<_ACEOF … … 3252 3351 _ACEOF 3253 3352 3254 CFA_INCDIR=${cfa_incdir}3255 3256 3257 if test "$bindir" = '${exec_prefix}/bin'; then3258 cfa_bindir="${cfa_prefix}/bin"3259 else3260 cfa_bindir=${bindir}3261 fi3353 CFA_INCDIR=${cfa_incdir} 3354 3355 3356 if test "$bindir" = '${exec_prefix}/bin'; then 3357 cfa_bindir="${cfa_prefix}/bin" 3358 else 3359 cfa_bindir=${bindir} 3360 fi 3262 3361 3263 3362 cat >>confdefs.h <<_ACEOF … … 3265 3364 _ACEOF 3266 3365 3267 CFA_BINDIR=${cfa_bindir} 3268 3269 3270 if test "$libdir" = '${exec_prefix}/lib'; then 3271 if test "${ARCHITECTURE}" != ""; then 3272 cfa_libdir="${cfa_prefix}/lib/${cfa_name}/${ARCHITECTURE}-${CONFIGURATION}/" 3273 else 3274 cfa_libdir="${cfa_prefix}/lib/${cfa_name}/" 3275 fi 3276 else 3277 cfa_libdir="${libdir}/${ARCHITECTURE}${CONFIGURATION}" 3278 fi 3366 CFA_BINDIR=${cfa_bindir} 3367 3368 3369 if test "$libdir" = '${exec_prefix}/lib'; then 3370 cfa_libdir="${cfa_prefix}/lib/${cfa_name}" 3371 else 3372 cfa_libdir=${libdir} 3373 fi 3279 3374 3280 3375 cat >>confdefs.h <<_ACEOF … … 3282 3377 _ACEOF 3283 3378 3284 CFA_LIBDIR=${cfa_libdir} 3285 3286 3287 3288 #============================================================================== 3379 CFA_LIBDIR=${cfa_libdir} 3380 3381 3289 3382 # Create variables for commonly used targets 3290 3291 TOP_SRCDIR=$ac_pwd/$ac_confdir/ 3292 TOP_BUILDDIR=$ac_pwd/ 3293 3294 3295 cat >>confdefs.h <<_ACEOF 3296 #define TOP_SRCDIR "$TOP_SRCDIR" 3297 _ACEOF 3298 3299 3300 cat >>confdefs.h <<_ACEOF 3301 #define TOP_BUILDDIR "$TOP_BUILDDIR" 3302 _ACEOF 3303 3304 3305 DRIVER_DIR=${TOP_BUILDDIR}driver/ 3306 CFACC=${DRIVER_DIR}cfa 3307 CFACPP=${DRIVER_DIR}cfa-cpp 3308 3309 3310 3311 3312 #============================================================================== 3383 DRIVER_DIR='$(top_builddir)/src/driver' 3384 CFACC=${DRIVER_DIR}/cfa 3385 CFACPP=${DRIVER_DIR}/cfa-cpp 3386 3387 3388 3389 3313 3390 # Flag variables needed to build in tree 3314 LIBCFA_SRC='${TOP_SRCDIR}/libcfa/src' 3315 BUILD_IN_TREE_FLAGS="-XCFA -t -B${DRIVER_DIR}" 3316 3317 3318 #============================================================================== 3319 # handle the list of hosts to build for 3320 for var in $ac_configure_args 3321 do 3322 #strip quotes surrouding values 3323 case $var in 3324 # skip cross compilation related arguments 3325 \'--host=*) ;; \'host_alias=*) ;; \'--build=*) ;; \'build_alias=*) ;; \'--target=*) ;; \'target_alias=*) ;; 3326 3327 # skip the target hosts 3328 \'--with-target-hosts=*) ;; 3329 3330 # append all other arguments to the sub configure arguments 3331 *) LIBCFA_GENERAL_ARGS="${LIBCFA_GENERAL_ARGS} $var";; 3332 esac 3333 done 3334 3335 #============================================================================== 3336 # handle the list of hosts to build for 3391 LIBCFA_SRC='$(top_srcdir)/src/libcfa' 3392 LIBCFA_BUILD='$(top_builddir)/src/libcfa' 3393 BUILD_IN_TREE_FLAGS_NOLIB="-XCFA -t -B${DRIVER_DIR}" 3394 BUILD_IN_TREE_FLAGS="${BUILD_IN_TREE_FLAGS_NOLIB} -L${LIBCFA_BUILD} -I${LIBCFA_SRC} -I${LIBCFA_SRC}/containers -I${LIBCFA_SRC}/concurrency -I${LIBCFA_SRC}/stdhdr" 3395 3396 3397 3337 3398 # Make sure we can run config.sub. 3338 3399 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || … … 3406 3467 3407 3468 3408 3409 default_target="${host_cpu}:debug, ${host_cpu}:nodebug" 3410 3411 # Check whether --with-target-hosts was given. 3412 if test "${with_target_hosts+set}" = set; then : 3413 withval=$with_target_hosts; target_hosts=$withval 3414 else 3415 target_hosts=${default_target} 3416 fi 3417 3418 3419 TARGET_HOSTS=${target_hosts} 3420 3421 3422 LIBCFA_PATHS="DRIVER_DIR=${DRIVER_DIR}" 3423 3424 for i in $(echo $target_hosts | sed "s/,/ /g") 3425 do 3426 # call your procedure/other scripts here below 3427 arch_name=$(echo $i | sed -r "s/:(.*)//g") 3428 lib_config=$(echo $i | sed -r "s/(.*)://g") 3429 3430 case $lib_config in 3431 "nodebug") ;; 3432 "debug") ;; 3433 "nolib") ;; 3434 *) 3435 >&2 echo "Configuration must be 'debug', 'nodebug' or 'nolib'" 3436 exit 1 3437 ;; 3469 MACHINE_TYPE=$host_cpu 3470 3471 3472 if ! test "$host_cpu" = "$build_cpu"; then 3473 case $host_cpu in 3474 i386) 3475 CFLAGS+=" -m32 " 3476 CXXFLAGS+=" -m32 " 3477 CFAFLAGS+=" -m32 " 3478 LDFLAGS+=" -m32 " 3479 ;; 3480 i686) 3481 CFLAGS+=" -m32 " 3482 CXXFLAGS+=" -m32 " 3483 CFAFLAGS+=" -m32 " 3484 LDFLAGS+=" -m32 " 3485 ;; 3486 x86_64) 3487 CFLAGS+=" -m64 " 3488 CXXFLAGS+=" -m64 " 3489 CFAFLAGS+=" -m64 " 3490 LDFLAGS+=" -m64 " 3491 ;; 3438 3492 esac 3439 3440 3441 case $arch_name in 3442 "x64" ) cannon_arch_name="x64";; 3443 "x86-64" ) cannon_arch_name="x64";; 3444 "x86_64" ) cannon_arch_name="x64";; 3445 "x86" ) cannon_arch_name="x86";; 3446 "i386" ) cannon_arch_name="x86";; 3447 "i486" ) cannon_arch_name="x86";; 3448 "i686" ) cannon_arch_name="x86";; 3449 "Intel 80386") cannon_arch_name="x86";; 3450 "arm" ) cannon_arch_name="arm";; 3451 "ARM" ) cannon_arch_name="arm";; 3452 *) 3453 >&2 echo "Unkown architecture " $arch_name; 3454 exit 1 3455 ;; 3456 esac 3457 3458 lib_arch=${cannon_arch_name} 3459 lib_dir="libcfa/${lib_arch}-${lib_config}" 3460 3461 LIBCFA_TARGET_DIRS="${LIBCFA_TARGET_DIRS} ${lib_dir}" 3462 LIBCFA_TARGET_MAKEFILES="${LIBCFA_TARGET_MAKEFILES} ${lib_dir}/Makefile" 3463 3464 mkdir -p ${lib_dir} 3465 echo -n "${LIBCFA_GENERAL_ARGS} " > ${lib_dir}/config.data 3466 echo -n "${LIBCFA_PATHS} " >> ${lib_dir}/config.data 3467 echo -n "ARCHITECTURE=${lib_arch} " >> ${lib_dir}/config.data 3468 echo -n "CONFIGURATION=${lib_config}" >> ${lib_dir}/config.data 3469 done 3470 3471 3472 3473 3474 3475 case $arch_name in 3476 "x64" ) cannon_arch_name="x64";; 3477 "x86-64" ) cannon_arch_name="x64";; 3478 "x86_64" ) cannon_arch_name="x64";; 3479 "x86" ) cannon_arch_name="x86";; 3480 "i386" ) cannon_arch_name="x86";; 3481 "i486" ) cannon_arch_name="x86";; 3482 "i686" ) cannon_arch_name="x86";; 3483 "Intel 80386") cannon_arch_name="x86";; 3484 "arm" ) cannon_arch_name="arm";; 3485 "ARM" ) cannon_arch_name="arm";; 3486 *) 3487 >&2 echo "Unkown architecture " $arch_name; 3488 exit 1 3489 ;; 3490 esac 3491 3492 3493 cat >>confdefs.h <<_ACEOF 3494 #define CFA_DEFAULT_CPU "$cannon_arch_name" 3495 _ACEOF 3496 3497 3498 cat >>confdefs.h <<_ACEOF 3499 #define CFA_64_CPU "x64" 3500 _ACEOF 3501 3502 3503 cat >>confdefs.h <<_ACEOF 3504 #define CFA_32_CPU "x86" 3505 _ACEOF 3506 3507 3508 #============================================================================== 3509 # CAFLAGS 3493 fi 3494 3510 3495 3511 3496 cat >>confdefs.h <<_ACEOF … … 3516 3501 3517 3502 3518 #==============================================================================3519 3503 # Checks for programs. 3520 3504 ac_ext=cpp … … 6299 6283 6300 6284 6301 #============================================================================== 6302 ac_config_files="$ac_config_files Makefile driver/Makefile src/Makefile benchmark/Makefile tests/Makefile tests/preempt_longrun/Makefile tools/Makefile tools/prettyprinter/Makefile" 6303 6304 6305 ac_config_links="$ac_config_links tests/test.py:tests/test.py" 6306 6307 6308 ac_config_files="$ac_config_files tests/config.py" 6285 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" 6286 6287 6288 ac_config_links="$ac_config_links src/tests/test.py:src/tests/test.py" 6289 6290 6291 ac_config_files="$ac_config_files src/tests/config.py" 6309 6292 6310 6293 cat >confcache <<\_ACEOF … … 6433 6416 fi 6434 6417 6418 if test -z "${BUILD_RELEASE_TRUE}" && test -z "${BUILD_RELEASE_FALSE}"; then 6419 as_fn_error $? "conditional \"BUILD_RELEASE\" was never defined. 6420 Usually this means the macro was only invoked conditionally." "$LINENO" 5 6421 fi 6422 if test -z "${BUILD_DEBUG_TRUE}" && test -z "${BUILD_DEBUG_FALSE}"; then 6423 as_fn_error $? "conditional \"BUILD_DEBUG\" was never defined. 6424 Usually this means the macro was only invoked conditionally." "$LINENO" 5 6425 fi 6426 if test -z "${BUILD_NO_LIB_TRUE}" && test -z "${BUILD_NO_LIB_FALSE}"; then 6427 as_fn_error $? "conditional \"BUILD_NO_LIB\" was never defined. 6428 Usually this means the macro was only invoked conditionally." "$LINENO" 5 6429 fi 6430 if test -z "${BUILD_CONCURRENCY_TRUE}" && test -z "${BUILD_CONCURRENCY_FALSE}"; then 6431 as_fn_error $? "conditional \"BUILD_CONCURRENCY\" was never defined. 6432 Usually this means the macro was only invoked conditionally." "$LINENO" 5 6433 fi 6435 6434 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then 6436 6435 as_fn_error $? "conditional \"AMDEP\" was never defined. … … 7048 7047 "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; 7049 7048 "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; 7050 " driver/Makefile") CONFIG_FILES="$CONFIG_FILESdriver/Makefile" ;;7049 "src/driver/Makefile") CONFIG_FILES="$CONFIG_FILES src/driver/Makefile" ;; 7051 7050 "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; 7052 "benchmark/Makefile") CONFIG_FILES="$CONFIG_FILES benchmark/Makefile" ;; 7053 "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;; 7054 "tests/preempt_longrun/Makefile") CONFIG_FILES="$CONFIG_FILES tests/preempt_longrun/Makefile" ;; 7051 "src/benchmark/Makefile") CONFIG_FILES="$CONFIG_FILES src/benchmark/Makefile" ;; 7052 "src/examples/Makefile") CONFIG_FILES="$CONFIG_FILES src/examples/Makefile" ;; 7053 "src/tests/Makefile") CONFIG_FILES="$CONFIG_FILES src/tests/Makefile" ;; 7054 "src/tests/preempt_longrun/Makefile") CONFIG_FILES="$CONFIG_FILES src/tests/preempt_longrun/Makefile" ;; 7055 "src/prelude/Makefile") CONFIG_FILES="$CONFIG_FILES src/prelude/Makefile" ;; 7056 "src/libcfa/Makefile") CONFIG_FILES="$CONFIG_FILES src/libcfa/Makefile" ;; 7055 7057 "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; 7056 7058 "tools/prettyprinter/Makefile") CONFIG_FILES="$CONFIG_FILES tools/prettyprinter/Makefile" ;; 7057 " tests/test.py") CONFIG_LINKS="$CONFIG_LINKS tests/test.py:tests/test.py" ;;7058 " tests/config.py") CONFIG_FILES="$CONFIG_FILEStests/config.py" ;;7059 "src/tests/test.py") CONFIG_LINKS="$CONFIG_LINKS src/tests/test.py:src/tests/test.py" ;; 7060 "src/tests/config.py") CONFIG_FILES="$CONFIG_FILES src/tests/config.py" ;; 7059 7061 7060 7062 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; … … 7816 7818 7817 7819 7820 if test -z "$BUILD_RELEASE_TRUE"; then : 7821 if test -z "$BUILD_DEBUG_TRUE"; then : 7822 { $as_echo "$as_me:${as_lineno-$LINENO}: Building libcfa for target: release & debug" >&5 7823 $as_echo "$as_me: Building libcfa for target: release & debug" >&6;} 7824 else 7825 { $as_echo "$as_me:${as_lineno-$LINENO}: Building libcfa for target: release" >&5 7826 $as_echo "$as_me: Building libcfa for target: release" >&6;} 7827 fi 7828 else 7829 if test -z "$BUILD_DEBUG_TRUE"; then : 7830 { $as_echo "$as_me:${as_lineno-$LINENO}: Building libcfa for target: debug" >&5 7831 $as_echo "$as_me: Building libcfa for target: debug" >&6;} 7832 else 7833 { $as_echo "$as_me:${as_lineno-$LINENO}: Running cfa without libcfa" >&5 7834 $as_echo "$as_me: Running cfa without libcfa" >&6;} 7835 fi 7836 fi 7837 7818 7838 # Final text 7819 7839 { $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.