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

Commit 4aca867d authored by Satya Durga Srinivasu Prabhala's avatar Satya Durga Srinivasu Prabhala
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 2aac1357
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -318,12 +318,12 @@ def scan_configs():
        )
    for p in arch_pats:
        for n in glob.glob('arch/arm/configs/' + p):
            name = os.path.basename(n)[:-10]
            name = os.path.basename(n)[:-10] + "-llvm"
            names.append(Builder(name, n))
    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