mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
a290aac5b3
The Docker image was just updated to use Arch Linux instead of Ubuntu. This PR sets the compiler names to reflect how they are installed on the Arch Linux Docker image. Fixes "x86_64-w64-mingw32-g++-posix is not a full path and was not found in the PATH." errors in CMake.
54 lines
2.2 KiB
CMake
54 lines
2.2 KiB
CMake
set(MINGW_PREFIX /usr/x86_64-w64-mingw32/)
|
|
set(CMAKE_SYSTEM_NAME Windows)
|
|
set(CMAKE_SYSTEM_PROCESSOR x86_64)
|
|
# Actually a hack, w/o this will cause some strange errors
|
|
set(CMAKE_HOST_WIN32 TRUE)
|
|
|
|
|
|
set(CMAKE_FIND_ROOT_PATH ${MINGW_PREFIX})
|
|
set(SDL2_PATH ${MINGW_PREFIX})
|
|
set(MINGW_TOOL_PREFIX ${CMAKE_SYSTEM_PROCESSOR}-w64-mingw32-)
|
|
|
|
# Specify the cross compiler
|
|
set(CMAKE_C_COMPILER ${MINGW_TOOL_PREFIX}gcc)
|
|
set(CMAKE_CXX_COMPILER ${MINGW_TOOL_PREFIX}g++)
|
|
set(CMAKE_RC_COMPILER ${MINGW_TOOL_PREFIX}windres)
|
|
|
|
# Mingw tools
|
|
set(STRIP ${MINGW_TOOL_PREFIX}strip)
|
|
set(WINDRES ${MINGW_TOOL_PREFIX}windres)
|
|
set(ENV{PKG_CONFIG} ${MINGW_TOOL_PREFIX}pkg-config)
|
|
|
|
# ccache wrapper
|
|
option(USE_CCACHE "Use ccache for compilation" OFF)
|
|
if(USE_CCACHE)
|
|
find_program(CCACHE ccache)
|
|
if(CCACHE)
|
|
message(STATUS "Using ccache found in PATH")
|
|
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ${CCACHE})
|
|
set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ${CCACHE})
|
|
else(CCACHE)
|
|
message(WARNING "USE_CCACHE enabled, but no ccache found")
|
|
endif(CCACHE)
|
|
endif(USE_CCACHE)
|
|
|
|
# Search for programs in the build host directories
|
|
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
|
|
|
|
|
# Echo modified cmake vars to screen for debugging purposes
|
|
if(NOT DEFINED ENV{MINGW_DEBUG_INFO})
|
|
message("")
|
|
message("Custom cmake vars: (blank = system default)")
|
|
message("-----------------------------------------")
|
|
message("* CMAKE_C_COMPILER : ${CMAKE_C_COMPILER}")
|
|
message("* CMAKE_CXX_COMPILER : ${CMAKE_CXX_COMPILER}")
|
|
message("* CMAKE_RC_COMPILER : ${CMAKE_RC_COMPILER}")
|
|
message("* WINDRES : ${WINDRES}")
|
|
message("* ENV{PKG_CONFIG} : $ENV{PKG_CONFIG}")
|
|
message("* STRIP : ${STRIP}")
|
|
message("* USE_CCACHE : ${USE_CCACHE}")
|
|
message("")
|
|
# So that the debug info only appears once
|
|
set(ENV{MINGW_DEBUG_INFO} SHOWN)
|
|
endif()
|