cmake: Apple Silicon macOS에서 CMAKE_SIZEOF_VOID_P가 비어 있는 이유는 무엇입니까?

cmake: Apple Silicon macOS에서 CMAKE_SIZEOF_VOID_P가 비어 있는 이유는 무엇입니까?

한 가지 약속 cmake은 크로스 플랫폼 호환성입니다. 그렇다면 아래 코드가 CMAKE_SIZEOF_VOID_PApple Silicon macOS에서 값을 인쇄하지 않는 이유는 무엇입니까?

문서 sizeofvoid.cmake:

cmake_minimum_required(VERSION 3.2)
message(STATUS "size of void pointer: ${CMAKE_SIZEOF_VOID_P}")

주문하다:

cmake -P sizeofvoid.cmake

산출:

-- size of void pointer:

관련 정보