aboutsummaryrefslogtreecommitdiff
path: root/contrib/depends
diff options
context:
space:
mode:
authorAlexander Blair <snipa@jagtech.io>2020-03-12 00:57:22 -0700
committerAlexander Blair <snipa@jagtech.io>2020-03-12 00:57:22 -0700
commit2eee9bcdf8aa33c3fd8cee0685ee16a0131c5b59 (patch)
tree632a167db35903da59c0b830ef56cb43533403c4 /contrib/depends
parentMerge pull request #6244 (diff)
parentdepends: set several missing build tags (diff)
downloadmonero-2eee9bcdf8aa33c3fd8cee0685ee16a0131c5b59.tar.xz
Merge pull request #6251
0eac0c43 depends: set several missing build tags (moneromooo-monero)
Diffstat (limited to 'contrib/depends')
-rw-r--r--contrib/depends/toolchain.cmake.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/contrib/depends/toolchain.cmake.in b/contrib/depends/toolchain.cmake.in
index c56f3eb2e..2634423ab 100644
--- a/contrib/depends/toolchain.cmake.in
+++ b/contrib/depends/toolchain.cmake.in
@@ -136,11 +136,21 @@ endif()
if(ARCHITECTURE STREQUAL "i686")
SET(ARCH_ID "i386")
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
+ set(BUILD_TAG "linux-x86")
SET(LINUX_32 ON)
+ elseif(CMAKE_SYSTEM_NAME STREQUAL "Windows")
+ set(BUILD_TAG "win-x32")
endif()
endif()
if(ARCHITECTURE STREQUAL "x86_64")
+ if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
+ set(BUILD_TAG "linux-x64")
+ elseif(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
+ set(BUILD_TAG "freebsd-x64")
+ elseif(CMAKE_SYSTEM_NAME STREQUAL "Windows")
+ set(BUILD_TAG "win-x64")
+ endif()
SET(ARCH_ID "x86_64")
endif()