From f4a9e9c128681e8228a2bf596c9d0cf178f1d8d4 Mon Sep 17 00:00:00 2001 From: Rmys Date: Sat, 28 Nov 2020 10:01:17 +0300 Subject: [PATCH] mesa rebuild --- x11/library/mesa/actions.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/x11/library/mesa/actions.py b/x11/library/mesa/actions.py index 25fd893608..e65fc37bab 100644 --- a/x11/library/mesa/actions.py +++ b/x11/library/mesa/actions.py @@ -48,18 +48,18 @@ def setup(): if get.buildTYPE() == "emul32": options += " -Dlmsensors=disabled --native-file crossfile.ini -Dllvm_libdir=/usr/lib32 -Dzstd=disabled" - 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.export("LLVM_CONFIG","/usr/bin/llvm-config-32") else: - shelltools.export("CC", "clang") - shelltools.export("CXX", "clang++") + #shelltools.export("CC", "clang") + #shelltools.export("CXX", "clang++") options += " -Dgallium-omx=bellagio -Dlmsensors=enabled -Dzstd=enabled" - pisitools.ldflags.add("-fuse-ld=lld") + #pisitools.ldflags.add("-fuse-ld=lld") mesontools.configure(options) def build():