Changeset 05f4b85
- Timestamp:
- Feb 1, 2018, 9:26:34 AM (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, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- cc344be
- Parents:
- b2b44d8
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
rb2b44d8 r05f4b85 678 678 CFA_INCDIR 679 679 CFA_PREFIX 680 DOendif 681 DOifskipcompile 680 682 BUILD_CONCURRENCY_FALSE 681 683 BUILD_CONCURRENCY_TRUE … … 3342 3344 3343 3345 3346 DOifskipcompile='ifeq ($(skipcompile),yes) 3347 else' 3348 3349 3350 3351 DOendif='endif' 3352 3353 3354 3344 3355 if test "x$prefix" = "xNONE"; then 3345 3356 cfa_prefix=${ac_default_prefix} -
configure.ac
rb2b44d8 r05f4b85 130 130 AM_CONDITIONAL([BUILD_NO_LIB], [test "x$build_release$build_debug" = "xnono"]) 131 131 AM_CONDITIONAL([BUILD_CONCURRENCY], [test "x$build_threading" = "xyes"]) 132 133 DOifskipcompile='ifeq ($(skipcompile),yes) 134 else' 135 AC_SUBST([DOifskipcompile]) 136 AM_SUBST_NOTMAKE([DOifskipcompile]) 137 138 DOendif='endif' 139 AC_SUBST([DOendif]) 140 AM_SUBST_NOTMAKE([DOendif]) 132 141 133 142 if test "x$prefix" = "xNONE"; then -
src/benchmark/Makefile.am
rb2b44d8 r05f4b85 23 23 STATS = ${TOOLSDIR}stat.py 24 24 repeats = 30 25 skipcompile = no 25 26 TIME_FORMAT = "%E" 26 27 PRINT_FORMAT = %20s: #Comments needed for spacing … … 43 44 %.runquiet : 44 45 @+make $(basename $@) 45 @ ./a.out46 @taskset -c 1 ./a.out 46 47 @rm -f a.out 47 48 … … 59 60 @echo -e '\t"githash": "'${githash}'",' 60 61 @echo -e '\t"arch": "' ${arch} '",' 62 @DOifskipcompile@ 61 63 @echo -e '\t"compile": {' 62 64 @+make compile TIME_FORMAT='%e,' PRINT_FORMAT='\t\t\"%s\" :' 63 65 @echo -e '\t\t"dummy" : {}' 64 66 @echo -e '\t},' 67 @DOendif@ 65 68 @echo -e '\t"ctxswitch": {' 66 69 @echo -en '\t\t"coroutine":' -
src/benchmark/Makefile.in
rb2b44d8 r05f4b85 253 253 STATS = ${TOOLSDIR}stat.py 254 254 repeats = 30 255 skipcompile = no 255 256 TIME_FORMAT = "%E" 256 257 PRINT_FORMAT = %20s: #Comments needed for spacing … … 459 460 %.runquiet : 460 461 @+make $(basename $@) 461 @ ./a.out462 @taskset -c 1 ./a.out 462 463 @rm -f a.out 463 464 … … 473 474 @echo -e '\t"githash": "'${githash}'",' 474 475 @echo -e '\t"arch": "' ${arch} '",' 476 @DOifskipcompile@ 475 477 @echo -e '\t"compile": {' 476 478 @+make compile TIME_FORMAT='%e,' PRINT_FORMAT='\t\t\"%s\" :' 477 479 @echo -e '\t\t"dummy" : {}' 478 480 @echo -e '\t},' 481 @DOendif@ 479 482 @echo -e '\t"ctxswitch": {' 480 483 @echo -en '\t\t"coroutine":'
Note: See TracChangeset
for help on using the changeset viewer.