From 4bcd1e9938311a806c5be67a122e64a92cf73a26 Mon Sep 17 00:00:00 2001 From: bferturk Date: Wed, 6 Apr 2016 08:43:01 +0300 Subject: [PATCH] llvm pkgconfig --- programming/build/llvm/actions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programming/build/llvm/actions.py b/programming/build/llvm/actions.py index f1a2ef7b91..739ab071b7 100644 --- a/programming/build/llvm/actions.py +++ b/programming/build/llvm/actions.py @@ -33,12 +33,12 @@ def setup(): shelltools.export("CC", "gcc") shelltools.export("CXX", "g++") - shelltools.export("PKG_CONFIG_PATH","/usr/lib32/pkgconfig") + if get.buildTYPE() == "emul32": shelltools.export("CC", "gcc -m32") shelltools.export("CXX", "g++ -m32") - + shelltools.export("PKG_CONFIG_PATH","/usr/lib32/pkgconfig") shelltools.makedirs("build")