mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 22:59:02 +08:00
[vcpkg] Don't require native tools on arm64 macOS (#15045)
This commit is contained in:
parent
a9df4e2a81
commit
7f328aa390
@ -239,7 +239,7 @@ int main(const int argc, const char* const* const argv)
|
||||
load_config(fs);
|
||||
|
||||
#if (defined(__aarch64__) || defined(__arm__) || defined(__s390x__) || defined(_M_ARM) || defined(_M_ARM64)) && \
|
||||
!defined(_WIN32)
|
||||
!defined(_WIN32) && !defined(__APPLE__)
|
||||
if (!System::get_environment_variable("VCPKG_FORCE_SYSTEM_BINARIES").has_value())
|
||||
{
|
||||
Checks::exit_with_message(
|
||||
|
Loading…
Reference in New Issue
Block a user