Changeset e4745d7a for configure


Ignore:
Timestamp:
Dec 6, 2016, 3:38:11 PM (8 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, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
d9c44c3
Parents:
c5cb6130
Message:

Properly fixed the build for i386/x86_64 including regular C file invoke.c and appropriate assembly CtxSwitch?-[CPU].S

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    rc5cb6130 re4745d7a  
    644644CXXFLAGS
    645645CXX
     646MACHINE_TYPE
     647host_os
     648host_vendor
     649host_cpu
     650host
     651build_os
     652build_vendor
     653build_cpu
     654build
    646655CFA_FLAGS
    647656CFA_LIBDIR
     
    13461355  --program-suffix=SUFFIX            append SUFFIX to installed program names
    13471356  --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
     1357
     1358System types:
     1359  --build=BUILD     configure for building on BUILD [guessed]
     1360  --host=HOST       cross-compile to build programs to run on HOST [BUILD]
    13481361_ACEOF
    13491362fi
     
    31463159
    31473160CFA_FLAGS=${CFAFLAGS}
     3161
     3162
     3163# Make sure we can run config.sub.
     3164$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
     3165  as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
     3166
     3167{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
     3168$as_echo_n "checking build system type... " >&6; }
     3169if ${ac_cv_build+:} false; then :
     3170  $as_echo_n "(cached) " >&6
     3171else
     3172  ac_build_alias=$build_alias
     3173test "x$ac_build_alias" = x &&
     3174  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
     3175test "x$ac_build_alias" = x &&
     3176  as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
     3177ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
     3178  as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
     3179
     3180fi
     3181{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
     3182$as_echo "$ac_cv_build" >&6; }
     3183case $ac_cv_build in
     3184*-*-*) ;;
     3185*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
     3186esac
     3187build=$ac_cv_build
     3188ac_save_IFS=$IFS; IFS='-'
     3189set x $ac_cv_build
     3190shift
     3191build_cpu=$1
     3192build_vendor=$2
     3193shift; shift
     3194# Remember, the first character of IFS is used to create $*,
     3195# except with old shells:
     3196build_os=$*
     3197IFS=$ac_save_IFS
     3198case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
     3199
     3200
     3201{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
     3202$as_echo_n "checking host system type... " >&6; }
     3203if ${ac_cv_host+:} false; then :
     3204  $as_echo_n "(cached) " >&6
     3205else
     3206  if test "x$host_alias" = x; then
     3207  ac_cv_host=$ac_cv_build
     3208else
     3209  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
     3210    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
     3211fi
     3212
     3213fi
     3214{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
     3215$as_echo "$ac_cv_host" >&6; }
     3216case $ac_cv_host in
     3217*-*-*) ;;
     3218*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
     3219esac
     3220host=$ac_cv_host
     3221ac_save_IFS=$IFS; IFS='-'
     3222set x $ac_cv_host
     3223shift
     3224host_cpu=$1
     3225host_vendor=$2
     3226shift; shift
     3227# Remember, the first character of IFS is used to create $*,
     3228# except with old shells:
     3229host_os=$*
     3230IFS=$ac_save_IFS
     3231case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
     3232
     3233
     3234MACHINE_TYPE=$host_cpu
    31483235
    31493236
Note: See TracChangeset for help on using the changeset viewer.