Add workaround for emscripten >= 3.1.47 LTO build
(cherry picked from commit 656bc22e28
)
This commit is contained in:
parent
59b0a8da4f
commit
00e3aa9b07
|
@ -210,6 +210,9 @@ def configure(env: "Environment"):
|
||||||
# Workaround https://github.com/emscripten-core/emscripten/issues/19781.
|
# Workaround https://github.com/emscripten-core/emscripten/issues/19781.
|
||||||
if cc_semver >= (3, 1, 42) and cc_semver < (3, 1, 46):
|
if cc_semver >= (3, 1, 42) and cc_semver < (3, 1, 46):
|
||||||
env.Append(LINKFLAGS=["-Wl,-u,scalbnf"])
|
env.Append(LINKFLAGS=["-Wl,-u,scalbnf"])
|
||||||
|
# Workaround https://github.com/emscripten-core/emscripten/issues/16836.
|
||||||
|
if cc_semver >= (3, 1, 47):
|
||||||
|
env.Append(LINKFLAGS=["-Wl,-u,_emscripten_run_callback_on_thread"])
|
||||||
|
|
||||||
if env["dlink_enabled"]:
|
if env["dlink_enabled"]:
|
||||||
if cc_semver < (3, 1, 14):
|
if cc_semver < (3, 1, 14):
|
||||||
|
|
Loading…
Reference in New Issue