- Timestamp:
- Dec 6, 2016, 3:38:11 PM (8 years ago)
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
rc5cb6130 re4745d7a 644 644 CXXFLAGS 645 645 CXX 646 MACHINE_TYPE 647 host_os 648 host_vendor 649 host_cpu 650 host 651 build_os 652 build_vendor 653 build_cpu 654 build 646 655 CFA_FLAGS 647 656 CFA_LIBDIR … … 1346 1355 --program-suffix=SUFFIX append SUFFIX to installed program names 1347 1356 --program-transform-name=PROGRAM run sed PROGRAM on installed program names 1357 1358 System types: 1359 --build=BUILD configure for building on BUILD [guessed] 1360 --host=HOST cross-compile to build programs to run on HOST [BUILD] 1348 1361 _ACEOF 1349 1362 fi … … 3146 3159 3147 3160 CFA_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; } 3169 if ${ac_cv_build+:} false; then : 3170 $as_echo_n "(cached) " >&6 3171 else 3172 ac_build_alias=$build_alias 3173 test "x$ac_build_alias" = x && 3174 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` 3175 test "x$ac_build_alias" = x && 3176 as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 3177 ac_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 3180 fi 3181 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 3182 $as_echo "$ac_cv_build" >&6; } 3183 case $ac_cv_build in 3184 *-*-*) ;; 3185 *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; 3186 esac 3187 build=$ac_cv_build 3188 ac_save_IFS=$IFS; IFS='-' 3189 set x $ac_cv_build 3190 shift 3191 build_cpu=$1 3192 build_vendor=$2 3193 shift; shift 3194 # Remember, the first character of IFS is used to create $*, 3195 # except with old shells: 3196 build_os=$* 3197 IFS=$ac_save_IFS 3198 case $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; } 3203 if ${ac_cv_host+:} false; then : 3204 $as_echo_n "(cached) " >&6 3205 else 3206 if test "x$host_alias" = x; then 3207 ac_cv_host=$ac_cv_build 3208 else 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 3211 fi 3212 3213 fi 3214 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 3215 $as_echo "$ac_cv_host" >&6; } 3216 case $ac_cv_host in 3217 *-*-*) ;; 3218 *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; 3219 esac 3220 host=$ac_cv_host 3221 ac_save_IFS=$IFS; IFS='-' 3222 set x $ac_cv_host 3223 shift 3224 host_cpu=$1 3225 host_vendor=$2 3226 shift; shift 3227 # Remember, the first character of IFS is used to create $*, 3228 # except with old shells: 3229 host_os=$* 3230 IFS=$ac_save_IFS 3231 case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac 3232 3233 3234 MACHINE_TYPE=$host_cpu 3148 3235 3149 3236
Note: See TracChangeset
for help on using the changeset viewer.