diff options
| author | Satya Durga Srinivasu Prabhala <satyap@codeaurora.org> | 2017-05-30 16:03:32 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2020-06-23 00:21:18 -0700 |
| commit | cfcf36aeff347519bbc5f4436b1d4a77e89f316d (patch) | |
| tree | 43a322c39a4ec51387888a33080e38d171799f8b /scripts/build-all.py | |
| parent | 608b49953008ddcc425d3d04baede47bcb657270 (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-x | scripts/build-all.py | 2 |
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 |
