diff options
author | Riccardo Spagni <ric@spagni.net> | 2014-09-22 12:30:53 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2014-09-22 12:30:53 +0200 |
commit | b5d51e30d9d86bba5a08d33fa4fd2173565061c7 (patch) | |
tree | 1979a345854658073f99d425809860d9189fd98d /msys2 | |
parent | added mikezackles' missing boost function in CMakeLists (diff) | |
download | monero-b5d51e30d9d86bba5a08d33fa4fd2173565061c7.tar.xz |
moved msys2 toolchain, boost libs fix
Diffstat (limited to 'msys2')
-rw-r--r-- | msys2/32-bit-toolchain.cmake | 19 | ||||
-rw-r--r-- | msys2/64-bit-toolchain.cmake | 19 |
2 files changed, 0 insertions, 38 deletions
diff --git a/msys2/32-bit-toolchain.cmake b/msys2/32-bit-toolchain.cmake deleted file mode 100644 index 91665a21b..000000000 --- a/msys2/32-bit-toolchain.cmake +++ /dev/null @@ -1,19 +0,0 @@ -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") -set (USE_LTO_DEFAULT false) diff --git a/msys2/64-bit-toolchain.cmake b/msys2/64-bit-toolchain.cmake deleted file mode 100644 index 93d69d898..000000000 --- a/msys2/64-bit-toolchain.cmake +++ /dev/null @@ -1,19 +0,0 @@ -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") -set (USE_LTO_DEFAULT false) |