You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I change ios.toolchain.cmake Line:829 "set(CMAKE_OSX_DEPLOYMENT_TARGET ${DEPLOYMENT_TARGET})" to "set(CMAKE_OSX_DEPLOYMENT_TARGET ${DEPLOYMENT_TARGET} CACHE STRING "Minimum OS X deployment version")",
then it became ok!
The text was updated successfully, but these errors were encountered:
Describe the bug
ios-cmake-4.4.1, build with "-DPLATFORM=MAC -DARCHS=x86_64", top display 10.13, but actualy -target x86_64-apple-macos13.3.
To Reproduce
Steps to reproduce the behavior:
-- Using minimum deployment version: 10.13 (SDK version: 13.3)",
but bottom actualy "-target x86_64-apple-macos13.3".
Expected behavior
-target x86_64-apple-macos10.13
Environment
Clue:
https://cmake.org/cmake/help/latest/variable/CMAKE_OSX_DEPLOYMENT_TARGET.html#variable:CMAKE_OSX_DEPLOYMENT_TARGET
This variable should be set as a CACHE entry (or else CMake may remove it while initializing a cache entry of the same name) unless policy CMP0126 is set to NEW.
I change ios.toolchain.cmake Line:829 "set(CMAKE_OSX_DEPLOYMENT_TARGET ${DEPLOYMENT_TARGET})" to "set(CMAKE_OSX_DEPLOYMENT_TARGET ${DEPLOYMENT_TARGET} CACHE STRING "Minimum OS X deployment version")",
then it became ok!
The text was updated successfully, but these errors were encountered: