mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 06:03:09 +00:00
Make sure huf_decompress is only applied to 64-bit x86.
This commit is contained in:
parent
fd7239cfab
commit
6b13236956
@ -140,7 +140,7 @@ if env["builtin_zstd"]:
|
||||
"decompress/zstd_decompress_block.c",
|
||||
"decompress/zstd_decompress.c",
|
||||
]
|
||||
if env["platform"] in ["android", "ios", "linuxbsd", "macos"]:
|
||||
if env["platform"] in ["android", "ios", "linuxbsd", "macos"] and env["arch"] == "x86_64":
|
||||
# Match platforms with ZSTD_ASM_SUPPORTED in common/portability_macros.h
|
||||
thirdparty_zstd_sources.append("decompress/huf_decompress_amd64.S")
|
||||
thirdparty_zstd_sources = [thirdparty_zstd_dir + file for file in thirdparty_zstd_sources]
|
||||
|
Loading…
Reference in New Issue
Block a user