blender/source/creator/blender.map
Brecht Van Lommel 629ea82a13 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.
2012-11-21 22:28:15 +00:00

12 lines
118 B
Plaintext

/* on Linux we exclude LLVM symbols, they conflict with Mesa llvmpipe */
{
global:
*;
local:
*llvm*;
*LLVM*;
};