Changeset f80e0218 for configure


Ignore:
Timestamp:
Jun 30, 2016, 4:32:56 PM (10 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, stuck-waitfor-destruct, with_gc
Children:
ea29e73
Parents:
1b5c81ed (diff), 84d4d6f (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 gc_noraii

Conflicts:

Jenkinsfile
src/SymTab/Validate.cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r1b5c81ed rf80e0218  
    643643CFA_INCDIR
    644644CFA_PREFIX
     645CFA_BACKEND_CC
    645646BACKEND_CC
    646 GCC_PATH
    647647MAINT
    648648MAINTAINER_MODE_FALSE
     
    671671INSTALL_SCRIPT
    672672INSTALL_PROGRAM
     673AM_BACKSLASH
     674AM_DEFAULT_VERBOSITY
     675AM_DEFAULT_V
     676AM_V
    673677target_alias
    674678host_alias
     
    712716ac_user_opts='
    713717enable_option_checking
     718enable_silent_rules
    714719enable_maintainer_mode
    715720with_backend_compiler
     
    13461351  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
    13471352  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
     1353  --enable-silent-rules          less verbose build output (undo: `make V=1')
     1354  --disable-silent-rules         verbose build output (undo: `make V=0')
    13481355  --disable-maintainer-mode  disable make rules and dependencies not useful
    13491356                          (and sometimes confusing) to the casual installer
     
    24082415ac_config_headers="$ac_config_headers config.h"
    24092416
     2417# Check whether --enable-silent-rules was given.
     2418if test "${enable_silent_rules+set}" = set; then :
     2419  enableval=$enable_silent_rules;
     2420fi
     2421
     2422case $enable_silent_rules in
     2423yes) AM_DEFAULT_VERBOSITY=0;;
     2424no)  AM_DEFAULT_VERBOSITY=1;;
     2425*)   AM_DEFAULT_VERBOSITY=1;;
     2426esac
     2427am_make=${MAKE-make}
     2428{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
     2429$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
     2430if ${am_cv_make_support_nested_variables+:} false; then :
     2431  $as_echo_n "(cached) " >&6
     2432else
     2433  if $as_echo 'TRUE=$(BAR$(V))
     2434BAR0=false
     2435BAR1=true
     2436V=1
     2437am__doit:
     2438        @$(TRUE)
     2439.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
     2440  am_cv_make_support_nested_variables=yes
     2441else
     2442  am_cv_make_support_nested_variables=no
     2443fi
     2444fi
     2445{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
     2446$as_echo "$am_cv_make_support_nested_variables" >&6; }
     2447if test $am_cv_make_support_nested_variables = yes; then
     2448    AM_V='$(V)'
     2449  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
     2450else
     2451  AM_V=$AM_DEFAULT_VERBOSITY
     2452  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
     2453fi
     2454AM_BACKSLASH='\'
     2455
    24102456
    24112457if test "x${CXXFLAGS}" = "x"; then
     
    29222968# Check whether --with-backend-compiler was given.
    29232969if test "${with_backend_compiler+set}" = set; then :
    2924   withval=$with_backend_compiler; backcompiler=$withval
    2925 else
    2926   backcompiler=""
    2927 fi
    2928 
    2929   if test x$backcompiler != x; then
    2930         cat >>confdefs.h <<_ACEOF
    2931 #define GCC_PATH "${backcompiler}"
    2932 _ACEOF
    2933 
    2934         BACKEND_CC=${backcompiler}
    2935   else
     2970  withval=$with_backend_compiler; backendcompiler=$withval
     2971else
     2972  backendcompiler=""
     2973fi
     2974
     2975if test "x$backendcompiler" != x; then
     2976        BACKEND_CC=${backendcompiler}
     2977else
    29362978        # Extract the first word of "gcc", so it can be a program name with args.
    29372979set dummy gcc; ac_word=$2
    29382980{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
    29392981$as_echo_n "checking for $ac_word... " >&6; }
    2940 if ${ac_cv_path_GCC_PATH+:} false; then :
     2982if ${ac_cv_path_BACKEND_CC+:} false; then :
    29412983  $as_echo_n "(cached) " >&6
    29422984else
    2943   case $GCC_PATH in
     2985  case $BACKEND_CC in
    29442986  [\\/]* | ?:[\\/]*)
    2945   ac_cv_path_GCC_PATH="$GCC_PATH" # Let the user override the test with a path.
     2987  ac_cv_path_BACKEND_CC="$BACKEND_CC" # Let the user override the test with a path.
    29462988  ;;
    29472989  *)
     
    29532995    for ac_exec_ext in '' $ac_executable_extensions; do
    29542996  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
    2955     ac_cv_path_GCC_PATH="$as_dir/$ac_word$ac_exec_ext"
     2997    ac_cv_path_BACKEND_CC="$as_dir/$ac_word$ac_exec_ext"
    29562998    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    29572999    break 2
     
    29613003IFS=$as_save_IFS
    29623004
    2963   test -z "$ac_cv_path_GCC_PATH" && ac_cv_path_GCC_PATH="N/A"
    29643005  ;;
    29653006esac
    29663007fi
    2967 GCC_PATH=$ac_cv_path_GCC_PATH
    2968 if test -n "$GCC_PATH"; then
    2969   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GCC_PATH" >&5
    2970 $as_echo "$GCC_PATH" >&6; }
     3008BACKEND_CC=$ac_cv_path_BACKEND_CC
     3009if test -n "$BACKEND_CC"; then
     3010  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $BACKEND_CC" >&5
     3011$as_echo "$BACKEND_CC" >&6; }
    29713012else
    29723013  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
     
    29753016
    29763017
    2977         if test "$GCC_PATH" = "N/A"; then
     3018        if test "x$BACKEND_CC" = "x"; then
    29783019                as_fn_error $? "some version of gcc is needed. Get it at ftp://ftp.gnu.org" "$LINENO" 5
    29793020                exit 1
    29803021        fi
     3022fi
    29813023
    29823024cat >>confdefs.h <<_ACEOF
    2983 #define GCC_PATH "${GCC_PATH}"
    2984 _ACEOF
    2985 
    2986         BACKEND_CC=${GCC_PATH}
    2987   fi
     3025#define CFA_BACKEND_CC "${BACKEND_CC}"
     3026_ACEOF
     3027
    29883028
    29893029
     
    57575797
    57585798
    5759 ac_config_files="$ac_config_files Makefile src/driver/Makefile src/Makefile src/examples/Makefile src/libcfa/Makefile"
     5799ac_config_files="$ac_config_files Makefile src/driver/Makefile src/Makefile src/examples/Makefile src/tests/Makefile src/libcfa/Makefile"
    57605800
    57615801
     
    65036543    "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
    65046544    "src/examples/Makefile") CONFIG_FILES="$CONFIG_FILES src/examples/Makefile" ;;
     6545    "src/tests/Makefile") CONFIG_FILES="$CONFIG_FILES src/tests/Makefile" ;;
    65056546    "src/libcfa/Makefile") CONFIG_FILES="$CONFIG_FILES src/libcfa/Makefile" ;;
    65066547
Note: See TracChangeset for help on using the changeset viewer.