2012-11-21 22:28:15 +00:00
|
|
|
|
2012-11-27 10:24:18 +00:00
|
|
|
/* 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)
|
|
|
|
*/
|
2012-11-21 22:28:15 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
global:
|
|
|
|
*;
|
2012-11-27 10:24:18 +00:00
|
|
|
*_boost*;
|
2012-11-21 22:28:15 +00:00
|
|
|
local:
|
|
|
|
*llvm*;
|
|
|
|
*LLVM*;
|
2012-11-27 10:24:18 +00:00
|
|
|
*boost*;
|
2012-11-21 22:28:15 +00:00
|
|
|
};
|
|
|
|
|