mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
GH-113516: don't set LDSHARED when building for WASI (GH-115495)
This commit is contained in:
parent
468430189d
commit
18343c0985
3 changed files with 2 additions and 2 deletions
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue