Changes in benchmark/Makefile.am [41cca44:0c1b566]
- File:
-
- 1 edited
-
benchmark/Makefile.am (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/Makefile.am
r41cca44 r0c1b566 33 33 TIME_FORMAT = "%E" 34 34 PRINT_FORMAT = %20s: #Comments needed for spacing 35 36 LIBFIBRE_DIR ?= /home/tdelisle/software/KOS/src/ 35 37 36 38 .NOTPARALLEL: … … 109 111 110 112 ## ========================================================================================================= 111 CTXSWITCH_DEPEND =\113 ctxswitch$(EXEEXT): \ 112 114 loop.run \ 113 115 function.run \ … … 119 121 ctxswitch-upp_coroutine.run \ 120 122 ctxswitch-upp_thread.run \ 123 -ctxswitch-kos_fibre.run \ 124 -ctxswitch-kos_fibre2.run \ 121 125 ctxswitch-goroutine.run \ 122 126 ctxswitch-java_thread.run 123 127 124 if WITH_LIBFIBRE 125 CTXSWITCH_DEPEND += \ 126 ctxswitch-kos_fibre.run \ 127 ctxswitch-kos_fibre2.run 128 128 ctxswitch-pthread$(EXEEXT): 129 @$(COMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/pthreads.c 130 131 ctxswitch-cfa_coroutine$(EXEEXT): 132 @$(CFACOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/cfa_cor.c 133 134 ctxswitch-cfa_thread$(EXEEXT): 135 @$(CFACOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/cfa_thrd.c 136 137 ctxswitch-cfa_thread2$(EXEEXT): 138 @$(CFACOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/cfa_thrd2.c 139 140 ctxswitch-upp_coroutine$(EXEEXT): 141 @$(UPPCOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/upp_cor.cc 142 143 ctxswitch-upp_thread$(EXEEXT): 144 @$(UPPCOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/upp_thrd.cc 129 145 130 146 ctxswitch-kos_fibre$(EXEEXT): … … 133 149 ctxswitch-kos_fibre2$(EXEEXT): 134 150 @$(CXXCOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/kos_fibre2.cpp -I$(LIBFIBRE_DIR) -lfibre 135 endif136 137 ctxswitch$(EXEEXT): $(CTXSWITCH_DEPEND)138 139 ctxswitch-pthread$(EXEEXT):140 @$(COMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/pthreads.c141 142 ctxswitch-cfa_coroutine$(EXEEXT):143 @$(CFACOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/cfa_cor.c144 145 ctxswitch-cfa_thread$(EXEEXT):146 @$(CFACOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/cfa_thrd.c147 148 ctxswitch-cfa_thread2$(EXEEXT):149 @$(CFACOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/cfa_thrd2.c150 151 ctxswitch-upp_coroutine$(EXEEXT):152 @$(UPPCOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/upp_cor.cc153 154 ctxswitch-upp_thread$(EXEEXT):155 @$(UPPCOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/upp_thrd.cc156 151 157 152 ctxswitch-goroutine$(EXEEXT):
Note:
See TracChangeset
for help on using the changeset viewer.