aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormobiletc-prebuild <mobiletc-prebuild@google.com>2024-04-18 08:00:18 +0000
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2024-04-29 18:00:23 +0000
commit8aaa290dcb7730e988e469eb53580c6db16d83bd (patch)
treed12eb55b56b9cc0124595f4a5f43089cf834d1b1
parent34dc396fec67479ff8db78418e9883b3cb178908 (diff)
downloadtoolchain-utils-upstream-main.tar.gz
compiler_wrapper: automatic syncupstream-main
This CL automatically brings toolchain-utils' compiler_wrapper/ directory in sync with chromiumos-overlay's. Please see go/crostc-repo/+/main:sync_compiler_wrapper_within_cros.sh for more info on this process. BUG=None TEST=None Change-Id: I75a18452b70cdecaab99fe24a49e04cff07066dd Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/toolchain-utils/+/5463852 Reviewed-by: Ryan Beltran <ryanbeltran@chromium.org> Tested-by: mobiletc-prebuild Role Account <mobiletc-prebuild@google.com> Auto-Submit: mobiletc-prebuild Role Account <mobiletc-prebuild@google.com> Commit-Queue: Ryan Beltran <ryanbeltran@chromium.org> Tested-by: Ryan Beltran <ryanbeltran@chromium.org>
-rw-r--r--compiler_wrapper/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler_wrapper/build.py b/compiler_wrapper/build.py
index bea888db..093bb548 100644
--- a/compiler_wrapper/build.py
+++ b/compiler_wrapper/build.py
@@ -23,7 +23,7 @@ def parse_args():
"--use_ccache", required=True, choices=["true", "false"]
)
parser.add_argument(
- "--use_llvm_next", required=True, choices=["true", "false"]
+ "--use_llvm_next", default="false", choices=["true", "false"]
)
parser.add_argument("--output_file", required=True, type=str)
parser.add_argument(