diff options
author | TheCharlatan <seb.kung@gmail.com> | 2018-03-20 00:33:49 +0100 |
---|---|---|
committer | TheCharlatan <seb.kung@gmail.com> | 2018-09-10 22:05:36 +0200 |
commit | 56b6e41ea7b7c17b513c24797d234e5cf9df8fa2 (patch) | |
tree | 7a319632b4178438e2578b22c37ad973e83994ad /contrib/depends/Makefile | |
parent | Disable stack unwinding for mingw32 depends build. (diff) | |
download | monero-56b6e41ea7b7c17b513c24797d234e5cf9df8fa2.tar.xz |
Add support for apple and arm building
Add pcsc-lite to linux builds
Fixup windows icu4c linking with depends, the static libraries have an 's' appended to them
Compiling depends arm-linux-gnueabihf will allow you to compile armv6zk monero binaries
Diffstat (limited to 'contrib/depends/Makefile')
-rw-r--r-- | contrib/depends/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/depends/Makefile b/contrib/depends/Makefile index be81626b1..b0c032c09 100644 --- a/contrib/depends/Makefile +++ b/contrib/depends/Makefile @@ -67,7 +67,7 @@ endif ifeq ($(host_os),linux) host_cmake=Linux endif -ifeq ($(host_os),darwin11) +ifeq ($(host_os),darwin) host_cmake=Darwin endif @@ -182,6 +182,8 @@ $(host_prefix)/share/toolchain.cmake : toolchain.cmake.in $(host_prefix)/.stamp_ -e 's|@debug@|$(DEBUG)|' \ -e 's|@depends@|$(host_cmake)|' \ -e 's|@prefix@|$($(host_arch)_$(host_os)_prefix)|'\ + -e 's|@sdk@|$(SDK_PATH)|'\ + -e 's|@arch@|$(host_arch)|'\ $< > $@ $(AT)touch $@ |