[Bf-blender-cvs] [54c87706924] master: Fix error using CUDA in plug-ins on Linux/macOS, hide our CUDA symbols

Brecht Van Lommel noreply at git.blender.org
Tue Mar 17 12:23:57 CET 2020


Commit: 54c877069245ab41f74c9d545b040355a2cf0937
Author: Brecht Van Lommel
Date:   Mon Mar 16 23:15:24 2020 +0100
Branches: master
https://developer.blender.org/rB54c877069245ab41f74c9d545b040355a2cf0937

Fix error using CUDA in plug-ins on Linux/macOS, hide our CUDA symbols

Better solution will be to hide all symbols by default, but this works for now.

===================================================================

M	source/creator/blender.map
M	source/creator/osx_locals.map

===================================================================

diff --git a/source/creator/blender.map b/source/creator/blender.map
index 1a9c995e684..4c34dea3338 100644
--- a/source/creator/blender.map
+++ b/source/creator/blender.map
@@ -21,5 +21,6 @@ local:
 	*boost*;
 	*SDL*;
 	*embree*;
+	cu*;
 };
 
diff --git a/source/creator/osx_locals.map b/source/creator/osx_locals.map
index f3a242f6896..3382ac954e2 100644
--- a/source/creator/osx_locals.map
+++ b/source/creator/osx_locals.map
@@ -6,4 +6,5 @@
 *LLVM*
 *OSL*
 *embree*
+cu*



More information about the Bf-blender-cvs mailing list