♻️ Refactor how rAF/cAF is handled (#6241)
Some checks are pending
Commit Message Check / Check Commit Message (push) Waiting to run

This commit is contained in:
Aitor Moreno
2025-04-15 15:45:28 +02:00
committed by GitHub
parent 99e64ad387
commit 304c44048f
5 changed files with 45 additions and 28 deletions

View File

@@ -7,6 +7,7 @@ else
fi
EMCC_CFLAGS="--no-entry \
--js-library src/js/wapi.js \
-sASSERTIONS=1 \
-sALLOW_TABLE_GROWTH=1 \
-sALLOW_MEMORY_GROWTH=1 \
@@ -33,7 +34,7 @@ else
# -gseparate-dwarf
# -gsplit-dwarf
# -gsource-map
EMCC_CFLAGS="-g $EMCC_CFLAGS -sMALLOC=emmalloc-debug"
EMCC_CFLAGS="-g $EMCC_CFLAGS -sVERBOSE=1 -sMALLOC=emmalloc-debug"
fi
export EMCC_CFLAGS;