Skip to content

Commit

Permalink
deps: luajit: disable dynasm line number insertion on windows
Browse files Browse the repository at this point in the history
msvc doesn't like the line number notation that dynasm does so disable
it.
  • Loading branch information
philips committed Jul 6, 2012
1 parent d39d2cb commit 5e5d298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/luajit.gyp
Expand Up @@ -312,7 +312,7 @@
'DASM_FLAGS': ['-D', 'P64']
}],
['OS == "win"', {
'DASM_FLAGS': ['-D', 'WIN']
'DASM_FLAGS': ['-D', 'WIN', '-L']
}],
],
'DASM_FLAGS': [ '-D', 'JIT', '-D', 'FPU' ],
Expand Down

0 comments on commit 5e5d298

Please sign in to comment.