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 005489c commit a90c5abCopy full SHA for a90c5ab
emcc.py
@@ -2645,8 +2645,10 @@ def check_memory_setting(setting):
2645
if settings.PTHREADS:
2646
settings.INITIAL_MEMORY += 50 * 1024 * 1024
2647
2648
- if settings.USE_OFFSET_CONVERTER and settings.WASM2JS:
2649
- exit_with_error('wasm2js is not compatible with USE_OFFSET_CONVERTER (see #14630)')
+ if settings.USE_OFFSET_CONVERTER:
+ if settings.WASM2JS:
2650
+ exit_with_error('wasm2js is not compatible with USE_OFFSET_CONVERTER (see #14630)')
2651
+ settings.DEFAULT_LIBRARY_FUNCS_TO_INCLUDE.append('$UTF8ArrayToString')
2652
2653
if sanitize & UBSAN_SANITIZERS:
2654
if '-fsanitize-minimal-runtime' in newargs:
0 commit comments