Skip to content

Commit

Permalink
Fix OmitFramePointer value reversal in vs gen.
Browse files Browse the repository at this point in the history
  • Loading branch information
psychonic committed Jan 26, 2025
1 parent 545cebd commit 7736f4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ambuild2/frontend/v2_2/vs/export_vcxproj.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def export_configuration_options(node, xml, builder):
xml.tag('BasicRuntimeChecks', 'UninitVariables')

if '/Oy-' in flags:
xml.tag('OmitFramePointer', 'true')
xml.tag('OmitFramePointer', 'false')
if '/EHsc' in flags:
xml.tag('ExceptionHandling', 'Sync')

Expand Down

0 comments on commit 7736f4b

Please sign in to comment.