-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Ninja to 1.12.1. #39260
Update Ninja to 1.12.1. #39260
Conversation
Fixes microsoft#38494 Resurrects microsoft#38538 Co-authored-by: xb284524239 <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The build_arch
thing may come from vcpkg_configure_meson
. But meson uses a different terminology.
Cf. git grep 'ARM|arm'
.
else() | ||
set(build_arch $ENV{PROCESSOR_ARCHITECTURE}) | ||
endif() | ||
if((build_arch MATCHES "^(ARM|arm)64$") OR (build_arch MATCHES "^(ARM|arm)$")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we use arm64 binaries on ^(ARM|arm)$
?
(This regex is used a few times with VCPKG_TARGET_ARCHITECTURE
but never for the host.)
if(DEFINED ENV{PROCESSOR_ARCHITEW6432}) | ||
set(build_arch $ENV{PROCESSOR_ARCHITEW6432}) | ||
else() | ||
set(build_arch $ENV{PROCESSOR_ARCHITECTURE}) | ||
endif() | ||
if((build_arch MATCHES "^(ARM|arm)64$") OR (build_arch MATCHES "^(ARM|arm)$")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if(DEFINED ENV{PROCESSOR_ARCHITEW6432}) | |
set(build_arch $ENV{PROCESSOR_ARCHITEW6432}) | |
else() | |
set(build_arch $ENV{PROCESSOR_ARCHITECTURE}) | |
endif() | |
if((build_arch MATCHES "^(ARM|arm)64$") OR (build_arch MATCHES "^(ARM|arm)$")) | |
if(DEFINED ENV{PROCESSOR_ARCHITEW6432}) | |
set(HOST_ARCH $ENV{PROCESSOR_ARCHITEW6432}) | |
else() | |
set(HOST_ARCH $ENV{PROCESSOR_ARCHITECTURE}) | |
endif() | |
if(HOST_ARCH MATCHES "^(ARM|arm)64$") |
"host" is the term used in vcpkg. HOST_ARCH
is the variable used for the other platforms here. Non-64 arm
is not a relevant host arch for windows
I was surprised to see new android errors. Now I checked the fine print. The errors are related to module support in CMake since 3.28. Module support is enabled under some conditions. For Ninja generators, it needs at least Ninja 1.11. This is what is changed by this PR. The immediate mitigation might be adding https://cmake.org/cmake/help/latest/manual/cmake-cxxmodules.7.html |
What's the status on this? Currently having issues with Ninja 1.10 hitting the 260 character path length limit on Windows when trying to build the gRPC port, and Ninja 1.12 would fix this. |
Hello, first you can manually download With this, you should be able to use ninja version 1.12.1 in vcpkg. |
Fixes #38494
Resurrects #38538