mirror of
https://github.com/FEX-Emu/FEX.git
synced 2024-12-15 01:49:00 +00:00
b35a514ea6
These are already linked in by default with clang, sp having these set here only served to prevent the -nostdlib compiler option from having any effect, as CMake will always explicitly include the libs in the compiler cmdline.
18 lines
1013 B
CMake
18 lines
1013 B
CMake
set(MINGW_TRIPLE "" CACHE STRING "MinGW compiler target architecture triple")
|
|
|
|
set(CMAKE_RC_COMPILER ${MINGW_TRIPLE}-windres)
|
|
set(CMAKE_C_COMPILER ${MINGW_TRIPLE}-clang)
|
|
set(CMAKE_CXX_COMPILER ${MINGW_TRIPLE}-clang++)
|
|
set(CMAKE_DLLTOOL ${MINGW_TRIPLE}-dlltool)
|
|
|
|
# Compile everything as static to avoid requiring the MinGW runtime libraries, force page aligned sections so that
|
|
# debug symbols work correctly, and disable loop alignment to workaround an LLVM bug
|
|
# (https://github.com/llvm/llvm-project/issues/47432)
|
|
set(CMAKE_SHARED_LINKER_FLAGS_INIT "-static -static-libgcc -static-libstdc++ -Wl,--file-alignment=4096,/mllvm:-align-loops=1")
|
|
set(CMAKE_EXE_LINKER_FLAGS_INIT "-static -static-libgcc -static-libstdc++ -Wl,--file-alignment=4096,/mllvm:-align-loops=1")
|
|
set(CMAKE_C_STANDARD_LIBRARIES "" CACHE STRING "" FORCE)
|
|
set(CMAKE_CXX_STANDARD_LIBRARIES "" CACHE STRING "" FORCE)
|
|
set(CMAKE_STANDARD_LIBRARIES "" CACHE STRING "" FORCE)
|
|
set(CMAKE_SYSTEM_NAME Windows)
|
|
set(CMAKE_SYSTEM_PROCESSOR ${MINGW_TRIPLE})
|