diff --git a/experiment.rc b/experiment.rc
index c6b5886cd085c25b0d7963e02cf796e86ef16070..1830baa69d092ab85d87a3fc610f95a477aad97c 100644
--- a/experiment.rc
+++ b/experiment.rc
@@ -1,4 +1,5 @@
 MOOBENCH_ARCHIVE="${BASE_DIR}/tools/benchmark/build/distributions/benchmark.tar"
+COMPILE_RESULTS_ARCHIVE="${BASE_DIR}/tools/compile-results/build/distributions/compile-results.tar"
 
 export SLEEP_TIME=30
 export NUM_OF_LOOPS=10
diff --git a/setup.sh b/setup.sh
index c7e99880c3be50e3f6e2df15d47183abf4ac8b91..ef75e6411edd76407a732a1deb0a9cc500be0ea4 100755
--- a/setup.sh
+++ b/setup.sh
@@ -40,4 +40,8 @@ checkFile moobench "${MOOBENCH_ARCHIVE}"
 tar -xpf "${MOOBENCH_ARCHIVE}"
 MOOBENCH_BIN="${BASE_DIR}/benchmark/bin/benchmark"
 
+checkFile compile-result "${COMPILE_RESULT_ARCHIVE}"
+tar -xpf "${COMPILE_RESULT_ARCHIVE}"
+COMPILE_RESULT_BIN="${BASE_DIR}/compile-results/bin/compile-results"
+
 # end
diff --git a/test.rc b/test.rc
index a4b5bfe4b3fe02a7aca4d930ec5cee03f77b922a..f7913e3b16b906f1893c84a87a74ceb24f24671b 100644
--- a/test.rc
+++ b/test.rc
@@ -1,4 +1,5 @@
 MOOBENCH_ARCHIVE="${BASE_DIR}/tools/benchmark/build/distributions/benchmark.tar"
+COMPILE_RESULTS_ARCHIVE="${BASE_DIR}/tools/compile-results/build/distributions/compile-results.tar"
 
 export SLEEP_TIME=10
 export NUM_OF_LOOPS=1