summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>2019-03-19 16:08:10 +0530
committerPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>2019-03-19 16:14:51 +0530
commitff38b46ce9d3c7e712dc6a34b94d23356e650680 (patch)
tree933ab864a991a82d6aa0ed738a3a3df4a7b5cf17
parent278e12dee52779d31cc1b10d39f1dda5b814cf48 (diff)
Add support for profiled and LTO profiled bootstrap configs.
Ideally we want profiledbootstrap for each bootstrap config, but I am not sure if that's supported in practice. Thus in the patch, profiledbootstrap is enabled only for normal and LTO which are known to work. Change-Id: I0652a8ee4b64f1e9a66d59481bea52eb21d18a99
-rw-r--r--round-robin.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/round-robin.sh b/round-robin.sh
index f207d4a0..967c70de 100644
--- a/round-robin.sh
+++ b/round-robin.sh
@@ -247,6 +247,14 @@ build_abe ()
project=gcc
stage="--set buildconfig=bootstrap-debug"
;;
+ bootstrap_profiled)
+ project=gcc
+ stage="--set buildconfig=bootstrap --set makeflags=profiledbootstrap"
+ ;;
+ bootstrap_profiled_lto)
+ project=gcc
+ stage="--set buildconfig=bootstrap-lto --set makeflags=profiledbootstrap"
+ ;;
*)
project=$component
stage=""