mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 22:39:01 +08:00
Only use prebuilt musl libc binary with x86_64 arch (#30364)
* Only use musl libc binary with x86_64 arch * Keep vcpkgUseSystem="ON" for alpine
This commit is contained in:
parent
eecae38da7
commit
9c7c664710
@ -95,7 +95,9 @@ ARCH="$(uname -m)"
|
||||
|
||||
if [ -e /etc/alpine-release ]; then
|
||||
vcpkgUseSystem="ON"
|
||||
vcpkgUseMuslC="ON"
|
||||
if [ "$ARCH" = "x86_64" ]; then
|
||||
vcpkgUseMuslC="ON"
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$UNAME" = "OpenBSD" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user