Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r8e485801 rad486c5b  
    665665CXX
    666666CFA_FLAGS
    667 LIBCFA_TARGET_MAKEFILES
    668 LIBCFA_TARGET_DIRS
    669 TARGET_HOSTS
    670 HOST_FLAGS
     667MACHINE_TYPE
    671668host_os
    672669host_vendor
     
    678675build
    679676BUILD_IN_TREE_FLAGS
     677BUILD_IN_TREE_FLAGS_NOLIB
    680678CFACPP
    681679CFACC
     
    685683CFA_INCDIR
    686684CFA_PREFIX
     685DOendif
     686DOifskipcompile
     687BUILD_CONCURRENCY_FALSE
     688BUILD_CONCURRENCY_TRUE
     689BUILD_NO_LIB_FALSE
     690BUILD_NO_LIB_TRUE
     691BUILD_DEBUG_FALSE
     692BUILD_DEBUG_TRUE
     693BUILD_RELEASE_FALSE
     694BUILD_RELEASE_TRUE
    687695CFA_BACKEND_CC
    688696BACKEND_CC
    689 DOendif
    690 DOifskipcompile
    691697CFA_NAME
    692698am__untar
     
    762768with_cfa_name
    763769with_backend_compiler
    764 with_target_hosts
     770enable_target_release
     771enable_target_debug
     772enable_threading
    765773enable_dependency_tracking
    766774'
     
    14121420  --enable-silent-rules   less verbose build output (undo: "make V=1")
    14131421  --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)
    14141426  --enable-dependency-tracking
    14151427                          do not reject slow dependency extractors
     
    14221434  --with-cfa-name=NAME     NAME too which cfa will be installed
    14231435  --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
    14251436
    14261437Some influential environment variables:
     
    24892500  yes) AM_DEFAULT_VERBOSITY=0;;
    24902501   no) AM_DEFAULT_VERBOSITY=1;;
    2491     *) AM_DEFAULT_VERBOSITY=0;;
     2502    *) AM_DEFAULT_VERBOSITY=1;;
    24922503esac
    24932504am_make=${MAKE-make}
     
    25202531AM_BACKSLASH='\'
    25212532
    2522 
    2523 
    2524 
    2525 
    2526 
    2527 
    2528 
    2529 
    2530 # don't use the default CFLAGS as they unconditonnaly add -O2
    2531 : ${CFLAGS=""}
    25322533
    25332534am__api_version='1.15'
     
    30763077
    30773078
    3078 #==============================================================================
    30793079#Trasforming cc1 will break compilation
    3080 
    3081         if test "${program_transform_name}" = ""; then
    3082         as_fn_error $? "Program transform not supported.
    3083                         Use --with-cfa-name='[Desired name here]' instead" "$LINENO" 5
    3084         fi
    3085 
    3086         #Define the new name of the installed command
     3080if test "${program_transform_name}" = ""; then
     3081    as_fn_error $? "Program transform not supported.
     3082                Use --with-cfa-name='[Desired name here]' instead" "$LINENO" 5
     3083fi
     3084
    30873085
    30883086# Check whether --with-cfa-name was given.
     
    30943092
    30953093
    3096         CFA_NAME=${cfa_name}
    3097 
    3098 
    3099 
    3100 #==============================================================================
    3101 # version information
     3094#Define the new name of the installed command
     3095CFA_NAME=${cfa_name}
     3096
    31023097
    31033098rm -f version
     
    31513146
    31523147
    3153 #==============================================================================
    3154 # HACK to be able to use conditionnals inside makefiles
    3155 DOifskipcompile='ifeq ($(skipcompile),yes)
    3156 else'
    3157 
    3158 
    3159 
    3160 DOendif='endif'
    3161 
    3162 
    3163 
    3164 #==============================================================================
    3165 # backend compiler implementation
     3148# Installation paths
     3149
    31663150
    31673151# Check whether --with-backend-compiler was given.
     
    31733157
    31743158if test "x$backendcompiler" != "x"; then
    3175        BACKEND_CC=${backendcompiler}
    3176 else
    3177        # Extract the first word of "gcc", so it can be a program name with args.
     3159        BACKEND_CC=${backendcompiler}
     3160else
     3161        # Extract the first word of "gcc", so it can be a program name with args.
    31783162set dummy gcc; ac_word=$2
    31793163{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
     
    32143198fi
    32153199
    3216        # check gcc installed
    3217        if test "x$BACKEND_CC" = "x"; then
    3218                as_fn_error $? "some version of gcc is needed. Get it at ftp://ftp.gnu.org" "$LINENO" 5
    3219                exit 1
    3220        fi
     3200        # 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
    32213205fi
    32223206
     
    32273211
    32283212
    3229 #==============================================================================
    3230 # Installation paths
    3231 
    3232         if test "x$prefix" = "xNONE"; then
    3233                 cfa_prefix=${ac_default_prefix}
    3234         else
    3235                 cfa_prefix=${prefix}
    3236         fi
    3237         cfa_prefix="$(readlink -m ${cfa_prefix})/"
     3213
     3214
     3215# Check whether --enable-target-release was given.
     3216if test "${enable_target_release+set}" = set; then :
     3217  enableval=$enable_target_release;
     3218fi
     3219
     3220# Check whether --enable-target-debug was given.
     3221if test "${enable_target_debug+set}" = set; then :
     3222  enableval=$enable_target_debug;
     3223fi
     3224
     3225# Check whether --enable-threading was given.
     3226if 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 ;;
     3231esac
     3232else
     3233  build_threading="yes"
     3234fi
     3235
     3236
     3237case "$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                ;;
     3286esac
     3287
     3288 if test "x$build_release" = "xyes"; then
     3289  BUILD_RELEASE_TRUE=
     3290  BUILD_RELEASE_FALSE='#'
     3291else
     3292  BUILD_RELEASE_TRUE='#'
     3293  BUILD_RELEASE_FALSE=
     3294fi
     3295
     3296 if test "x$build_debug" = "xyes"; then
     3297  BUILD_DEBUG_TRUE=
     3298  BUILD_DEBUG_FALSE='#'
     3299else
     3300  BUILD_DEBUG_TRUE='#'
     3301  BUILD_DEBUG_FALSE=
     3302fi
     3303
     3304 if test "x$build_release$build_debug" = "xnono"; then
     3305  BUILD_NO_LIB_TRUE=
     3306  BUILD_NO_LIB_FALSE='#'
     3307else
     3308  BUILD_NO_LIB_TRUE='#'
     3309  BUILD_NO_LIB_FALSE=
     3310fi
     3311
     3312 if test "x$build_threading" = "xyes"; then
     3313  BUILD_CONCURRENCY_TRUE=
     3314  BUILD_CONCURRENCY_FALSE='#'
     3315else
     3316  BUILD_CONCURRENCY_TRUE='#'
     3317  BUILD_CONCURRENCY_FALSE=
     3318fi
     3319
     3320
     3321DOifskipcompile='ifeq ($(skipcompile),yes)
     3322else'
     3323
     3324
     3325
     3326DOendif='endif'
     3327
     3328
     3329
     3330if test "x$prefix" = "xNONE"; then
     3331        cfa_prefix=${ac_default_prefix}
     3332else
     3333        cfa_prefix=${prefix}
     3334fi
    32383335
    32393336cat >>confdefs.h <<_ACEOF
     
    32413338_ACEOF
    32423339
    3243         CFA_PREFIX=${cfa_prefix}
    3244 
    3245 
    3246         if test "$includedir" = '${prefix}/include'; then
    3247                 cfa_incdir="${cfa_prefix}include/${cfa_name}"
    3248         else
    3249                 cfa_incdir=${includedir}
    3250         fi
    3251         cfa_incdir="$(readlink -m ${cfa_incdir})/"
     3340CFA_PREFIX=${cfa_prefix}
     3341
     3342
     3343if test "$includedir" = '${prefix}/include'; then
     3344        cfa_incdir="${cfa_prefix}/include/${cfa_name}"
     3345else
     3346        cfa_incdir=${includedir}
     3347fi
    32523348
    32533349cat >>confdefs.h <<_ACEOF
     
    32553351_ACEOF
    32563352
    3257         CFA_INCDIR=${cfa_incdir}
    3258 
    3259 
    3260         if test "$bindir" = '${exec_prefix}/bin'; then
    3261                 cfa_bindir="${cfa_prefix}bin"
    3262         else
    3263                 cfa_bindir=${bindir}
    3264         fi
    3265         cfa_bindir="$(readlink -m ${cfa_bindir})/"
     3353CFA_INCDIR=${cfa_incdir}
     3354
     3355
     3356if test "$bindir" = '${exec_prefix}/bin'; then
     3357        cfa_bindir="${cfa_prefix}/bin"
     3358else
     3359        cfa_bindir=${bindir}
     3360fi
    32663361
    32673362cat >>confdefs.h <<_ACEOF
     
    32693364_ACEOF
    32703365
    3271         CFA_BINDIR=${cfa_bindir}
    3272 
    3273 
    3274         if test "$libdir" = '${exec_prefix}/lib'; then
    3275                 if test "${ARCHITECTURE}" != ""; then
    3276                         cfa_libdir="${cfa_prefix}lib/${cfa_name}/${ARCHITECTURE}-${CONFIGURATION}/"
    3277                 else
    3278                         cfa_libdir="${cfa_prefix}lib/${cfa_name}/"
    3279                 fi
    3280         else
    3281                 cfa_libdir="${libdir}/${ARCHITECTURE}${CONFIGURATION}"
    3282         fi
    3283         cfa_libdir="$(readlink -m ${cfa_libdir})/"
     3366CFA_BINDIR=${cfa_bindir}
     3367
     3368
     3369if test "$libdir" = '${exec_prefix}/lib'; then
     3370        cfa_libdir="${cfa_prefix}/lib/${cfa_name}"
     3371else
     3372        cfa_libdir=${libdir}
     3373fi
    32843374
    32853375cat >>confdefs.h <<_ACEOF
     
    32873377_ACEOF
    32883378
    3289         CFA_LIBDIR=${cfa_libdir}
    3290 
    3291 
    3292 
    3293 #==============================================================================
     3379CFA_LIBDIR=${cfa_libdir}
     3380
     3381
    32943382# Create variables for commonly used targets
    3295 
    3296 TOP_SRCDIR="$(readlink -m $ac_confdir/)/"
    3297 TOP_BUILDDIR="$(readlink -m $ac_pwd/)/"
    3298 
    3299 
    3300 cat >>confdefs.h <<_ACEOF
    3301 #define TOP_SRCDIR "$TOP_SRCDIR"
    3302 _ACEOF
    3303 
    3304 
    3305 cat >>confdefs.h <<_ACEOF
    3306 #define TOP_BUILDDIR "$TOP_BUILDDIR"
    3307 _ACEOF
    3308 
    3309 
    3310 DRIVER_DIR=${TOP_BUILDDIR}driver/
    3311 CFACC=${DRIVER_DIR}cfa
    3312 CFACPP=${DRIVER_DIR}cfa-cpp
    3313 
    3314 
    3315 
    3316 
    3317 #==============================================================================
     3383DRIVER_DIR='$(top_builddir)/src/driver'
     3384CFACC=${DRIVER_DIR}/cfa
     3385CFACPP=${DRIVER_DIR}/cfa-cpp
     3386
     3387
     3388
     3389
    33183390# Flag variables needed to build in tree
    3319 LIBCFA_SRC='${TOP_SRCDIR}/libcfa/src'
    3320 BUILD_IN_TREE_FLAGS="-XCFA -t -B${DRIVER_DIR}"
    3321 
    3322 
    3323 #==============================================================================
    3324 # handle the list of hosts to build for
    3325 for var in $ac_configure_args
    3326 do
    3327         #strip quotes surrouding values
    3328         case $var in
    3329                 # skip cross compilation related arguments
    3330                 \'--host=*) ;; \'host_alias=*) ;; \'--build=*) ;; \'build_alias=*) ;; \'--target=*) ;; \'target_alias=*) ;;
    3331 
    3332                 # skip the target hosts
    3333                 \'--with-target-hosts=*) ;;
    3334 
    3335                 # append all other arguments to the sub configure arguments
    3336                 *) LIBCFA_GENERAL_ARGS="${LIBCFA_GENERAL_ARGS} $var";;
    3337         esac
    3338 done
    3339 
    3340 #==============================================================================
    3341 # handle the list of hosts to build for
     3391LIBCFA_SRC='$(top_srcdir)/src/libcfa'
     3392LIBCFA_BUILD='$(top_builddir)/src/libcfa'
     3393BUILD_IN_TREE_FLAGS_NOLIB="-XCFA -t -B${DRIVER_DIR}"
     3394BUILD_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
    33423398# Make sure we can run config.sub.
    33433399$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
     
    34113467
    34123468
     3469MACHINE_TYPE=$host_cpu
     3470
    34133471
    34143472if ! test "$host_cpu" = "$build_cpu"; then
    34153473        case $host_cpu in
    34163474                i386)
    3417                         HOST_FLAGS="-m32"
     3475                        CFLAGS+=" -m32 "
     3476                        CXXFLAGS+=" -m32 "
     3477                        CFAFLAGS+=" -m32 "
     3478                        LDFLAGS+=" -m32 "
    34183479                        ;;
    34193480                i686)
    3420                         HOST_FLAGS="-m32"
     3481                        CFLAGS+=" -m32 "
     3482                  CXXFLAGS+=" -m32 "
     3483                  CFAFLAGS+=" -m32 "
     3484                  LDFLAGS+=" -m32 "
    34213485                        ;;
    34223486                x86_64)
    3423                         HOST_FLAGS="-m64"
     3487                        CFLAGS+=" -m64 "
     3488                        CXXFLAGS+=" -m64 "
     3489                        CFAFLAGS+=" -m64 "
     3490                        LDFLAGS+=" -m64 "
    34243491                        ;;
    34253492        esac
     
    34273494
    34283495
    3429 default_target="${host_cpu}:debug, ${host_cpu}:nodebug"
    3430 
    3431 # Check whether --with-target-hosts was given.
    3432 if test "${with_target_hosts+set}" = set; then :
    3433   withval=$with_target_hosts; target_hosts=$withval
    3434 else
    3435   target_hosts=${default_target}
    3436 fi
    3437 
    3438 
    3439 TARGET_HOSTS=${target_hosts}
    3440 
    3441 
    3442 LIBCFA_PATHS="DRIVER_DIR=${DRIVER_DIR}"
    3443 
    3444 for i in $(echo $target_hosts | sed "s/,/ /g")
    3445 do
    3446         # call your procedure/other scripts here below
    3447         arch_name=$(echo $i | sed -r "s/:(.*)//g")
    3448         lib_config=$(echo $i | sed -r "s/(.*)://g")
    3449 
    3450         case $lib_config in
    3451                 "nodebug") ;;
    3452                 "debug") ;;
    3453                 "nolib") ;;
    3454                 *)
    3455                         >&2 echo "Configuration must be 'debug', 'nodebug' or 'nolib'"
    3456                         exit 1
    3457                 ;;
    3458         esac
    3459 
    3460 
    3461         case $arch_name in
    3462                 "host") arch_name=${host_cpu};;
    3463                 *) ;;
    3464         esac
    3465 
    3466         case $arch_name in
    3467                 "x64"        ) cannon_arch_name="x64";;
    3468                 "x86-64"     ) cannon_arch_name="x64";;
    3469                 "x86_64"     ) cannon_arch_name="x64";;
    3470                 "x86"        ) cannon_arch_name="x86";;
    3471                 "i386"       ) cannon_arch_name="x86";;
    3472                 "i486"       ) cannon_arch_name="x86";;
    3473                 "i686"       ) cannon_arch_name="x86";;
    3474                 "Intel 80386") cannon_arch_name="x86";;
    3475                 "arm"        ) cannon_arch_name="arm";;
    3476                 "ARM"        ) cannon_arch_name="arm";;
    3477                 *)
    3478                 >&2 echo "Unkown architecture " $arch_name;
    3479                 exit 1
    3480                 ;;
    3481         esac
    3482 
    3483         lib_arch=${cannon_arch_name}
    3484         lib_dir="libcfa/${lib_arch}-${lib_config}"
    3485 
    3486         LIBCFA_TARGET_DIRS="${LIBCFA_TARGET_DIRS} ${lib_dir}"
    3487         LIBCFA_TARGET_MAKEFILES="${LIBCFA_TARGET_MAKEFILES} ${lib_dir}/Makefile"
    3488 
    3489         mkdir -p ${lib_dir}
    3490         echo -n "${LIBCFA_GENERAL_ARGS} " > ${lib_dir}/config.data
    3491         echo -n "${LIBCFA_PATHS} " >> ${lib_dir}/config.data
    3492         echo -n "ARCHITECTURE=${lib_arch} " >> ${lib_dir}/config.data
    3493         echo -n "CONFIGURATION=${lib_config}" >> ${lib_dir}/config.data
    3494 done
    3495 
    3496 
    3497 
    3498 
    3499 
    3500         case $arch_name in
    3501                 "host") arch_name=${host_cpu};;
    3502                 *) ;;
    3503         esac
    3504 
    3505         case $arch_name in
    3506                 "x64"        ) cannon_arch_name="x64";;
    3507                 "x86-64"     ) cannon_arch_name="x64";;
    3508                 "x86_64"     ) cannon_arch_name="x64";;
    3509                 "x86"        ) cannon_arch_name="x86";;
    3510                 "i386"       ) cannon_arch_name="x86";;
    3511                 "i486"       ) cannon_arch_name="x86";;
    3512                 "i686"       ) cannon_arch_name="x86";;
    3513                 "Intel 80386") cannon_arch_name="x86";;
    3514                 "arm"        ) cannon_arch_name="arm";;
    3515                 "ARM"        ) cannon_arch_name="arm";;
    3516                 *)
    3517                 >&2 echo "Unkown architecture " $arch_name;
    3518                 exit 1
    3519                 ;;
    3520         esac
    3521 
    3522 
    3523 cat >>confdefs.h <<_ACEOF
    3524 #define CFA_DEFAULT_CPU "$cannon_arch_name"
    3525 _ACEOF
    3526 
    3527 
    3528 cat >>confdefs.h <<_ACEOF
    3529 #define CFA_64_CPU "x64"
    3530 _ACEOF
    3531 
    3532 
    3533 cat >>confdefs.h <<_ACEOF
    3534 #define CFA_32_CPU "x86"
    3535 _ACEOF
    3536 
    3537 
    3538 #==============================================================================
    3539 # CAFLAGS
    3540 
    35413496cat >>confdefs.h <<_ACEOF
    35423497#define CFA_FLAGS "${CFAFLAGS}"
     
    35463501
    35473502
    3548 #==============================================================================
    35493503# Checks for programs.
    35503504ac_ext=cpp
     
    63296283
    63306284
    6331 #==============================================================================
    6332 ac_config_files="$ac_config_files Makefile driver/Makefile src/Makefile benchmark/Makefile tests/Makefile tests/preempt_longrun/Makefile tools/Makefile tools/prettyprinter/Makefile"
    6333 
    6334 
    6335 ac_config_links="$ac_config_links tests/test.py:tests/test.py"
    6336 
    6337 
    6338 ac_config_files="$ac_config_files tests/config.py"
     6285ac_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
     6288ac_config_links="$ac_config_links src/tests/test.py:src/tests/test.py"
     6289
     6290
     6291ac_config_files="$ac_config_files src/tests/config.py"
    63396292
    63406293cat >confcache <<\_ACEOF
     
    64636416fi
    64646417
     6418if test -z "${BUILD_RELEASE_TRUE}" && test -z "${BUILD_RELEASE_FALSE}"; then
     6419  as_fn_error $? "conditional \"BUILD_RELEASE\" was never defined.
     6420Usually this means the macro was only invoked conditionally." "$LINENO" 5
     6421fi
     6422if test -z "${BUILD_DEBUG_TRUE}" && test -z "${BUILD_DEBUG_FALSE}"; then
     6423  as_fn_error $? "conditional \"BUILD_DEBUG\" was never defined.
     6424Usually this means the macro was only invoked conditionally." "$LINENO" 5
     6425fi
     6426if test -z "${BUILD_NO_LIB_TRUE}" && test -z "${BUILD_NO_LIB_FALSE}"; then
     6427  as_fn_error $? "conditional \"BUILD_NO_LIB\" was never defined.
     6428Usually this means the macro was only invoked conditionally." "$LINENO" 5
     6429fi
     6430if test -z "${BUILD_CONCURRENCY_TRUE}" && test -z "${BUILD_CONCURRENCY_FALSE}"; then
     6431  as_fn_error $? "conditional \"BUILD_CONCURRENCY\" was never defined.
     6432Usually this means the macro was only invoked conditionally." "$LINENO" 5
     6433fi
    64656434if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
    64666435  as_fn_error $? "conditional \"AMDEP\" was never defined.
     
    70787047    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
    70797048    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
    7080     "driver/Makefile") CONFIG_FILES="$CONFIG_FILES driver/Makefile" ;;
     7049    "src/driver/Makefile") CONFIG_FILES="$CONFIG_FILES src/driver/Makefile" ;;
    70817050    "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
    7082     "benchmark/Makefile") CONFIG_FILES="$CONFIG_FILES benchmark/Makefile" ;;
    7083     "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
    7084     "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" ;;
    70857057    "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;;
    70867058    "tools/prettyprinter/Makefile") CONFIG_FILES="$CONFIG_FILES tools/prettyprinter/Makefile" ;;
    7087     "tests/test.py") CONFIG_LINKS="$CONFIG_LINKS tests/test.py:tests/test.py" ;;
    7088     "tests/config.py") CONFIG_FILES="$CONFIG_FILES tests/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" ;;
    70897061
    70907062  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
     
    78467818
    78477819
     7820if 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;}
     7824else
     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;}
     7827fi
     7828else
     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;}
     7832else
     7833  { $as_echo "$as_me:${as_lineno-$LINENO}: Running cfa without libcfa" >&5
     7834$as_echo "$as_me: Running cfa without libcfa" >&6;}
     7835fi
     7836fi
     7837
    78487838# Final text
    78497839{ $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.