summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>2019-02-28 16:27:11 +0530
committerPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>2019-02-28 16:27:11 +0530
commitc446534f170a55a10315a9e372fe25cadb7a9cf4 (patch)
tree948f1990c7e432e061441bd40954faf7afbb1ace
parent67aa4e14f5ef2224db9cb0fee3e9dcc21d4e1fca (diff)
Add support for bootstrap-O1, bootstrap-lto and bootstrap-debug configs.
Change-Id: Ic97842bbabe683981da22b5ace4f92a048bbcf2e
-rw-r--r--round-robin.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/round-robin.sh b/round-robin.sh
index 48729ed8..7f6c0370 100644
--- a/round-robin.sh
+++ b/round-robin.sh
@@ -216,6 +216,18 @@ build_abe ()
project=gcc
stage="--enable bootstrap --set buildconfig=bootstrap-O3"
;;
+ bootstrap_O1)
+ project=gcc
+ stage="--enable bootstrap --set buildconfig=bootstrap-O1"
+ ;;
+ bootstrap_lto)
+ project=gcc
+ stage="--enable bootstrap --set buildconfig=bootstrap-lto"
+ ;;
+ bootstrap_debug)
+ project=gcc
+ stage="--enable bootstrap --set buildconfig=bootstrap-debug"
+ ;;
*)
project=$component
stage=""