diff --git a/programming/build/llvm/actions.py b/programming/build/llvm/actions.py index 1a2864500e..d7cc416570 100755 --- a/programming/build/llvm/actions.py +++ b/programming/build/llvm/actions.py @@ -36,16 +36,16 @@ 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", "gcc") - shelltools.export("CXX", "g++") + shelltools.export("CC", "clang") + shelltools.export("CXX", "clang++") + #shelltools.export("CC", "gcc") + #shelltools.export("CXX", "g++") if get.buildTYPE() == "emul32": - #shelltools.export("CC", "clang -m32") - #shelltools.export("CXX", "clang++ -m32") - shelltools.export("CC", "gcc -m32") - shelltools.export("CXX", "g++ -m32") + shelltools.export("CC", "clang -m32") + shelltools.export("CXX", "clang++ -m32") + #shelltools.export("CC", "gcc -m32") + #shelltools.export("CXX", "g++ -m32") shelltools.export("PKG_CONFIG_PATH","/usr/lib32/pkgconfig") shelltools.makedirs("build")