mesa ver. bump

This commit is contained in:
Rmys
2020-11-27 11:53:44 +03:00
committed by GitHub
parent 430adc91c1
commit 289567de0c
+8 -3
View File
@@ -48,11 +48,16 @@ def setup():
if get.buildTYPE() == "emul32":
options += " -Dlmsensors=disabled --native-file crossfile.ini -Dllvm_libdir=/usr/lib32 -Dzstd=disabled"
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: options += " -Dgallium-omx=bellagio -Dlmsensors=enabled -Dzstd=enabled"
else:
shelltools.export("CC", "clang")
shelltools.export("CXX", "clang++")
options += " -Dgallium-omx=bellagio -Dlmsensors=enabled -Dzstd=enabled"
pisitools.ldflags.add("-fuse-ld=lld")
mesontools.configure(options)