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
There is actually a check if we are building for iOS that causes this warning to not be emitted and CPUINFO_SUPPORTED_PLATFORM be set to true, however this is not the case on OSX, is this on purpose?
The text was updated successfully, but these errors were encountered:
Just throwing in my two cents, I'm not entirely sure of the history of the line you've referenced. It looks like they were trying to fix the iOS build but the context of what was broken is lost.
Looking at CMake documentation, CMAKE_SYSTEM_PROCESSOR should be defined if you're not cross-compiling. I'm assuming that means you are and thus need a "a CMAKE_TOOLCHAIN_FILE should set the CMAKE_SYSTEM_PROCESSOR variable to match target architecture". Arguably, it may be the case that iOS needs this as well.
Perhaps you can provide some details of how you're configuring your build here for the maintainers?
CMAKE_SYSTEM_PROCESSOR is not set by cmake on apple platforms which causes this warning:
at this line:
cpuinfo/CMakeLists.txt
Line 90 in ef63460
There is actually a check if we are building for iOS that causes this warning to not be emitted and
CPUINFO_SUPPORTED_PLATFORM
be set to true, however this is not the case on OSX, is this on purpose?The text was updated successfully, but these errors were encountered: