- Timestamp:
- Aug 3, 2018, 4:05:38 PM (7 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, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 4dcaed2
- Parents:
- ba9baad
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified configure ¶
rba9baad r534e4e4 2520 2520 2521 2521 2522 2523 2524 2522 2525 am__api_version='1.15' 2523 2526 … … 3217 3220 #============================================================================== 3218 3221 # Installation paths 3219 if test "x$prefix" = "xNONE"; then 3220 cfa_prefix=${ac_default_prefix} 3221 else 3222 cfa_prefix=${prefix} 3223 fi 3222 3223 if test "x$prefix" = "xNONE"; then 3224 cfa_prefix=${ac_default_prefix} 3225 else 3226 cfa_prefix=${prefix} 3227 fi 3224 3228 3225 3229 cat >>confdefs.h <<_ACEOF … … 3227 3231 _ACEOF 3228 3232 3229 CFA_PREFIX=${cfa_prefix}3230 3231 3232 if test "$includedir" = '${prefix}/include'; then3233 3234 else3235 3236 fi3233 CFA_PREFIX=${cfa_prefix} 3234 3235 3236 if test "$includedir" = '${prefix}/include'; then 3237 cfa_incdir="${cfa_prefix}/include/${cfa_name}" 3238 else 3239 cfa_incdir=${includedir} 3240 fi 3237 3241 3238 3242 cat >>confdefs.h <<_ACEOF … … 3240 3244 _ACEOF 3241 3245 3242 CFA_INCDIR=${cfa_incdir}3243 3244 3245 if test "$bindir" = '${exec_prefix}/bin'; then3246 3247 else3248 3249 fi3246 CFA_INCDIR=${cfa_incdir} 3247 3248 3249 if test "$bindir" = '${exec_prefix}/bin'; then 3250 cfa_bindir="${cfa_prefix}/bin" 3251 else 3252 cfa_bindir=${bindir} 3253 fi 3250 3254 3251 3255 cat >>confdefs.h <<_ACEOF … … 3253 3257 _ACEOF 3254 3258 3255 CFA_BINDIR=${cfa_bindir}3256 3257 3258 if test "$libdir" = '${exec_prefix}/lib'; then3259 3260 else3261 3262 fi3259 CFA_BINDIR=${cfa_bindir} 3260 3261 3262 if test "$libdir" = '${exec_prefix}/lib'; then 3263 cfa_libdir="${cfa_prefix}/lib/${cfa_name}" 3264 else 3265 cfa_libdir=${libdir} 3266 fi 3263 3267 3264 3268 cat >>confdefs.h <<_ACEOF … … 3266 3270 _ACEOF 3267 3271 3268 CFA_LIBDIR=${cfa_libdir} 3272 CFA_LIBDIR=${cfa_libdir} 3273 3269 3274 3270 3275 … … 3310 3315 do 3311 3316 #strip quotes surrouding values 3312 var=$(echo $var | sed s/\'//g)3313 3317 case $var in 3314 3318 # skip cross compilation related arguments 3315 --host=*) ;; host_alias=*) ;; --build=*) ;; build_alias=*) ;; --target=*) ;;target_alias=*) ;;3319 \'--host=*) ;; \'host_alias=*) ;; \'--build=*) ;; \'build_alias=*) ;; \'--target=*) ;; \'target_alias=*) ;; 3316 3320 3317 3321 # skip the target hosts 3318 --with-target-hosts=*) ;;3322 \'--with-target-hosts=*) ;; 3319 3323 3320 3324 # append all other arguments to the sub configure arguments … … 3415 3419 do 3416 3420 # call your procedure/other scripts here below 3417 lib_arch=$(echo $i | sed -r "s/:(.*)//g")3421 arch_name=$(echo $i | sed -r "s/:(.*)//g") 3418 3422 lib_config=$(echo $i | sed -r "s/(.*)://g") 3423 if test $lib_config != "nodebug"; 3424 then 3425 if test $lib_config != "debug"; 3426 then 3427 if test $lib_config != "nolib"; 3428 then 3429 >&2 echo "Configuration must be 'debug', 'nodebug' or 'nolib'" 3430 exit 1 3431 fi 3432 fi 3433 fi 3434 3435 lib_arch=$($ac_aux_dir/config.sub $arch_name) 3436 if test "$?" != "0"; then 3437 >&2 echo "Unkown architecture " $arch_name; 3438 exit 1; 3439 fi 3419 3440 lib_dir="libcfa-${lib_arch}-${lib_config}" 3420 3441
Note: See TracChangeset
for help on using the changeset viewer.