From 05004769b75fa4fdd4e8aa19f325d9632bee331b Mon Sep 17 00:00:00 2001 From: idriskalp Date: Thu, 9 Jan 2020 20:41:07 +0300 Subject: [PATCH] llvm fix --- programming/build/llvm/actions.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/programming/build/llvm/actions.py b/programming/build/llvm/actions.py index 2c77bf96eb..9e8c046a8a 100755 --- a/programming/build/llvm/actions.py +++ b/programming/build/llvm/actions.py @@ -36,13 +36,13 @@ def setup(): shelltools.system("tar xf ../compiler-rt-%s.src.tar.xz -C projects" % get.srcVERSION()) shelltools.move("projects/compiler-rt-%s.src" % get.srcVERSION(), "projects/compiler-rt") - shelltools.export("CC", "clang") - shelltools.export("CXX", "clang++") + #shelltools.export("CC", "clang") + #shelltools.export("CXX", "clang++") if get.buildTYPE() == "emul32": - shelltools.export("CC", "clang -m32") - shelltools.export("CXX", "clang++ -m32") + #shelltools.export("CC", "clang -m32") + #shelltools.export("CXX", "clang++ -m32") shelltools.export("PKG_CONFIG_PATH","/usr/lib32/pkgconfig") shelltools.makedirs("build")