Support GLIBC version targeting, example: `cmake -B build -G Ninja --toolchain cmake/x86_64-linux-gnu.2.17.cmake` (You would need to create this file) Because `NAME_WL` was used all extension info was lost, with `NAME_WLE` along with the regex change on the ABI match group we're able to recover and use the full ABI target string from the filename. https://github.com/ziglang/zig/tree/master/lib/libc/glibc#zig-gnu-c-library-glibc-support
65 lines
2.4 KiB
CMake
65 lines
2.4 KiB
CMake
include_guard()
|
|
|
|
if(CMAKE_GENERATOR MATCHES "Visual Studio")
|
|
message(FATAL_ERROR "Visual Studio generator not supported, use: cmake -G Ninja")
|
|
endif()
|
|
|
|
if(NOT DEFINED ZIG_TARGET)
|
|
get_filename_component(PARENT_LIST_DIR "${CMAKE_PARENT_LIST_FILE}" DIRECTORY)
|
|
string(FIND "${CMAKE_CURRENT_LIST_DIR}" "${PARENT_LIST_DIR}" POS)
|
|
if(POS EQUAL 0)
|
|
get_filename_component(ZIG_TARGET "${CMAKE_PARENT_LIST_FILE}" NAME_WLE)
|
|
endif()
|
|
endif()
|
|
|
|
if(NOT ZIG_TARGET MATCHES "^([a-zZ-Z0-9_]+)-([a-zZ-Z0-9_]+)-([a-zZ-Z0-9_.]+)$")
|
|
message(FATAL_ERROR "Expected ZIG_TARGET=<arch>-<os>-<abi>")
|
|
endif()
|
|
|
|
set(ZIG_ARCH ${CMAKE_MATCH_1})
|
|
set(ZIG_OS ${CMAKE_MATCH_2})
|
|
set(ZIG_ABI ${CMAKE_MATCH_3})
|
|
|
|
if(ZIG_OS STREQUAL "linux")
|
|
set(CMAKE_SYSTEM_NAME "Linux")
|
|
elseif(ZIG_OS STREQUAL "windows")
|
|
set(CMAKE_SYSTEM_NAME "Windows")
|
|
elseif(ZIG_OS STREQUAL "macos")
|
|
set(CMAKE_SYSTEM_NAME "Darwin")
|
|
elseif(ZIG_OS STREQUAL "freestanding")
|
|
set(CMAKE_SYSTEM_NAME "Generic")
|
|
elseif(ZIG_OS STREQUAL "uefi")
|
|
set(CMAKE_SYSTEM_NAME "UEFI")
|
|
# Fix compiler detection (lld-link: error: <root>: undefined symbol: EfiMain)
|
|
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY)
|
|
elseif(ZIG_OS STREQUAL "wasi")
|
|
set(CMAKE_SYSTEM_NAME "WASI")
|
|
elseif(ZIG_OS STREQUAL "emscripten")
|
|
set(CMAKE_SYSTEM_NAME "Emscripten")
|
|
else()
|
|
# NOTE: If this happens, add a new case with one of the following system names:
|
|
# https://cmake.org/cmake/help/latest/variable/CMAKE_SYSTEM_NAME.html#system-names-known-to-cmake
|
|
message(FATAL_ERROR "Unknown OS: ${ZIG_OS}")
|
|
endif()
|
|
|
|
set(CMAKE_SYSTEM_VERSION 1)
|
|
set(CMAKE_SYSTEM_PROCESSOR ${ZIG_ARCH})
|
|
|
|
if(CMAKE_HOST_WIN32)
|
|
set(SCRIPT_SUFFIX ".cmd")
|
|
else()
|
|
set(SCRIPT_SUFFIX "")
|
|
endif()
|
|
|
|
# Work around a bug in clangd where 'c++' is reordered on the command line
|
|
set(CMAKE_C_COMPILER "${CMAKE_CURRENT_LIST_DIR}/zig-cc${SCRIPT_SUFFIX}" -target ${ZIG_TARGET})
|
|
set(CMAKE_CXX_COMPILER "${CMAKE_CURRENT_LIST_DIR}/zig-c++${SCRIPT_SUFFIX}" -target ${ZIG_TARGET})
|
|
|
|
# This is working (thanks to Simon for finding this trick)
|
|
set(CMAKE_AR "${CMAKE_CURRENT_LIST_DIR}/zig-ar${SCRIPT_SUFFIX}")
|
|
set(CMAKE_RANLIB "${CMAKE_CURRENT_LIST_DIR}/zig-ranlib${SCRIPT_SUFFIX}")
|
|
set(CMAKE_RC_COMPILER "${CMAKE_CURRENT_LIST_DIR}/zig-rc${SCRIPT_SUFFIX}")
|
|
|
|
# Add custom UEFI platform to module path
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}")
|