Changes in src/benchmark/Makefile.am [d885a58:6810fcb]
- File:
-
- 1 edited
-
src/benchmark/Makefile.am (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/benchmark/Makefile.am
rd885a58 r6810fcb 92 92 93 93 ## ========================================================================================================= 94 loop$(EXEEXT):95 @@BACKEND_CC@ loop.c -DBENCH_N=5000000000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags}96 97 function$(EXEEXT):98 @@BACKEND_CC@ function.c -DBENCH_N=5000000000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags}99 100 fetch_add$(EXEEXT):101 @@BACKEND_CC@ fetch_add.c -DBENCH_N=500000000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags}102 103 ## =========================================================================================================104 94 ctxswitch$(EXEEXT): \ 105 loop.run \106 function.run \107 fetch_add.run \108 95 ctxswitch-pthread.run \ 109 96 ctxswitch-cfa_coroutine.run \ … … 152 139 ## ========================================================================================================= 153 140 mutex$(EXEEXT) :\ 154 loop.run \ 155 function.run \ 156 fetch_add.run \ 141 mutex-function.run \ 142 mutex-fetch_add.run \ 157 143 mutex-pthread_lock.run \ 158 144 mutex-upp.run \ … … 161 147 mutex-cfa4.run \ 162 148 mutex-java_thread.run 149 150 mutex-function$(EXEEXT): 151 @@BACKEND_CC@ mutex/function.c -DBENCH_N=500000000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags} 152 153 mutex-fetch_add$(EXEEXT): 154 @@BACKEND_CC@ mutex/fetch_add.c -DBENCH_N=500000000 -I. -lrt -pthread ${AM_CFLAGS} ${CFLAGS} ${ccflags} 163 155 164 156 mutex-pthread_lock$(EXEEXT):
Note:
See TracChangeset
for help on using the changeset viewer.