summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>2021-12-22 18:07:30 +0530
committerPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>2021-12-22 18:07:30 +0530
commit32d9cc543102b51b100eafd36121a92212df05c3 (patch)
tree00f5628c52e86ca52952e684f9644c7fdf35452c
parent093d461af8efc8764cd5362c9af566cc419ba97d (diff)
tcwg_bmk-build.sh: Remove VECT from bmk_cflags.
Change-Id: I8d1eaca94d11aa8bd9433be60d3bb072a88a0755
-rwxr-xr-xtcwg_bmk-build.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/tcwg_bmk-build.sh b/tcwg_bmk-build.sh
index 9bbd52b8..96189cbc 100755
--- a/tcwg_bmk-build.sh
+++ b/tcwg_bmk-build.sh
@@ -180,7 +180,14 @@ benchmark ()
mkdir "$(pwd)"/bin
local bmk_flags bmk_ldflags reboot run_profile
- bmk_flags="$(echo $bmk_cflags | sed -e "s/_/ -/g" -e "s/LTO/flto/g")"
+
+ # Use of _VECT in cflags is a historic artefact when we passed special
+ # flags to generate vectorization data.
+ #
+ # TODO: We need to move vectorization $ci_configs to a new $ci_project,
+ # since there is expected to be few regressions common to both speed
+ # and vectorization benchmarking.
+ bmk_flags="$(echo $bmk_cflags | sed -e "s/_VECT//g" -e "s/_/ -/g" -e "s/LTO/flto/g")"
case "$bmk_cflags" in
"-Os"*|"-Oz"*)