We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 022c4db commit 08b70e5Copy full SHA for 08b70e5
emcc.py
@@ -923,7 +923,7 @@ def detect_fixed_language_mode(args):
923
shared.Settings.SEPARATE_ASM = os.path.basename(asm_target)
924
925
if 'EMCC_STRICT' in os.environ:
926
- shared.Settings.STRICT = int(os.environ.get('EMCC_STRICT'))
+ shared.Settings.STRICT = os.environ.get('EMCC_STRICT') != '0'
927
928
STRICT = ([None] + filter(lambda x: x.startswith('STRICT='), settings_changes))[-1]
929
if STRICT:
0 commit comments