Skip to content

Commit 160d2d2

Browse files
committed
build, tools, win: add .S files support to GYP
Makes GYP properly handle .S files. Fixes: nodejs/node-v8#89
1 parent 69cc58d commit 160d2d2

File tree

1 file changed

+3
-0
lines changed
  • tools/gyp/pylib/gyp/generator

1 file changed

+3
-0
lines changed

tools/gyp/pylib/gyp/generator/msvs.py

+3
Original file line numberDiff line numberDiff line change
@@ -2171,6 +2171,9 @@ def _MapFileToMsBuildSourceType(source, rule_dependencies,
21712171
elif ext == '.asm':
21722172
group = 'masm'
21732173
element = 'MASM'
2174+
elif ext == '.S':
2175+
group = 'masm'
2176+
element = 'MASM'
21742177
elif ext == '.idl':
21752178
group = 'midl'
21762179
element = 'Midl'

0 commit comments

Comments
 (0)