Changeset 7a8f5246
- Timestamp:
- Mar 22, 2019, 10:52:46 AM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- d4a60ac
- Parents:
- 17129659
- Location:
- benchmark
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/Makefile.am
r17129659 r7a8f5246 22 22 23 23 AM_CFLAGS = -O2 -Wall -I$(srcdir) -lrt -pthread 24 AM_CFAFLAGS = -quiet -in-tree -nodebug 24 AM_CFAFLAGS = -quiet -in-tree -nodebug -std=c++14 25 25 AM_UPPFLAGS = -quiet -nodebug -multi 26 26 … … 139 139 $(BENCH_V_CC)$(COMPILE) -DBENCH_N=500000000 $(srcdir)/fetch_add.c 140 140 141 tls-fetch_add$(EXEEXT): 142 $(BENCH_V_CC)$(COMPILE) -DBENCH_N=500000000 $(srcdir)/tls-fetch_add.c 143 141 144 ## ========================================================================================================= 142 145 CTXSWITCH_DEPEND = \ … … 144 147 function.run \ 145 148 fetch_add.run \ 149 tls-fetch_add.run \ 146 150 ctxswitch-pthread.run \ 147 151 ctxswitch-cfa_coroutine.run \ -
benchmark/Makefile.in
r17129659 r7a8f5246 372 372 # applies to both programs 373 373 AM_CFLAGS = -O2 -Wall -I$(srcdir) -lrt -pthread 374 AM_CFAFLAGS = -quiet -in-tree -nodebug 374 AM_CFAFLAGS = -quiet -in-tree -nodebug -std=c++14 375 375 AM_UPPFLAGS = -quiet -nodebug -multi 376 376 BENCH_V_CC = $(__bench_v_CC_$(__quiet)) … … 402 402 dummy_SOURCES = dummyC.c dummyCXX.cpp 403 403 CTXSWITCH_DEPEND = loop.run function.run fetch_add.run \ 404 ctxswitch-pthread.run ctxswitch-cfa_coroutine.run \405 ctxswitch-cfa_ thread.run ctxswitch-cfa_thread2.run \406 ctxswitch- upp_coroutine.run ctxswitch-upp_thread.run \407 ctxswitch- goroutine.run ctxswitch-java_thread.run \408 $(am__append_1)404 tls-fetch_add.run ctxswitch-pthread.run \ 405 ctxswitch-cfa_coroutine.run ctxswitch-cfa_thread.run \ 406 ctxswitch-cfa_thread2.run ctxswitch-upp_coroutine.run \ 407 ctxswitch-upp_thread.run ctxswitch-goroutine.run \ 408 ctxswitch-java_thread.run $(am__append_1) 409 409 testdir = $(top_srcdir)/tests 410 410 all: all-am … … 799 799 $(BENCH_V_CC)$(COMPILE) -DBENCH_N=500000000 $(srcdir)/fetch_add.c 800 800 801 tls-fetch_add$(EXEEXT): 802 $(BENCH_V_CC)$(COMPILE) -DBENCH_N=500000000 $(srcdir)/tls-fetch_add.c 803 801 804 @WITH_LIBFIBRE_TRUE@ctxswitch-kos_fibre$(EXEEXT): 802 805 @WITH_LIBFIBRE_TRUE@ $(BENCH_V_CXX)$(CXXCOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/kos_fibre.cpp -I$(LIBFIBRE_DIR) -lfibre
Note: See TracChangeset
for help on using the changeset viewer.