From ff38b46ce9d3c7e712dc6a34b94d23356e650680 Mon Sep 17 00:00:00 2001 From: Prathamesh Kulkarni Date: Tue, 19 Mar 2019 16:08:10 +0530 Subject: 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 --- round-robin.sh | 8 ++++++++ 1 file changed, 8 insertions(+) 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="" -- cgit v1.2.3