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
55 lines
2.4 KiB
Makefile
55 lines
2.4 KiB
Makefile
package=boost
|
|
$(package)_version=1.90.0
|
|
$(package)_download_path=https://archives.boost.io/release/$($(package)_version)/source/
|
|
$(package)_file_name=$(package)_$(subst .,_,$($(package)_version)).tar.bz2
|
|
$(package)_sha256_hash=49551aff3b22cbc5c5a9ed3dbc92f0e23ea50a0f7325b0d198b705e8ee3fc305
|
|
$(package)_dependencies=libiconv
|
|
|
|
define $(package)_set_vars
|
|
$(package)_config_opts_release=variant=release
|
|
$(package)_config_opts_debug=variant=debug
|
|
|
|
$(package)_config_opts+=--layout=system --user-config=user-config.jam
|
|
$(package)_config_opts+=threading=multi link=static -sNO_BZIP2=1 -sNO_ZLIB=1
|
|
|
|
$(package)_config_opts_linux=threadapi=pthread runtime-link=static
|
|
|
|
# Darwin (macOS) Defaults
|
|
$(package)_config_opts_darwin=target-os=darwin runtime-link=shared
|
|
|
|
# Windows Defaults
|
|
$(package)_config_opts_mingw32=binary-format=pe target-os=windows threadapi=win32 runtime-link=static
|
|
|
|
# Architecture Specifics
|
|
$(package)_config_opts_x86_64_mingw32=address-model=64
|
|
$(package)_config_opts_i686_mingw32=address-model=32
|
|
$(package)_config_opts_i686_linux=address-model=32 architecture=x86
|
|
|
|
# MACOS ARM64 FIX: Explicitly tell B2 this is ARM + Mach-O
|
|
$(package)_config_opts_x86_64_darwin=address-model=64
|
|
$(package)_config_opts_aarch64_darwin=address-model=64 architecture=arm binary-format=mach-o abi=aapcs
|
|
|
|
$(package)_toolset_$(host_os)=gcc
|
|
$(package)_archiver_$(host_os)=$($(package)_ar)
|
|
$(package)_toolset_darwin=darwin
|
|
$(package)_archiver_darwin=$($(package)_libtool)
|
|
|
|
$(package)_config_libraries=atomic,chrono,date_time,filesystem,program_options,regex,serialization,system,thread,locale,context,coroutine
|
|
$(package)_cxxflags=-std=c++17 -fPIC
|
|
endef
|
|
|
|
define $(package)_preprocess_cmds
|
|
echo "using $(boost_toolset_$(host_os)) : : $($(package)_cxx) : <cxxflags>\"$($(package)_cxxflags) $($(package)_cppflags)\" <linkflags>\"$($(package)_ldflags)\" <archiver>\"$(boost_archiver_$(host_os))\" <arflags>\"$($(package)_arflags)\" <striper>\"$(host_STRIP)\" <ranlib>\"$(host_RANLIB)\" <rc>\"$(host_WINDRES)\" : ;" > user-config.jam
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
./bootstrap.sh --without-icu --with-libraries=$(boost_config_libraries)
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
./b2 -d2 -j2 -d1 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) stage
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
./b2 -d0 -j4 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) install
|
|
endef |