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
The text was updated successfully, but these errors were encountered:
Znerole
changed the title
invalid cmake syntax (use of CACHE INTERNAL with list command)
[bug] invalid cmake syntax (use of CACHE INTERNAL with list command)
Feb 7, 2022
When updating
CMAKE_FIND_ROOT_PATH
, invalid syntax is used:ios-cmake/ios.toolchain.cmake
Line 882 in 14092d3
CACHE INTERNAL ""
is not allowed withlist
. As a result,CMAKE_FIND_ROOT_PATH
contains the literal entries "CACHE
" and "INTERNAL
".Since with CMake I'm always a bit at a loss on what belongs to the cache, I have not idea how to correctly fix this. Possible fixes would be:
or maybe just
The text was updated successfully, but these errors were encountered: