You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Web: Workaround Emscripten 3.1.42+ LTO regression
Fixes #80010.
(cherry picked from commit b064008c07)
This commit is contained in:
committed by
Yuri Sizov
parent
9fb23c4e56
commit
6122cf3178
@@ -121,6 +121,11 @@ def configure(env: "Environment"):
|
||||
else:
|
||||
env.Append(CCFLAGS=["-flto"])
|
||||
env.Append(LINKFLAGS=["-flto"])
|
||||
# Workaround https://github.com/emscripten-core/emscripten/issues/19781.
|
||||
cc_version = get_compiler_version(env)
|
||||
cc_semver = (int(cc_version["major"]), int(cc_version["minor"]), int(cc_version["patch"]))
|
||||
if cc_semver >= (3, 1, 42):
|
||||
env.Append(LINKFLAGS=["-Wl,-u,scalbnf"])
|
||||
|
||||
# Sanitizers
|
||||
if env["use_ubsan"]:
|
||||
|
||||
Reference in New Issue
Block a user