Index: configure
===================================================================
--- configure	(revision b2b44d808ae1e94cb906efa6dd7aebd115204e3b)
+++ configure	(revision 05f4b852a288aa29df576dc46888fde08739d0c2)
@@ -678,4 +678,6 @@
 CFA_INCDIR
 CFA_PREFIX
+DOendif
+DOifskipcompile
 BUILD_CONCURRENCY_FALSE
 BUILD_CONCURRENCY_TRUE
@@ -3342,4 +3344,13 @@
 
 
+DOifskipcompile='ifeq ($(skipcompile),yes)
+else'
+
+
+
+DOendif='endif'
+
+
+
 if test "x$prefix" = "xNONE"; then
 	cfa_prefix=${ac_default_prefix}
Index: configure.ac
===================================================================
--- configure.ac	(revision b2b44d808ae1e94cb906efa6dd7aebd115204e3b)
+++ configure.ac	(revision 05f4b852a288aa29df576dc46888fde08739d0c2)
@@ -130,4 +130,13 @@
 AM_CONDITIONAL([BUILD_NO_LIB], [test "x$build_release$build_debug" = "xnono"])
 AM_CONDITIONAL([BUILD_CONCURRENCY], [test "x$build_threading" = "xyes"])
+
+DOifskipcompile='ifeq ($(skipcompile),yes)
+else'
+AC_SUBST([DOifskipcompile])
+AM_SUBST_NOTMAKE([DOifskipcompile])
+
+DOendif='endif'
+AC_SUBST([DOendif])
+AM_SUBST_NOTMAKE([DOendif])
 
 if test "x$prefix" = "xNONE"; then
Index: src/benchmark/Makefile.am
===================================================================
--- src/benchmark/Makefile.am	(revision b2b44d808ae1e94cb906efa6dd7aebd115204e3b)
+++ src/benchmark/Makefile.am	(revision 05f4b852a288aa29df576dc46888fde08739d0c2)
@@ -23,4 +23,5 @@
 STATS    = ${TOOLSDIR}stat.py
 repeats  = 30
+skipcompile = no
 TIME_FORMAT = "%E"
 PRINT_FORMAT = %20s: #Comments needed for spacing
@@ -43,5 +44,5 @@
 %.runquiet :
 	@+make $(basename $@)
-	@./a.out
+	@taskset -c 1 ./a.out
 	@rm -f a.out
 
@@ -59,8 +60,10 @@
 	@echo -e '\t"githash": "'${githash}'",'
 	@echo -e '\t"arch": "'   ${arch}   '",'
+@DOifskipcompile@
 	@echo -e '\t"compile": {'
 	@+make compile TIME_FORMAT='%e,' PRINT_FORMAT='\t\t\"%s\" :'
 	@echo -e '\t\t"dummy" : {}'
 	@echo -e '\t},'
+@DOendif@
 	@echo -e '\t"ctxswitch": {'
 	@echo -en '\t\t"coroutine":'
Index: src/benchmark/Makefile.in
===================================================================
--- src/benchmark/Makefile.in	(revision b2b44d808ae1e94cb906efa6dd7aebd115204e3b)
+++ src/benchmark/Makefile.in	(revision 05f4b852a288aa29df576dc46888fde08739d0c2)
@@ -253,4 +253,5 @@
 STATS = ${TOOLSDIR}stat.py
 repeats = 30
+skipcompile = no
 TIME_FORMAT = "%E"
 PRINT_FORMAT = %20s: #Comments needed for spacing
@@ -459,5 +460,5 @@
 %.runquiet :
 	@+make $(basename $@)
-	@./a.out
+	@taskset -c 1 ./a.out
 	@rm -f a.out
 
@@ -473,8 +474,10 @@
 	@echo -e '\t"githash": "'${githash}'",'
 	@echo -e '\t"arch": "'   ${arch}   '",'
+@DOifskipcompile@
 	@echo -e '\t"compile": {'
 	@+make compile TIME_FORMAT='%e,' PRINT_FORMAT='\t\t\"%s\" :'
 	@echo -e '\t\t"dummy" : {}'
 	@echo -e '\t},'
+@DOendif@
 	@echo -e '\t"ctxswitch": {'
 	@echo -en '\t\t"coroutine":'
