summaryrefslogtreecommitdiff
path: root/scripts/build-all.py
diff options
context:
space:
mode:
authorSatya Durga Srinivasu Prabhala <satyap@codeaurora.org>2017-05-30 16:03:32 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2020-06-23 00:21:18 -0700
commitcfcf36aeff347519bbc5f4436b1d4a77e89f316d (patch)
tree43a322c39a4ec51387888a33080e38d171799f8b /scripts/build-all.py
parent608b49953008ddcc425d3d04baede47bcb657270 (diff)
scripts: build-all.py: append llvm to the config file
To detect that the Kernel is being compiled with llvm, append llvm to the config file. Change-Id: Iba2f4f83f5ab091c7906dc66ad11cc88bcdfe2b9 Signed-off-by: Satya Durga Srinivasu Prabhala <satyap@codeaurora.org>
Diffstat (limited to 'scripts/build-all.py')
-rwxr-xr-xscripts/build-all.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-all.py b/scripts/build-all.py
index a3ac915099c1..61ee2b9aaa55 100755
--- a/scripts/build-all.py
+++ b/scripts/build-all.py
@@ -325,7 +325,7 @@ def scan_configs():
if 'CROSS_COMPILE64' in os.environ:
for p in arch64_pats:
for n in glob.glob('arch/arm64/configs/' + p):
- name = os.path.basename(n)[:-10] + "-64"
+ name = os.path.basename(n)[:-10] + "-llvm" + "-64"
names.append(Builder(name, n))
return names