Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ccc529ec authored by Satya Durga Srinivasu Prabhala's avatar Satya Durga Srinivasu Prabhala Committed by Gerrit - the friendly Code Review server
Browse files

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: default avatarSatya Durga Srinivasu Prabhala <satyap@codeaurora.org>
parent e468e9c0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -326,7 +326,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