From 59c1ac503f320bac31816937e5e872cd57638971 Mon Sep 17 00:00:00 2001 From: Zachary Michaels <> Date: Thu, 7 Aug 2014 18:23:34 -0400 Subject: Move toolchain files --- msys2/64-bit-toolchain.cmake | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 msys2/64-bit-toolchain.cmake (limited to 'msys2/64-bit-toolchain.cmake') diff --git a/msys2/64-bit-toolchain.cmake b/msys2/64-bit-toolchain.cmake new file mode 100644 index 000000000..8884ae28d --- /dev/null +++ b/msys2/64-bit-toolchain.cmake @@ -0,0 +1,18 @@ +set (CMAKE_SYSTEM_NAME Windows) + +set (GCC_PREFIX x86_64-w64-mingw32) +set (CMAKE_C_COMPILER ${GCC_PREFIX}-gcc) +set (CMAKE_CXX_COMPILER ${GCC_PREFIX}-g++) +set (CMAKE_AR ar CACHE FILEPATH "" FORCE) +set (CMAKE_NM nm CACHE FILEPATH "" FORCE) +#set (CMAKE_RANLIB ${GCC_PREFIX}-gcc-ranlib CACHE FILEPATH "" FORCE) +set (CMAKE_RC_COMPILER windres) + +set (CMAKE_FIND_ROOT_PATH c:/msys2/mingw64) + +# Ensure cmake doesn't find things in the wrong places +set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) # Find programs on host +set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) # Find libs in target +set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) # Find includes in target + +set (MINGW_FLAG "-m64") -- cgit v1.2.3