Changes in src/benchmark/Makefile.am [6810fcb:1134b80]
- File:
-
- 1 edited
-
src/benchmark/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/benchmark/Makefile.am
r6810fcb r1134b80 96 96 ctxswitch-cfa_coroutine.run \ 97 97 ctxswitch-cfa_thread.run \ 98 ctxswitch-cfa_thread2.run \99 98 ctxswitch-upp_coroutine.run \ 100 99 ctxswitch-upp_thread.run \ 101 -ctxswitch-kos_fibre.run \102 -ctxswitch-kos_fibre2.run \103 100 ctxswitch-goroutine.run \ 104 101 ctxswitch-java_thread.run 105 102 103 ctxswitch-cfa_coroutine$(EXEEXT): 104 @${CC} ctxswitch/cfa_cor.c -DBENCH_N=50000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} 105 106 ctxswitch-cfa_thread$(EXEEXT): 107 @${CC} ctxswitch/cfa_thrd.c -DBENCH_N=50000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} 108 109 ctxswitch-upp_coroutine$(EXEEXT): 110 @u++ ctxswitch/upp_cor.cc -DBENCH_N=50000000 -I. -nodebug -lrt -quiet ${AM_CFLAGS} ${CFLAGS} ${ccflags} 111 112 ctxswitch-upp_thread$(EXEEXT): 113 @u++ ctxswitch/upp_thrd.cc -DBENCH_N=50000000 -I. -nodebug -lrt -quiet ${AM_CFLAGS} ${CFLAGS} ${ccflags} 114 106 115 ctxswitch-pthread$(EXEEXT): 107 @@BACKEND_CC@ ctxswitch/pthreads.c -DBENCH_N=50000000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags} 108 109 ctxswitch-cfa_coroutine$(EXEEXT): 110 @${CC} ctxswitch/cfa_cor.c -DBENCH_N=50000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} 111 112 ctxswitch-cfa_thread$(EXEEXT): 113 @${CC} ctxswitch/cfa_thrd.c -DBENCH_N=50000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} 114 115 ctxswitch-cfa_thread2$(EXEEXT): 116 @${CC} ctxswitch/cfa_thrd2.c -DBENCH_N=50000000 -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags} 117 118 ctxswitch-upp_coroutine$(EXEEXT): 119 @u++ ctxswitch/upp_cor.cc -DBENCH_N=50000000 -I. -nodebug -lrt -quiet ${AM_CFLAGS} ${CFLAGS} ${ccflags} 120 121 ctxswitch-upp_thread$(EXEEXT): 122 @u++ ctxswitch/upp_thrd.cc -DBENCH_N=50000000 -I. -nodebug -lrt -quiet ${AM_CFLAGS} ${CFLAGS} ${ccflags} 123 124 ctxswitch-kos_fibre$(EXEEXT): 125 @${CXX} ctxswitch/kos_fibre.cpp -DBENCH_N=50000000 -I. -I/home/tdelisle/software/KOS/src/ -g -O2 -lfibre -lpthread -lrt 126 127 ctxswitch-kos_fibre2$(EXEEXT): 128 @${CXX} ctxswitch/kos_fibre2.cpp -DBENCH_N=50000000 -I. -I/home/tdelisle/software/KOS/src/ -g -O2 -lfibre -lpthread -lrt 116 @@BACKEND_CC@ ctxswitch/pthreads.c -DBENCH_N=50000000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags} 129 117 130 118 ctxswitch-goroutine$(EXEEXT):
Note:
See TracChangeset
for help on using the changeset viewer.