Skip to content
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

[FR] push/pop required policies in cmake toolchain file #2032

Closed
andreya108 opened this issue Jun 20, 2024 · 16 comments
Closed

[FR] push/pop required policies in cmake toolchain file #2032

andreya108 opened this issue Jun 20, 2024 · 16 comments
Assignees

Comments

@andreya108
Copy link

Description

Trying to build project with new NDK we got the following for each component:

-- The C compiler identification is Clang 18.0.1
-- The CXX compiler identification is Clang 18.0.1
CMake Error at /home/andrey/android-sdk-linux/ndk/27.0.11902837/build/cmake/flags.cmake:50 (if):
  if given arguments:

    "hwaddress" "IN_LIST" "ANDROID_SANITIZE"

  Unknown arguments specified
Call Stack (most recent call first):
  /snap/cmake/1399/share/cmake-3.29/Modules/Platform/Android-Clang.cmake:23 (include)
  /snap/cmake/1399/share/cmake-3.29/Modules/Platform/Android-Clang-C.cmake:1 (include)
  /snap/cmake/1399/share/cmake-3.29/Modules/CMakeCInformation.cmake:48 (include)
  CMakeLists.txt:3 (project)


-- Configuring incomplete, errors occurred!

Adding

if(POLICY CMP0057)                                                                                                                                                          
  cmake_policy(SET CMP0057 NEW)
endif()

to the beginning of file ndk/27.0.11902837/build/cmake/flags.cmake solves the problem.

Why it is not set there (https://android.googlesource.com/platform/ndk/+/refs/heads/main/build/cmake/flags.cmake) by default?

P.S.: using $ANDROID_SDK/cmake/3.22.1 gives the same result

Affected versions

r27

Canary version

No response

Host OS

Linux

Host OS version

Ubuntu 20.04

Affected ABIs

arm64-v8a

Build system

CMake

Other build system

No response

minSdkVersion

26

Device API level

No response

@andreya108 andreya108 added the bug label Jun 20, 2024
@DanAlbert
Copy link
Member

Why it is not set there (https://android.googlesource.com/platform/ndk/+/refs/heads/main/build/cmake/flags.cmake) by default?

Because we should not be making policy decisions on your behalf. Any policies we set would change the behavior of your CMakeLists.txt.

Presumably your project either doesn't have a cmake_minimum_required, or has a very old one that's not actually correct? Anything 3.3 or newer would enable that policy by default. That's not something toolchain files are supposed to do (that's my understanding from reading the docs and having spoken with the CMake owner a few times), so we don't set it in the toolchain file, but if you're building android you minimum cannot be lower than 3.6. The minimum may even be higher than that, but I know for sure that you must use at least 3.6.

https://cmake.org/cmake/help/latest/command/cmake_minimum_required.html says that we could probably add something like:

if (CMAKE_MINIMUM_REQUIRED LESS 3.6)
  message(FATAL_ERROR "Android requires cmake_minimum_required(3.6) or greater")
endif()

That's probably the best we can do. Probably a worthwhile improvement, but doesn't actually fix any bugs (and might break some builds if I'm wrong and there's actually a safe minimum between 3.3 and 3.6), so I'm not going to do that so late in the cycle in r27. We can do that for r28 though.

@DanAlbert DanAlbert added enhancement and removed bug labels Jun 25, 2024
@DanAlbert DanAlbert changed the title [BUG] NDK r27-beta2: cmake policy CMP0057 is not set to NEW while IN_LIST is used in flags.cmake [FR] warn user if their cmake_minimum_required setting is incompatible with android Jun 25, 2024
@DanAlbert
Copy link
Member

(if any of that analysis is wrong, that's the best I can do without a repro case, and that's why we always ask for one, so upload one if you think I'm wrong)

@FeodorFitsner
Copy link

I had the same error while building libjpeg. Indeed, changing minimum CMake version in CMakeLists.txt worked (it's 2.8.12 in the source archive):

cmake_minimum_required(VERSION 3.3)

@DanAlbert
Copy link
Member

Okay, so it's a project that wasn't written for android, and for non-android targets it doesn't require anything newer than 2.8.12, but CMake (for good reasons) doesn't allow per-target minimum versions. That makes sense. I don't think we can do any better than a warning for this case, but definitely the warning would be useful.

@DanAlbert DanAlbert self-assigned this Jul 10, 2024
okuoku added a commit to okuoku/em2native-integ that referenced this issue Jul 24, 2024
NDK27 requires CMake 3.6 or later
( android/ndk#2032 )
basilgello added a commit to basilgello/rustdesk that referenced this issue Aug 2, 2024
Should fix flakes caused by android/ndk#2032

Signed-off-by: Vasyl Gello <[email protected]>
rustdesk-adb-backup pushed a commit to rustdesk-adb-backup/rustdesk that referenced this issue Aug 2, 2024
Should fix flakes caused by android/ndk#2032

Signed-off-by: Vasyl Gello <[email protected]>
rustdesk pushed a commit to rustdesk/rustdesk that referenced this issue Aug 2, 2024
* vcpkg: bump opus to 1.5.2

Should fix flakes caused by android/ndk#2032

Signed-off-by: Vasyl Gello <[email protected]>

* vcpkg: actually use cached artifacts

Signed-off-by: Vasyl Gello <[email protected]>

* Print all vcpkg log files on errors

Signed-off-by: Vasyl Gello <[email protected]>

---------

Signed-off-by: Vasyl Gello <[email protected]>
@dg0yt
Copy link

dg0yt commented Aug 4, 2024

if (CMAKE_MINIMUM_REQUIRED LESS 3.6)
  message(FATAL_ERROR "Android requires cmake_minimum_required(3.6) or greater")
endif()

That's probably the best we can do. Probably a worthwhile improvement, but doesn't actually fix any bugs (and might break some builds if I'm wrong and there's actually a safe minimum between 3.3 and 3.6), so I'm not going to do that so late in the cycle in r27. We can do that for r28 though.

This topic comes up in vcpkg now.
The current state is: An error occurs in the toolchain cmake code, without good diagnostics for the uninitiated, for some ports.
What could have been done for better UX is: Check if cmake policy CMP0057 is set to NEW, and suggest setting CMAKE_POLICY_DEFAULT_CMP0057 to NEW as a config option, in an early FATAL_ERROR.
(Admittedly, not yet tested with CMAKE_POLICY_DEFAULT_CMP0057.)

@DanAlbert
Copy link
Member

It's already on the todo list for r28, fwiw. I don't need additional convincing :)

What could have been done for better UX is: Check if cmake policy CMP0057 is set to NEW, and suggest setting CMAKE_POLICY_DEFAULT_CMP0057 to NEW as a config option, in an early FATAL_ERROR.
(Admittedly, not yet tested with CMAKE_POLICY_DEFAULT_CMP0057.)

But we know we need 3.6, and requiring 3.6 already covers that case. To do it with only policy requirements, we'd just have to list all the policies we require between the first version of CMake and 3.6, which is just a really verbose way of requiring 3.6 (for us and for users).

@dg0yt
Copy link

dg0yt commented Aug 6, 2024

But we know we need 3.6

I can understand that the toolchain needs at least CMake 3.6, and I wouldn't mind if it even needs a higher version. But I can't believe that it needs (almost) all of CMP001 to CMP0065. CMake 3.5 and 3.6 even didn't add new policies.

@dg0yt
Copy link

dg0yt commented Aug 8, 2024

Some of CMake's modules (e.g. CMakeFindBinUtils.cmake) simply use

cmake_policy(PUSH)
cmake_policy(SET CMP0057 NEW)
...
cmake_policy(POP)

@dg0yt
Copy link

dg0yt commented Aug 8, 2024

Some of CMake's modules (e.g. CMakeFindBinUtils.cmake) simply use

cmake_policy(PUSH)
cmake_policy(SET CMP0057 NEW)
...
cmake_policy(POP)

Applying these three lines to NDK's flags.cmake brings the number of failing ports in vcpkg down from app. 250 to less than 10.

(The remaining failures include one clang++ crash, for port gdal.)

NDK 27 seems to be reaching vcpkg users in GH actions now.

@DanAlbert
Copy link
Member

NDK 27 seems to be reaching vcpkg users in GH actions now.

Then roll back to r26d until we can fix it. It's going to be a while still until r27b comes out.

@DanAlbert
Copy link
Member

cmake_policy(PUSH)
cmake_policy(SET CMP0057 NEW)
...
cmake_policy(POP)

Ah, I didn't realize we could push/pop those. We can do that instead. Thanks! The downside is that we don't have any idea what the list of policies we need is, but we can start with 57 and continue updating the list as people uncover issues.

@dg0yt
Copy link

dg0yt commented Aug 8, 2024

Only 0057 IN_LIST is needed at the moment - that's the result of the vcpkg CI run.

Then roll back to r26d until we can fix it. It's going to be a while still until r27b comes out.

Well, "me" can't change Github.

@DanAlbert
Copy link
Member

Neither can I. Use a docker image so github can't change your NDK out from underneath you?

@dg0yt
Copy link

dg0yt commented Aug 8, 2024

Dear GHA users who strand here: The other NDK is still in the images, e.g. https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md#android. You only need to switch some environment variables.

@DanAlbert DanAlbert changed the title [FR] warn user if their cmake_minimum_required setting is incompatible with android [FR] push/pop required policies in cmake toolchain file Aug 8, 2024
@DanAlbert
Copy link
Member

Huh, we actually do attempt to deal with this. There's a cmake_minimum_required(VERSION 3.6.0) right at the top of the toolchain file. I guess that doesn't do anything?

My first attempt at push/pop didn't work because I didn't do it in flags.cmake (because there are other places and I didn't want to miss them), because apparently this is automatic: https://cmake.org/cmake/help/latest/command/cmake_policy.html#cmake-policy-stack:

CMake keeps policy settings on a stack, so changes made by the cmake_policy command affect only the top of the stack. A new entry on the policy stack is managed automatically for each subdirectory to protect its parents and siblings. CMake also manages a new entry for scripts loaded by include() and find_package() commands except when invoked with the NO_POLICY_SCOPE option

and

Calls to the cmake_minimum_required(VERSION)... commands influence only the current top of the policy stack.

Which probably explains why the cmake_minimum_required in the toolchain file does nothing.

But also all this means that my concerns above aren't actually a problem in the first place so we don't even need the push/pop dance. We can just set this in the files that use IN_LIST and it won't infect callers.

@DanAlbert
Copy link
Member

In fact, we don't even need to mess with policies. We just needed another cmake_minimum_required(VERSION 3.6.0) in flags.cmake.

https://android-review.googlesource.com/c/platform/ndk/+/3211647 should fix this. The test I added now passes, anyway.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Merged
Status: Merged
Development

No branches or pull requests

4 participants