Open
Description
CMAKE_SYSTEM_PROCESSOR is not set by cmake on apple platforms which causes this warning:
MESSAGE(WARNING
"Target processor architecture is not specified. "
"cpuinfo will compile, but cpuinfo_initialize() will always fail.")
at this line:
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?