We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 793c603 commit ff935b4Copy full SHA for ff935b4
core/AMBuilder
@@ -77,10 +77,8 @@ for sdk_name in SM.sdks:
77
vs_year = ''
78
if msvc_ver == 1800:
79
vs_year = '2013'
80
- elif msvc_ver == 1900:
+ elif 1900 <= msvc_ver < 2000:
81
vs_year = '2015'
82
- elif msvc_ver == 1910:
83
- vs_year = '2017'
84
else:
85
raise Exception('Cannot find libprotobuf for MSVC version "' + str(compiler.version) + '"')
86
0 commit comments