diff --git a/programming/build/llvm/actions.py b/programming/build/llvm/actions.py
index 7105292c59..4df0195486 100755
--- a/programming/build/llvm/actions.py
+++ b/programming/build/llvm/actions.py
@@ -40,19 +40,19 @@ 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++")
else:
shelltools.system("tar xf ../clang-%s.src.tar.xz -C tools" % get.srcVERSION())
shelltools.move("tools/clang-%s.src" % get.srcVERSION(), "tools/clang")
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")
diff --git a/programming/build/llvm/pspec.xml b/programming/build/llvm/pspec.xml
index 94293ed005..5ec73b85d7 100755
--- a/programming/build/llvm/pspec.xml
+++ b/programming/build/llvm/pspec.xml
@@ -31,7 +31,8 @@
cmake
binutils
- llvm-clang
+ gcc
+