Skip to content

Commit

Permalink
resolve access violation error for MARMASM
Browse files Browse the repository at this point in the history
  • Loading branch information
vmoroz committed Jan 27, 2023
1 parent 2de21bd commit ffe17f8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tools/v8_gypfiles/directory.build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<ItemDefinitionGroup>
<MARMASM>
<!-- Works around a situation when we preprocess file in $(IntDir). In such case the output file is the same as input file
and we get access violation. Appending '.pp' file extension to the output file name resolves this issue. -->
<PreprocessedFileName Condition="'%(PreprocessedFileName)' == ''">$(IntDir)%(FileName)%(Extension).pp</PreprocessedFileName>
</MARMASM>
</ItemDefinitionGroup>
</Project>

0 comments on commit ffe17f8

Please sign in to comment.