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
path: root/extern
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-12-04 18:35:16 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-12-04 18:35:16 +0300
commitb9b88d59ddde50bd1de1f7f96b1c91cbdaf7497b (patch)
tree763faa6c9a34be6d3e7539e2a02ee38240ec7be5 /extern
parentcf2e35fcfe31aa2c1836f51d1206901b4be6aeba (diff)
parentf63da3dcf59f87b34aa916b2c65ce5a40a48fd92 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'extern')
-rw-r--r--extern/cuew/src/cuew.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/extern/cuew/src/cuew.c b/extern/cuew/src/cuew.c
index ad216e66452..a22f6fda570 100644
--- a/extern/cuew/src/cuew.c
+++ b/extern/cuew/src/cuew.c
@@ -619,7 +619,11 @@ static int cuewNvrtcInit(void) {
/* Library paths. */
#ifdef _WIN32
/* Expected in c:/windows/system or similar, no path needed. */
- const char *nvrtc_paths[] = {"nvrtc64_80.dll", "nvrtc64_90.dll", "nvrtc64_91.dll", NULL};
+ const char *nvrtc_paths[] = {"nvrtc64_80.dll",
+ "nvrtc64_90.dll",
+ "nvrtc64_91.dll",
+ "nvrtc64_10_0.dll",
+ NULL};
#elif defined(__APPLE__)
/* Default installation path. */
const char *nvrtc_paths[] = {"/usr/local/cuda/lib/libnvrtc.dylib", NULL};