HTML5: Fix warning with Emscripten 3.1.20

And use that version for CI.
This commit is contained in:
Rémi Verschelde 2022-09-05 15:37:33 +02:00 committed by Relintai
parent 7f3a0cbd0a
commit 72f7c01c22
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ on: [push, pull_request]
env: env:
PANDEMONIUM_BASE_BRANCH: master PANDEMONIUM_BASE_BRANCH: master
SCONSFLAGS: verbose=yes warnings=all debug_symbols=no werror=yes SCONSFLAGS: verbose=yes warnings=all debug_symbols=no werror=yes
EM_VERSION: 3.1.10 EM_VERSION: 3.1.20
EM_CACHE_FOLDER: "emsdk-cache" EM_CACHE_FOLDER: "emsdk-cache"
concurrency: concurrency:

View File

@ -151,9 +151,9 @@ def configure(env):
env["ARCOM_POSIX"] = env["ARCOM"].replace("$TARGET", "$TARGET.posix").replace("$SOURCES", "$SOURCES.posix") env["ARCOM_POSIX"] = env["ARCOM"].replace("$TARGET", "$TARGET.posix").replace("$SOURCES", "$SOURCES.posix")
env["ARCOM"] = "${TEMPFILE(ARCOM_POSIX)}" env["ARCOM"] = "${TEMPFILE(ARCOM_POSIX)}"
# All intermediate files are just LLVM bitcode. # All intermediate files are just object files.
env["OBJPREFIX"] = "" env["OBJPREFIX"] = ""
env["OBJSUFFIX"] = ".bc" env["OBJSUFFIX"] = ".o"
env["PROGPREFIX"] = "" env["PROGPREFIX"] = ""
# Program() output consists of multiple files, so specify suffixes manually at builder. # Program() output consists of multiple files, so specify suffixes manually at builder.
env["PROGSUFFIX"] = "" env["PROGSUFFIX"] = ""