Changeset 1d72a11 for benchmark/Makefile.am
- Timestamp:
- Feb 19, 2020, 4:06:08 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 13d2dac, 40cac90
- Parents:
- 32ce9b7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/Makefile.am
r32ce9b7 r1d72a11 30 30 BENCH_V_UPP = $(__bench_v_UPP_$(__quiet)) 31 31 BENCH_V_GOC = $(__bench_v_GOC_$(__quiet)) 32 BENCH_V_PY = $(__bench_v_PY_$(__quiet)) 32 33 BENCH_V_RUSTC = $(__bench_v_RUSTC_$(__quiet)) 33 34 BENCH_V_NODEJS = $(__bench_v_NODEJS_$(__quiet)) … … 47 48 __bench_v_UPP_verbose = $(AM_V_UPP) 48 49 __bench_v_GOC_verbose = $(AM_V_GOC) 49 __bench_v_RUSTC_verbose = $(AM_V_RUSTC) 50 __bench_v_PY_verbose = $(AM_V_PY) 51 __bench_v_RUSTC_verbose = $(AM_V_RUST) 50 52 __bench_v_NODEJS_verbose = $(AM_V_NODEJS) 51 53 __bench_v_JAVAC_verbose = $(AM_V_JAVAC) … … 179 181 $(srcdir)/fixcsv.sh $@ 180 182 181 # basic.csv:182 # echo "$@"183 # echo "generator,coroutine,thread" > $@184 # +make basic-cfa_generator.runquiet >> $@ && echo -n ',' >> $@185 # +make basic-cfa_coroutine.runquiet >> $@ && echo -n ',' >> $@186 # +make basic-cfa_thread.runquiet >> $@187 # $(srcdir)/fixcsv.sh $@188 189 183 ctxswitch.csv: 190 184 echo "building $@" … … 292 286 293 287 ctxswitch-python_coroutine$(EXEEXT): 294 echo "#!/bin/sh" > a.out288 $(BENCH_V_PY)echo "#!/bin/sh" > a.out 295 289 echo "python3.7 $(srcdir)/ctxswitch/python_cor.py" >> a.out 296 290 chmod a+x a.out 297 291 298 292 ctxswitch-nodejs_coroutine$(EXEEXT): 299 echo "#!/bin/sh" > a.out293 $(BENCH_V_NODEJS)echo "#!/bin/sh" > a.out 300 294 echo "nodejs $(srcdir)/ctxswitch/node_cor.js" >> a.out 301 295 chmod a+x a.out 302 296 303 297 ctxswitch-nodejs_await$(EXEEXT): 304 echo "#!/bin/sh" > a.out298 $(BENCH_V_NODEJS)echo "#!/bin/sh" > a.out 305 299 echo "nodejs $(srcdir)/ctxswitch/node_await.js" >> a.out 306 300 chmod a+x a.out … … 455 449 456 450 creation-python_coroutine$(EXEEXT): 457 echo "#!/bin/sh" > a.out451 $(BENCH_V_PY)echo "#!/bin/sh" > a.out 458 452 echo "python3.7 $(srcdir)/creation/python_cor.py" >> a.out 459 453 chmod a+x a.out 460 454 461 455 creation-nodejs_coroutine$(EXEEXT): 462 echo "#!/bin/sh" > a.out456 $(BENCH_V_NODEJS)echo "#!/bin/sh" > a.out 463 457 echo "nodejs $(srcdir)/creation/node_cor.js" >> a.out 464 458 chmod a+x a.out
Note: See TracChangeset
for help on using the changeset viewer.