Changeset 534e4e4
- Timestamp:
- Aug 3, 2018, 4:05:38 PM (6 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
- Files:
-
- 1 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.in
rba9baad r534e4e4 94 94 subdir = . 95 95 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 96 am__aclocal_m4_deps = $(top_srcdir)/configure.ac 96 am__aclocal_m4_deps = $(top_srcdir)/automake/cfa.m4 \ 97 $(top_srcdir)/configure.ac 97 98 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 98 99 $(ACLOCAL_M4) -
benchmark/Makefile.in
rba9baad r534e4e4 95 95 subdir = benchmark 96 96 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 97 am__aclocal_m4_deps = $(top_srcdir)/configure.ac 97 am__aclocal_m4_deps = $(top_srcdir)/automake/cfa.m4 \ 98 $(top_srcdir)/configure.ac 98 99 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 99 100 $(ACLOCAL_M4) -
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 -
configure.ac
rba9baad r534e4e4 8 8 AC_CONFIG_HEADERS([config.h:src/config.h.in]) 9 9 AM_SILENT_RULES([no]) 10 11 m4_include([automake/cfa.m4]) 10 12 11 13 AM_INIT_AUTOMAKE([subdir-objects]) … … 81 83 #============================================================================== 82 84 # Installation paths 83 if test "x$prefix" = "xNONE"; then 84 cfa_prefix=${ac_default_prefix} 85 else 86 cfa_prefix=${prefix} 87 fi 88 AC_DEFINE_UNQUOTED(CFA_PREFIX, "${cfa_prefix}", [Location of cfa install.]) 89 AC_SUBST(CFA_PREFIX, ${cfa_prefix}) 90 91 if test "$includedir" = '${prefix}/include'; then 92 cfa_incdir="${cfa_prefix}/include/${cfa_name}" 93 else 94 cfa_incdir=${includedir} 95 fi 96 AC_DEFINE_UNQUOTED(CFA_INCDIR, "${cfa_incdir}", [Location of include files.]) 97 AC_SUBST(CFA_INCDIR, ${cfa_incdir}) 98 99 if test "$bindir" = '${exec_prefix}/bin'; then 100 cfa_bindir="${cfa_prefix}/bin" 101 else 102 cfa_bindir=${bindir} 103 fi 104 AC_DEFINE_UNQUOTED(CFA_BINDIR, "${cfa_bindir}", [Location of cfa command.]) 105 AC_SUBST(CFA_BINDIR, ${cfa_bindir}) 106 107 if test "$libdir" = '${exec_prefix}/lib'; then 108 cfa_libdir="${cfa_prefix}/lib/${cfa_name}" 109 else 110 cfa_libdir=${libdir} 111 fi 112 AC_DEFINE_UNQUOTED(CFA_LIBDIR, "${cfa_libdir}", [Location of cc1 and cfa-cpp commands.]) 113 AC_SUBST(CFA_LIBDIR, ${cfa_libdir}) 85 M4CFA_PARSE_PREFIX 114 86 115 87 #============================================================================== … … 142 114 do 143 115 #strip quotes surrouding values 144 var=$(echo $var | sed s/\'//g)145 116 case $var in 146 117 # skip cross compilation related arguments 147 --host=*) ;; host_alias=*) ;; --build=*) ;; build_alias=*) ;; --target=*) ;;target_alias=*) ;;118 \'--host=*) ;; \'host_alias=*) ;; \'--build=*) ;; \'build_alias=*) ;; \'--target=*) ;; \'target_alias=*) ;; 148 119 149 120 # skip the target hosts 150 --with-target-hosts=*) ;;121 \'--with-target-hosts=*) ;; 151 122 152 123 # append all other arguments to the sub configure arguments … … 172 143 do 173 144 # call your procedure/other scripts here below 174 lib_arch=$(echo $i | sed -r "s/:(.*)//g")145 arch_name=$(echo $i | sed -r "s/:(.*)//g") 175 146 lib_config=$(echo $i | sed -r "s/(.*)://g") 147 if test $lib_config != "nodebug"; 148 then 149 if test $lib_config != "debug"; 150 then 151 if test $lib_config != "nolib"; 152 then 153 >&2 echo "Configuration must be 'debug', 'nodebug' or 'nolib'" 154 exit 1 155 fi 156 fi 157 fi 158 159 lib_arch=$($ac_aux_dir/config.sub $arch_name) 160 if test "$?" != "0"; then 161 >&2 echo "Unkown architecture " $arch_name; 162 exit 1; 163 fi 176 164 lib_dir="libcfa-${lib_arch}-${lib_config}" 177 165 -
driver/Makefile.in
rba9baad r534e4e4 96 96 subdir = driver 97 97 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 98 am__aclocal_m4_deps = $(top_srcdir)/configure.ac 98 am__aclocal_m4_deps = $(top_srcdir)/automake/cfa.m4 \ 99 $(top_srcdir)/configure.ac 99 100 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 100 101 $(ACLOCAL_M4) -
src/Makefile.in
rba9baad r534e4e4 137 137 subdir = src 138 138 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 139 am__aclocal_m4_deps = $(top_srcdir)/configure.ac 139 am__aclocal_m4_deps = $(top_srcdir)/automake/cfa.m4 \ 140 $(top_srcdir)/configure.ac 140 141 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 141 142 $(ACLOCAL_M4) -
tests/Makefile.in
rba9baad r534e4e4 94 94 subdir = tests 95 95 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 96 am__aclocal_m4_deps = $(top_srcdir)/configure.ac 96 am__aclocal_m4_deps = $(top_srcdir)/automake/cfa.m4 \ 97 $(top_srcdir)/configure.ac 97 98 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 98 99 $(ACLOCAL_M4) -
tests/preempt_longrun/Makefile.in
rba9baad r534e4e4 93 93 subdir = tests/preempt_longrun 94 94 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 95 am__aclocal_m4_deps = $(top_srcdir)/configure.ac 95 am__aclocal_m4_deps = $(top_srcdir)/automake/cfa.m4 \ 96 $(top_srcdir)/configure.ac 96 97 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 97 98 $(ACLOCAL_M4) -
tools/Makefile.in
rba9baad r534e4e4 96 96 subdir = tools 97 97 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 98 am__aclocal_m4_deps = $(top_srcdir)/configure.ac 98 am__aclocal_m4_deps = $(top_srcdir)/automake/cfa.m4 \ 99 $(top_srcdir)/configure.ac 99 100 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 100 101 $(ACLOCAL_M4) -
tools/prettyprinter/Makefile.in
rba9baad r534e4e4 95 95 subdir = tools/prettyprinter 96 96 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 97 am__aclocal_m4_deps = $(top_srcdir)/configure.ac 97 am__aclocal_m4_deps = $(top_srcdir)/automake/cfa.m4 \ 98 $(top_srcdir)/configure.ac 98 99 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 99 100 $(ACLOCAL_M4)
Note: See TracChangeset
for help on using the changeset viewer.