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@gmail.com>2018-02-28 05:00:29 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-02-28 05:03:12 +0300
commit8a7eb6c4c1677cca8349ac250cd8f3c8ccdbd385 (patch)
tree6d0c65e1aba4f6c1e1a25ad774f23e07a1525655 /extern/cuew/src
parent7990105407bc97a1c5a7302ddc0ee36d8d9e9ae0 (diff)
Update CUEW to latest version
Some Linux distribution have only libcuda.so.1, not libcuda.so.
Diffstat (limited to 'extern/cuew/src')
-rw-r--r--extern/cuew/src/cuew.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/cuew/src/cuew.c b/extern/cuew/src/cuew.c
index 329dfbad3aa..ad216e66452 100644
--- a/extern/cuew/src/cuew.c
+++ b/extern/cuew/src/cuew.c
@@ -338,7 +338,7 @@ static int cuewCudaInit(void) {
/* Default installation path. */
const char *cuda_paths[] = {"/usr/local/cuda/lib/libcuda.dylib", NULL};
#else
- const char *cuda_paths[] = {"libcuda.so", NULL};
+ const char *cuda_paths[] = {"libcuda.so", "libcuda.so.1", NULL};
#endif
static int initialized = 0;
static int result = 0;