forked from bartvdbraak/blender
f39464870c
to try to avoid conflicts with Mesa GL llvmpipe on linux.
23 lines
384 B
Plaintext
23 lines
384 B
Plaintext
|
|
/* on Linux we exclude LLVM symbols, they conflict with Mesa llvmpipe
|
|
* we also keep boost's symbols local, since some python modules could
|
|
* be using boost as well (mainly that's for lux render)
|
|
*/
|
|
|
|
{
|
|
global:
|
|
*;
|
|
*_boost*;
|
|
local:
|
|
*llvm*;
|
|
*LLVM*;
|
|
decodeInstruction;
|
|
ForceStackAlign;
|
|
_Jv_RegisterClasses;
|
|
Name;
|
|
NumNamedVarArgParams;
|
|
X86CompilationCallback*;
|
|
*boost*;
|
|
};
|
|
|