Changeset 455a7d5 for configure


Ignore:
Timestamp:
Aug 9, 2018, 6:35:02 PM (7 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
ea5b7d6
Parents:
fb975a50 (diff), 0c827019 (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.
Message:

Merge branch 'master' into jenkins-sandbox

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    rfb975a50 r455a7d5  
    665665CXX
    666666CFA_FLAGS
    667 MACHINE_TYPE
     667LIBCFA_TARGET_MAKEFILES
     668LIBCFA_TARGET_DIRS
     669TARGET_HOSTS
    668670host_os
    669671host_vendor
     
    674676build_cpu
    675677build
     678BUILD_IN_TREE_FLAGS
     679CFACPP
     680CFACC
     681DRIVER_DIR
    676682CFA_LIBDIR
    677683CFA_BINDIR
    678684CFA_INCDIR
    679685CFA_PREFIX
     686CFA_BACKEND_CC
     687BACKEND_CC
    680688DOendif
    681689DOifskipcompile
    682 BUILD_CONCURRENCY_FALSE
    683 BUILD_CONCURRENCY_TRUE
    684 BUILD_NO_LIB_FALSE
    685 BUILD_NO_LIB_TRUE
    686 BUILD_DEBUG_FALSE
    687 BUILD_DEBUG_TRUE
    688 BUILD_RELEASE_FALSE
    689 BUILD_RELEASE_TRUE
    690 CFA_BACKEND_CC
    691 BACKEND_CC
    692690CFA_NAME
    693691am__untar
     
    763761with_cfa_name
    764762with_backend_compiler
    765 enable_target_release
    766 enable_target_debug
    767 enable_threading
     763with_target_hosts
    768764enable_dependency_tracking
    769765'
     
    14151411  --enable-silent-rules   less verbose build output (undo: "make V=1")
    14161412  --disable-silent-rules  verbose build output (undo: "make V=0")
    1417   --enable-target-release Build and install the release target
    1418   --enable-target-debug   Build and install the debug target
    1419   --enable-threading      Build and install libcfa with threading support
    1420                           (Enabled by default)
    14211413  --enable-dependency-tracking
    14221414                          do not reject slow dependency extractors
     
    14291421  --with-cfa-name=NAME     NAME too which cfa will be installed
    14301422  --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|nolib
    14311424
    14321425Some influential environment variables:
     
    24952488  yes) AM_DEFAULT_VERBOSITY=0;;
    24962489   no) AM_DEFAULT_VERBOSITY=1;;
    2497     *) AM_DEFAULT_VERBOSITY=1;;
     2490    *) AM_DEFAULT_VERBOSITY=0;;
    24982491esac
    24992492am_make=${MAKE-make}
     
    25262519AM_BACKSLASH='\'
    25272520
     2521
     2522
     2523
     2524
     2525
     2526
     2527
     2528
     2529# don't use the default CFLAGS as they unconditonnaly add -O2
     2530: ${CFLAGS=""}
    25282531
    25292532am__api_version='1.15'
     
    30723075
    30733076
     3077#==============================================================================
    30743078#Trasforming cc1 will break compilation
    3075 if test "${program_transform_name}" = ""; then
    3076     as_fn_error $? "Program transform not supported.
    3077                 Use --with-cfa-name='[Desired name here]' instead" "$LINENO" 5
    3078 fi
    3079 
     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
    30803086
    30813087# Check whether --with-cfa-name was given.
     
    30873093
    30883094
    3089 #Define the new name of the installed command
    3090 CFA_NAME=${cfa_name}
    3091 
     3095        CFA_NAME=${cfa_name}
     3096
     3097
     3098
     3099#==============================================================================
     3100# version information
    30923101
    30933102rm -f version
     
    31413150
    31423151
    3143 # Installation paths
    3144 
     3152#==============================================================================
     3153# HACK to be able to use conditionnals inside makefiles
     3154DOifskipcompile='ifeq ($(skipcompile),yes)
     3155else'
     3156
     3157
     3158
     3159DOendif='endif'
     3160
     3161
     3162
     3163#==============================================================================
     3164# backend compiler implementation
    31453165
    31463166# Check whether --with-backend-compiler was given.
     
    31523172
    31533173if test "x$backendcompiler" != "x"; then
    3154         BACKEND_CC=${backendcompiler}
    3155 else
    3156         # Extract the first word of "gcc", so it can be a program name with args.
     3174       BACKEND_CC=${backendcompiler}
     3175else
     3176       # Extract the first word of "gcc", so it can be a program name with args.
    31573177set dummy gcc; ac_word=$2
    31583178{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
     
    31933213fi
    31943214
    3195         # check gcc installed
    3196         if test "x$BACKEND_CC" = "x"; then
    3197                 as_fn_error $? "some version of gcc is needed. Get it at ftp://ftp.gnu.org" "$LINENO" 5
    3198                 exit 1
    3199         fi
     3215       # check gcc installed
     3216       if test "x$BACKEND_CC" = "x"; then
     3217               as_fn_error $? "some version of gcc is needed. Get it at ftp://ftp.gnu.org" "$LINENO" 5
     3218               exit 1
     3219       fi
    32003220fi
    32013221
     
    32063226
    32073227
    3208 
    3209 
    3210 # Check whether --enable-target-release was given.
    3211 if test "${enable_target_release+set}" = set; then :
    3212   enableval=$enable_target_release;
    3213 fi
    3214 
    3215 # Check whether --enable-target-debug was given.
    3216 if test "${enable_target_debug+set}" = set; then :
    3217   enableval=$enable_target_debug;
    3218 fi
    3219 
    3220 # Check whether --enable-threading was given.
    3221 if test "${enable_threading+set}" = set; then :
    3222   enableval=$enable_threading; case "${enableval}" in
    3223   yes) build_threading="yes" ;;
    3224   no)  build_threading="no" ;;
    3225   *) as_fn_error $? "bad value ${enableval} for --enable-debug" "$LINENO" 5 ;;
    3226 esac
    3227 else
    3228   build_threading="yes"
    3229 fi
    3230 
    3231 
    3232 case "$enable_target_release" in
    3233         yes)
    3234                 case "$enable_target_debug" in
    3235                         yes)
    3236                                 build_release="yes"
    3237                                 build_debug="yes"
    3238                                 ;;
    3239                         no)
    3240                                 build_release="yes"
    3241                                 build_debug="no"
    3242                                 ;;
    3243                         *)
    3244                                 build_release="yes"
    3245                                 build_debug="no"
    3246                                 ;;
    3247                 esac
    3248                 ;;
    3249         no)
    3250                 case "$enable_target_debug" in
    3251                         yes)
    3252                                 build_release="no"
    3253                                 build_debug="yes"
    3254                                 ;;
    3255                         no)
    3256                                 build_release="no"
    3257                                 build_debug="no"
    3258                                 ;;
    3259                         *)
    3260                                 build_release="no"
    3261                                 build_debug="yes"
    3262                                 ;;
    3263                 esac
    3264                 ;;
    3265         *)
    3266                 case "$enable_target_debug" in
    3267                         yes)
    3268                                 build_release="no"
    3269                                 build_debug="yes"
    3270                                 ;;
    3271                         no)
    3272                                 build_release="yes"
    3273                                 build_debug="no"
    3274                                 ;;
    3275                         *)
    3276                                 build_release="yes"
    3277                                 build_debug="yes"
    3278                                 ;;
    3279                 esac
    3280                 ;;
    3281 esac
    3282 
    3283  if test "x$build_release" = "xyes"; then
    3284   BUILD_RELEASE_TRUE=
    3285   BUILD_RELEASE_FALSE='#'
    3286 else
    3287   BUILD_RELEASE_TRUE='#'
    3288   BUILD_RELEASE_FALSE=
    3289 fi
    3290 
    3291  if test "x$build_debug" = "xyes"; then
    3292   BUILD_DEBUG_TRUE=
    3293   BUILD_DEBUG_FALSE='#'
    3294 else
    3295   BUILD_DEBUG_TRUE='#'
    3296   BUILD_DEBUG_FALSE=
    3297 fi
    3298 
    3299  if test "x$build_release$build_debug" = "xnono"; then
    3300   BUILD_NO_LIB_TRUE=
    3301   BUILD_NO_LIB_FALSE='#'
    3302 else
    3303   BUILD_NO_LIB_TRUE='#'
    3304   BUILD_NO_LIB_FALSE=
    3305 fi
    3306 
    3307  if test "x$build_threading" = "xyes"; then
    3308   BUILD_CONCURRENCY_TRUE=
    3309   BUILD_CONCURRENCY_FALSE='#'
    3310 else
    3311   BUILD_CONCURRENCY_TRUE='#'
    3312   BUILD_CONCURRENCY_FALSE=
    3313 fi
    3314 
    3315 
    3316 DOifskipcompile='ifeq ($(skipcompile),yes)
    3317 else'
    3318 
    3319 
    3320 
    3321 DOendif='endif'
    3322 
    3323 
    3324 
    3325 if test "x$prefix" = "xNONE"; then
    3326         cfa_prefix=${ac_default_prefix}
    3327 else
    3328         cfa_prefix=${prefix}
    3329 fi
     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
    33303236
    33313237cat >>confdefs.h <<_ACEOF
     
    33333239_ACEOF
    33343240
    3335 CFA_PREFIX=${cfa_prefix}
    3336 
    3337 
    3338 if test "$includedir" = '${prefix}/include'; then
    3339         cfa_incdir="${cfa_prefix}/include/${cfa_name}"
    3340 else
    3341         cfa_incdir=${includedir}
    3342 fi
     3241        CFA_PREFIX=${cfa_prefix}
     3242
     3243
     3244        if test "$includedir" = '${prefix}/include'; then
     3245                cfa_incdir="${cfa_prefix}/include/${cfa_name}"
     3246        else
     3247                cfa_incdir=${includedir}
     3248        fi
    33433249
    33443250cat >>confdefs.h <<_ACEOF
     
    33463252_ACEOF
    33473253
    3348 CFA_INCDIR=${cfa_incdir}
    3349 
    3350 
    3351 if test "$bindir" = '${exec_prefix}/bin'; then
    3352         cfa_bindir="${cfa_prefix}/bin"
    3353 else
    3354         cfa_bindir=${bindir}
    3355 fi
     3254        CFA_INCDIR=${cfa_incdir}
     3255
     3256
     3257        if test "$bindir" = '${exec_prefix}/bin'; then
     3258                cfa_bindir="${cfa_prefix}/bin"
     3259        else
     3260                cfa_bindir=${bindir}
     3261        fi
    33563262
    33573263cat >>confdefs.h <<_ACEOF
     
    33593265_ACEOF
    33603266
    3361 CFA_BINDIR=${cfa_bindir}
    3362 
    3363 
    3364 if test "$libdir" = '${exec_prefix}/lib'; then
    3365         cfa_libdir="${cfa_prefix}/lib/${cfa_name}"
    3366 else
    3367         cfa_libdir=${libdir}
    3368 fi
     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
    33693279
    33703280cat >>confdefs.h <<_ACEOF
     
    33723282_ACEOF
    33733283
    3374 CFA_LIBDIR=${cfa_libdir}
    3375 
    3376 
     3284        CFA_LIBDIR=${cfa_libdir}
     3285
     3286
     3287
     3288#==============================================================================
     3289# Create variables for commonly used targets
     3290
     3291TOP_SRCDIR=$ac_pwd/$ac_confdir/
     3292TOP_BUILDDIR=$ac_pwd/
     3293
     3294
     3295cat >>confdefs.h <<_ACEOF
     3296#define TOP_SRCDIR "$TOP_SRCDIR"
     3297_ACEOF
     3298
     3299
     3300cat >>confdefs.h <<_ACEOF
     3301#define TOP_BUILDDIR "$TOP_BUILDDIR"
     3302_ACEOF
     3303
     3304
     3305DRIVER_DIR=${TOP_BUILDDIR}driver/
     3306CFACC=${DRIVER_DIR}cfa
     3307CFACPP=${DRIVER_DIR}cfa-cpp
     3308
     3309
     3310
     3311
     3312#==============================================================================
     3313# Flag variables needed to build in tree
     3314LIBCFA_SRC='${TOP_SRCDIR}/libcfa/src'
     3315BUILD_IN_TREE_FLAGS="-XCFA -t -B${DRIVER_DIR}"
     3316
     3317
     3318#==============================================================================
     3319# handle the list of hosts to build for
     3320for var in $ac_configure_args
     3321do
     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
     3333done
     3334
     3335#==============================================================================
     3336# handle the list of hosts to build for
    33773337# Make sure we can run config.sub.
    33783338$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
     
    34463406
    34473407
    3448 MACHINE_TYPE=$host_cpu
    3449 
    3450 
    3451 if ! test "$host_cpu" = "$build_cpu"; then
    3452         case $host_cpu in
    3453                 i386)
    3454                         CFLAGS+=" -m32 "
    3455                         CXXFLAGS+=" -m32 "
    3456                         CFAFLAGS+=" -m32 "
    3457                         LDFLAGS+=" -m32 "
    3458                         ;;
    3459                 i686)
    3460                         CFLAGS+=" -m32 "
    3461                   CXXFLAGS+=" -m32 "
    3462                   CFAFLAGS+=" -m32 "
    3463                   LDFLAGS+=" -m32 "
    3464                         ;;
    3465                 x86_64)
    3466                         CFLAGS+=" -m64 "
    3467                         CXXFLAGS+=" -m64 "
    3468                         CFAFLAGS+=" -m64 "
    3469                         LDFLAGS+=" -m64 "
    3470                         ;;
     3408
     3409default_target="${host_cpu}:debug, ${host_cpu}:nodebug"
     3410
     3411# Check whether --with-target-hosts was given.
     3412if test "${with_target_hosts+set}" = set; then :
     3413  withval=$with_target_hosts; target_hosts=$withval
     3414else
     3415  target_hosts=${default_target}
     3416fi
     3417
     3418
     3419TARGET_HOSTS=${target_hosts}
     3420
     3421
     3422LIBCFA_PATHS="DRIVER_DIR=${DRIVER_DIR}"
     3423
     3424for i in $(echo $target_hosts | sed "s/,/ /g")
     3425do
     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                ;;
    34713438        esac
    3472 fi
    3473 
     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
     3469done
     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
     3493cat >>confdefs.h <<_ACEOF
     3494#define CFA_DEFAULT_CPU "$cannon_arch_name"
     3495_ACEOF
     3496
     3497
     3498cat >>confdefs.h <<_ACEOF
     3499#define CFA_64_CPU "x64"
     3500_ACEOF
     3501
     3502
     3503cat >>confdefs.h <<_ACEOF
     3504#define CFA_32_CPU "x86"
     3505_ACEOF
     3506
     3507
     3508#==============================================================================
     3509# CAFLAGS
    34743510
    34753511cat >>confdefs.h <<_ACEOF
     
    34803516
    34813517
     3518#==============================================================================
    34823519# Checks for programs.
    34833520ac_ext=cpp
     
    62626299
    62636300
    6264 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"
    6265 
    6266 
    6267 ac_config_links="$ac_config_links src/tests/test.py:src/tests/test.py"
    6268 
    6269 
    6270 ac_config_files="$ac_config_files src/tests/config.py"
     6301#==============================================================================
     6302ac_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
     6305ac_config_links="$ac_config_links tests/test.py:tests/test.py"
     6306
     6307
     6308ac_config_files="$ac_config_files tests/config.py"
    62716309
    62726310cat >confcache <<\_ACEOF
     
    63956433fi
    63966434
    6397 if test -z "${BUILD_RELEASE_TRUE}" && test -z "${BUILD_RELEASE_FALSE}"; then
    6398   as_fn_error $? "conditional \"BUILD_RELEASE\" was never defined.
    6399 Usually this means the macro was only invoked conditionally." "$LINENO" 5
    6400 fi
    6401 if test -z "${BUILD_DEBUG_TRUE}" && test -z "${BUILD_DEBUG_FALSE}"; then
    6402   as_fn_error $? "conditional \"BUILD_DEBUG\" was never defined.
    6403 Usually this means the macro was only invoked conditionally." "$LINENO" 5
    6404 fi
    6405 if test -z "${BUILD_NO_LIB_TRUE}" && test -z "${BUILD_NO_LIB_FALSE}"; then
    6406   as_fn_error $? "conditional \"BUILD_NO_LIB\" was never defined.
    6407 Usually this means the macro was only invoked conditionally." "$LINENO" 5
    6408 fi
    6409 if test -z "${BUILD_CONCURRENCY_TRUE}" && test -z "${BUILD_CONCURRENCY_FALSE}"; then
    6410   as_fn_error $? "conditional \"BUILD_CONCURRENCY\" was never defined.
    6411 Usually this means the macro was only invoked conditionally." "$LINENO" 5
    6412 fi
    64136435if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
    64146436  as_fn_error $? "conditional \"AMDEP\" was never defined.
     
    70267048    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
    70277049    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
    7028     "src/driver/Makefile") CONFIG_FILES="$CONFIG_FILES src/driver/Makefile" ;;
     7050    "driver/Makefile") CONFIG_FILES="$CONFIG_FILES driver/Makefile" ;;
    70297051    "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
    7030     "src/benchmark/Makefile") CONFIG_FILES="$CONFIG_FILES src/benchmark/Makefile" ;;
    7031     "src/examples/Makefile") CONFIG_FILES="$CONFIG_FILES src/examples/Makefile" ;;
    7032     "src/tests/Makefile") CONFIG_FILES="$CONFIG_FILES src/tests/Makefile" ;;
    7033     "src/tests/preempt_longrun/Makefile") CONFIG_FILES="$CONFIG_FILES src/tests/preempt_longrun/Makefile" ;;
    7034     "src/prelude/Makefile") CONFIG_FILES="$CONFIG_FILES src/prelude/Makefile" ;;
    7035     "src/libcfa/Makefile") CONFIG_FILES="$CONFIG_FILES src/libcfa/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" ;;
    70367055    "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;;
    70377056    "tools/prettyprinter/Makefile") CONFIG_FILES="$CONFIG_FILES tools/prettyprinter/Makefile" ;;
    7038     "src/tests/test.py") CONFIG_LINKS="$CONFIG_LINKS src/tests/test.py:src/tests/test.py" ;;
    7039     "src/tests/config.py") CONFIG_FILES="$CONFIG_FILES src/tests/config.py" ;;
     7057    "tests/test.py") CONFIG_LINKS="$CONFIG_LINKS tests/test.py:tests/test.py" ;;
     7058    "tests/config.py") CONFIG_FILES="$CONFIG_FILES tests/config.py" ;;
    70407059
    70417060  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
     
    77977816
    77987817
    7799 if test -z "$BUILD_RELEASE_TRUE"; then :
    7800   if test -z "$BUILD_DEBUG_TRUE"; then :
    7801   { $as_echo "$as_me:${as_lineno-$LINENO}: Building libcfa for target: release & debug" >&5
    7802 $as_echo "$as_me: Building libcfa for target: release & debug" >&6;}
    7803 else
    7804   { $as_echo "$as_me:${as_lineno-$LINENO}: Building libcfa for target: release" >&5
    7805 $as_echo "$as_me: Building libcfa for target: release" >&6;}
    7806 fi
    7807 else
    7808   if test -z "$BUILD_DEBUG_TRUE"; then :
    7809   { $as_echo "$as_me:${as_lineno-$LINENO}: Building libcfa for target: debug" >&5
    7810 $as_echo "$as_me: Building libcfa for target: debug" >&6;}
    7811 else
    7812   { $as_echo "$as_me:${as_lineno-$LINENO}: Running cfa without libcfa" >&5
    7813 $as_echo "$as_me: Running cfa without libcfa" >&6;}
    7814 fi
    7815 fi
    7816 
    78177818# Final text
    78187819{ $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.