Fix 33149: LLVM caused startup crash on linux systems using Mesa llvmpipe.

Now we hide the LLVM symbols with an ld version script to avoid conflicts.
This commit is contained in:
Brecht Van Lommel
2012-11-21 22:28:15 +00:00
parent 031230265c
commit 629ea82a13
7 changed files with 23 additions and 5 deletions

View File

@@ -298,3 +298,7 @@ BF_INSTALLDIR='../install/linux'
#Link against pthread
PLATFORM_LINKFLAGS = ['-pthread']
#Fix for LLVM conflict with Mesa llvmpipe
if WITH_BF_LLVM:
PLATFORM_LINKFLAGS += ['-Wl,--version-script=source/creator/blender.map']