Skip to content

Commit

Permalink
Fix typo in AMBuildScript causing warnings in debug configuration lea…
Browse files Browse the repository at this point in the history
…ving some options ignored.
  • Loading branch information
psychonic committed Jun 24, 2014
1 parent 8a215ed commit abcdc55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AMBuildScript
Expand Up @@ -190,7 +190,7 @@ class MMSConfig(object):
if cxx.behavior == 'gcc':
cfg.cflags += ['-g3']
elif cxx.behavior == 'msvc':
cfg.cflags += ['/Od, /RTC1']
cfg.cflags += ['/Od', '/RTC1']

# This needs to be after our optimization flags which could otherwise disable it.
if cxx.name == 'msvc':
Expand Down

0 comments on commit abcdc55

Please sign in to comment.