Add workaround for emscripten >= 3.1.47 LTO build
(cherry picked from commit 656bc22e28
)
This commit is contained in:
parent
934e4a616e
commit
a671234483
1 changed files with 3 additions and 0 deletions
|
@ -206,6 +206,9 @@ def configure(env):
|
|||
# Workaround https://github.com/emscripten-core/emscripten/issues/19781.
|
||||
if cc_semver >= (3, 1, 42) and cc_semver < (3, 1, 46):
|
||||
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["gdnative_enabled"]:
|
||||
if cc_semver < (2, 0, 10):
|
||||
|
|
Loading…
Add table
Reference in a new issue