From ebd1bb5c3316912b0e16a4af77ac7804ba39a407 Mon Sep 17 00:00:00 2001 From: idriskalp Date: Thu, 9 Jan 2020 20:44:00 +0300 Subject: [PATCH] llvm fix --- programming/build/llvm/actions.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/programming/build/llvm/actions.py b/programming/build/llvm/actions.py index 9e8c046a8a..1a2864500e 100755 --- a/programming/build/llvm/actions.py +++ b/programming/build/llvm/actions.py @@ -38,11 +38,14 @@ def setup(): #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("PKG_CONFIG_PATH","/usr/lib32/pkgconfig") shelltools.makedirs("build")