Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2012-11-22 02:28:15 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-11-22 02:28:15 +0400
commit629ea82a13cc073c9941f1512d5fad97883542a7 (patch)
tree77c2806fb2549ed6e04acd3185a5400dbf338952 /source/creator/blender.map
parent031230265c979991e10abfc8ad1d70d49445fcab (diff)
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.
Diffstat (limited to 'source/creator/blender.map')
-rw-r--r--source/creator/blender.map11
1 files changed, 11 insertions, 0 deletions
diff --git a/source/creator/blender.map b/source/creator/blender.map
new file mode 100644
index 00000000000..dc7bc3151e8
--- /dev/null
+++ b/source/creator/blender.map
@@ -0,0 +1,11 @@
+
+/* on Linux we exclude LLVM symbols, they conflict with Mesa llvmpipe */
+
+{
+global:
+ *;
+local:
+ *llvm*;
+ *LLVM*;
+};
+