diff options
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 292b8b9122..bff18afd53 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -531,8 +531,14 @@ class WindowsManifest(ViewerManifest): self.path("msvcr140d.dll") self.path("msvcp140d.dll") else: + # SL-12205: For reasons not yet diagnosed, an early build of + # the VS 2017 viewer requires VS 2013 runtime DLLs as well as + # VS 2017 runtime DLLs. + self.path("msvcr120.dll") + self.path("msvcp120.dll") self.path("msvcr140.dll") self.path("msvcp140.dll") + self.path("vcruntime140.dll") # SLVoice executable with self.prefix(src=os.path.join(pkgdir, 'bin', 'release')): @@ -606,8 +612,11 @@ class WindowsManifest(ViewerManifest): # MSVC DLLs needed for CEF and have to be in same directory as plugin with self.prefix(src=os.path.join(self.args['build'], os.pardir, 'sharedlibs', 'Release')): + self.path("msvcp120.dll") + self.path("msvcr120.dll") self.path("msvcp140.dll") self.path("msvcr140.dll") + self.path("vcruntime140.dll") # CEF files common to all configurations with self.prefix(src=os.path.join(pkgdir, 'resources')): |