summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>2019-03-04 19:14:57 +0530
committerPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>2019-03-04 19:14:57 +0530
commit72f19c6aa80c3eceb41a4c2a4281cfe37cc80638 (patch)
treec1f1918ad671ebe008ae80dee210576b268a4fbd
parentc446534f170a55a10315a9e372fe25cadb7a9cf4 (diff)
Avoid passing --enable bootstrap for specialized bootstrap configs.
Change-Id: I6db1b9e30e9b8df0cdd615e139dcc2c489219fb5
-rw-r--r--round-robin.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/round-robin.sh b/round-robin.sh
index 7f6c0370..cfbfe117 100644
--- a/round-robin.sh
+++ b/round-robin.sh
@@ -210,23 +210,23 @@ build_abe ()
;;
bootstrap_ubsan)
project=gcc
- stage="--enable bootstrap --set buildconfig=bootstrap-ubsan"
+ stage="--set buildconfig=bootstrap-ubsan"
;;
bootstrap_O3)
project=gcc
- stage="--enable bootstrap --set buildconfig=bootstrap-O3"
+ stage="--set buildconfig=bootstrap-O3"
;;
bootstrap_O1)
project=gcc
- stage="--enable bootstrap --set buildconfig=bootstrap-O1"
+ stage="--set buildconfig=bootstrap-O1"
;;
bootstrap_lto)
project=gcc
- stage="--enable bootstrap --set buildconfig=bootstrap-lto"
+ stage="--set buildconfig=bootstrap-lto"
;;
bootstrap_debug)
project=gcc
- stage="--enable bootstrap --set buildconfig=bootstrap-debug"
+ stage="--set buildconfig=bootstrap-debug"
;;
*)
project=$component