Windows: Add VS2015 Update 3 build support for GYP
This commit is contained in:
parent
e29124d62f
commit
61abe4a841
|
@ -33,6 +33,9 @@ patches = [
|
|||
{
|
||||
# Fix ninja output for localization directories on OS X.
|
||||
# https://bugs.chromium.org/p/gyp/issues/detail?id=331
|
||||
#
|
||||
# Write environment.* files with the correct SDK version on Windows.
|
||||
# https://bugs.chromium.org/p/chromium/issues/detail?id=634788
|
||||
'name': 'gyp_331',
|
||||
'path': '../tools/gyp/pylib/',
|
||||
},
|
||||
|
|
|
@ -1,3 +1,26 @@
|
|||
diff --git gyp/MSVSVersion.py gyp/MSVSVersion.py
|
||||
index edaf6ee..c213df8 100644
|
||||
--- gyp/MSVSVersion.py
|
||||
+++ gyp/MSVSVersion.py
|
||||
@@ -92,7 +92,8 @@ class VisualStudioVersion(object):
|
||||
# VS2013 and later, non-Express have a x64-x86 cross that we want
|
||||
# to prefer.
|
||||
return [os.path.normpath(
|
||||
- os.path.join(self.path, 'VC/vcvarsall.bat')), 'amd64_x86']
|
||||
+ os.path.join(self.path, 'VC/vcvarsall.bat')), 'amd64_x86', \
|
||||
+ '10.0.10586.0']
|
||||
# Otherwise, the standard x86 compiler.
|
||||
return [os.path.normpath(
|
||||
os.path.join(self.path, 'Common7/Tools/vsvars32.bat'))]
|
||||
@@ -106,7 +107,7 @@ class VisualStudioVersion(object):
|
||||
os.environ.get('PROCESSOR_ARCHITEW6432') == 'AMD64'):
|
||||
arg = 'amd64'
|
||||
return [os.path.normpath(
|
||||
- os.path.join(self.path, 'VC/vcvarsall.bat')), arg]
|
||||
+ os.path.join(self.path, 'VC/vcvarsall.bat')), arg, '10.0.10586.0']
|
||||
|
||||
def SetupScript(self, target_arch):
|
||||
script_data = self._SetupScriptInternal(target_arch)
|
||||
diff --git gyp/generator/ninja.py gyp/generator/ninja.py
|
||||
index 9cfc706..932dc86 100644
|
||||
--- gyp/generator/ninja.py
|
||||
|
|
Loading…
Reference in New Issue