diff options
author | Zachary Michaels <> | 2014-08-07 18:23:34 -0400 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2014-09-15 22:36:29 +0200 |
commit | 59c1ac503f320bac31816937e5e872cd57638971 (patch) | |
tree | 3a608e24f5b88ea268a4ec81d9b04fe23750af8e /msys2 | |
parent | Fix march flag for 32-bit build (diff) | |
download | monero-59c1ac503f320bac31816937e5e872cd57638971.tar.xz |
Move toolchain files
Diffstat (limited to 'msys2')
-rw-r--r-- | msys2/32-bit-toolchain.cmake | 18 | ||||
-rw-r--r-- | msys2/64-bit-toolchain.cmake | 18 |
2 files changed, 36 insertions, 0 deletions
diff --git a/msys2/32-bit-toolchain.cmake b/msys2/32-bit-toolchain.cmake new file mode 100644 index 000000000..111122a91 --- /dev/null +++ b/msys2/32-bit-toolchain.cmake @@ -0,0 +1,18 @@ +set (CMAKE_SYSTEM_NAME Windows) + +set (GCC_PREFIX i686-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/mingw32) + +# 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 "-m32") 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") |