forked from such-gitea/wownero
All checks were successful
Build Wownero Core (Portable Mac Fix) / build-all (aarch64-apple-darwin11) (push) Successful in 12m36s
Build Wownero Core (Portable Mac Fix) / build-all (aarch64-linux-gnu) (push) Successful in 8m56s
Build Wownero Core (Portable Mac Fix) / build-all (riscv64-linux-gnu) (push) Successful in 11m38s
Build Wownero Core (Portable Mac Fix) / build-all (x86_64-apple-darwin11) (push) Successful in 13m8s
Build Wownero Core (Portable Mac Fix) / build-all (x86_64-linux-gnu) (push) Successful in 9m13s
Build Wownero Core (Portable Mac Fix) / build-all (x86_64-w64-mingw32) (push) Successful in 10m9s
Build Wownero Core (Portable Mac Fix) / release (push) Successful in 26s
- Upgrade dependencies: Boost 1.90.0, OpenSSL 3.0.13, Zlib 1.3.1, Zstd 1.5.5 - Fix macOS ARM/Intel builds by relaxing static runtime requirements in CMake - Add missing Boost libraries (context, coroutine) for LWS support - Sanitize depends system to prevent Makefile corruption - Enable full static linking for Linux and Windows targets
39 lines
1.0 KiB
Makefile
39 lines
1.0 KiB
Makefile
packages:=boost openssl expat libusb hidapi protobuf libiconv sodium zeromq unbound zlib zstd
|
|
|
|
# ccache is useless in gitian builds
|
|
ifneq ($(GITIAN),1)
|
|
native_packages := native_ccache
|
|
endif
|
|
|
|
hardware_packages := hidapi protobuf libusb
|
|
hardware_native_packages := native_protobuf
|
|
|
|
android_native_packages = android_ndk
|
|
android_packages = ncurses readline sodium
|
|
|
|
darwin_native_packages = $(hardware_native_packages)
|
|
darwin_packages = ncurses readline sodium $(hardware_packages)
|
|
|
|
# not really native...
|
|
freebsd_native_packages = freebsd_base
|
|
freebsd_packages = ncurses readline sodium
|
|
|
|
linux_packages = eudev ncurses readline sodium $(hardware_packages)
|
|
linux_native_packages = $(hardware_native_packages)
|
|
|
|
ifeq ($(build_tests),ON)
|
|
packages += gtest
|
|
endif
|
|
|
|
ifneq ($(host_arch),riscv64)
|
|
linux_packages += unwind
|
|
endif
|
|
|
|
mingw32_packages = icu4c sodium $(hardware_packages)
|
|
mingw32_native_packages = $(hardware_native_packages)
|
|
|
|
ifneq ($(build_os),darwin)
|
|
darwin_native_packages += darwin_sdk native_clang native_cctools native_libtapi
|
|
endif
|
|
|