GH-113516: don't set `LDSHARED` when building for WASI (GH-115495)

This commit is contained in:
Brett Cannon 2024-02-14 16:51:23 -08:00 committed by GitHub
parent 468430189d
commit 18343c0985
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 2 deletions

View File

@ -0,0 +1 @@
Don't set ``LDSHARED`` when building for WASI.

View File

@ -55,7 +55,6 @@ if command -v ccache >/dev/null 2>&1; then
CXX="ccache ${CXX}"
fi
LDSHARED="${WASI_SDK_PATH}/bin/wasm-ld"
AR="${WASI_SDK_PATH}/bin/llvm-ar"
RANLIB="${WASI_SDK_PATH}/bin/ranlib"

View File

@ -165,7 +165,7 @@ def wasi_sdk_env(context):
wasi_sdk_path = context.wasi_sdk_path
sysroot = wasi_sdk_path / "share" / "wasi-sysroot"
env = {"CC": "clang", "CPP": "clang-cpp", "CXX": "clang++",
"LDSHARED": "wasm-ld", "AR": "llvm-ar", "RANLIB": "ranlib"}
"AR": "llvm-ar", "RANLIB": "ranlib"}
for env_var, binary_name in list(env.items()):
env[env_var] = os.fsdecode(wasi_sdk_path / "bin" / binary_name)