mxe/src/boost.mk

127 lines
4.0 KiB
Makefile
Raw Normal View History

# This file is part of MXE. See LICENSE.md for licensing information.
2009-01-31 05:52:28 +00:00
PKG := boost
2017-03-05 03:41:39 +00:00
$(PKG)_WEBSITE := https://www.boost.org/
$(PKG)_DESCR := Boost C++ Library
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.60.0
$(PKG)_CHECKSUM := 686affff989ac2488f79a97b9479efb9f2abae035b5ed4d8226de6857933fd3b
$(PKG)_SUBDIR := boost_$(subst .,_,$($(PKG)_VERSION))
$(PKG)_FILE := boost_$(subst .,_,$($(PKG)_VERSION)).tar.bz2
2017-03-05 03:41:39 +00:00
$(PKG)_URL := https://$(SOURCEFORGE_MIRROR)/project/boost/boost/$($(PKG)_VERSION)/$($(PKG)_FILE)
2018-03-26 09:33:37 +01:00
$(PKG)_TARGETS := $(BUILD) $(MXE_TARGETS)
$(PKG)_DEPS := cc bzip2 expat zlib
2009-01-31 05:52:28 +00:00
2018-03-26 09:33:37 +01:00
$(PKG)_DEPS_$(BUILD) := zlib
2009-01-31 05:52:28 +00:00
define $(PKG)_UPDATE
2017-03-05 03:41:39 +00:00
$(WGET) -q -O- 'https://www.boost.org/users/download/' | \
2019-05-15 22:32:54 +01:00
$(SED) -n 's,.*/release/\([0-9][^"/]*\)/.*,\1,p' | \
2009-11-09 04:00:39 +00:00
grep -v beta | \
head -1
2009-01-31 05:52:28 +00:00
endef
define $(PKG)_BUILD
2012-07-01 19:19:16 +01:00
# old version appears to interfere
rm -rf '$(PREFIX)/$(TARGET)/include/boost/'
rm -f "$(PREFIX)/$(TARGET)/lib/libboost"*
2014-12-05 10:48:18 +00:00
# create user-config
echo 'using gcc : mxe : $(TARGET)-g++ : <rc>$(TARGET)-windres <archiver>$(TARGET)-ar <ranlib>$(TARGET)-ranlib ;' > '$(1)/user-config.jam'
# compile boost build (b2)
cd '$(1)/tools/build/' && ./bootstrap.sh
2014-12-05 10:48:18 +00:00
# cross-build, see b2 options at:
2017-03-05 03:41:39 +00:00
# https://www.boost.org/build/doc/html/bbv2/overview/invocation.html
cd '$(1)' && ./tools/build/b2 \
2014-12-05 10:48:18 +00:00
-a \
-q \
2009-01-31 05:52:28 +00:00
-j '$(JOBS)' \
--ignore-site-config \
2009-01-31 05:52:28 +00:00
--user-config=user-config.jam \
abi=ms \
2014-12-05 10:48:18 +00:00
address-model=$(BITS) \
architecture=x86 \
binary-format=pe \
link=$(if $(BUILD_STATIC),static,shared) \
2014-12-05 10:48:18 +00:00
target-os=windows \
2009-01-31 05:52:28 +00:00
threadapi=win32 \
2014-12-05 10:48:18 +00:00
threading=multi \
2015-06-09 02:43:35 +01:00
variant=release \
2014-12-05 10:48:18 +00:00
toolset=gcc-mxe \
2009-09-02 13:08:54 +01:00
--layout=tagged \
2014-04-05 09:31:09 +01:00
--disable-icu \
2009-01-31 05:52:28 +00:00
--without-mpi \
--without-python \
--prefix='$(PREFIX)/$(TARGET)' \
--exec-prefix='$(PREFIX)/$(TARGET)/bin' \
--libdir='$(PREFIX)/$(TARGET)/lib' \
--includedir='$(PREFIX)/$(TARGET)/include' \
-sEXPAT_INCLUDE='$(PREFIX)/$(TARGET)/include' \
-sEXPAT_LIBPATH='$(PREFIX)/$(TARGET)/lib' \
2014-12-05 10:48:18 +00:00
install
2010-04-25 12:22:44 +01:00
$(if $(BUILD_SHARED), \
mv -fv '$(PREFIX)/$(TARGET)/lib/'libboost_*.dll '$(PREFIX)/$(TARGET)/bin/')
# setup cmake toolchain
echo 'set(Boost_THREADAPI "win32")' > '$(CMAKE_TOOLCHAIN_DIR)/$(PKG).cmake'
2010-04-25 12:22:44 +01:00
'$(TARGET)-g++' \
2010-05-14 18:53:19 +01:00
-W -Wall -Werror -ansi -U__STRICT_ANSI__ -pedantic \
'$(PWD)/src/$(PKG)-test.cpp' -o '$(PREFIX)/$(TARGET)/bin/test-boost.exe' \
-DBOOST_THREAD_USE_LIB \
-lboost_serialization-mt \
-lboost_thread_win32-mt \
-lboost_system-mt \
-lboost_chrono-mt \
-lboost_context-mt
2015-10-02 13:53:29 +01:00
# test cmake
mkdir '$(1).test-cmake'
cd '$(1).test-cmake' && '$(TARGET)-cmake' \
-DPKG=$(PKG) \
-DPKG_VERSION=$($(PKG)_VERSION) \
'$(PWD)/src/cmake/test'
$(MAKE) -C '$(1).test-cmake' -j 1 install
2009-01-31 05:52:28 +00:00
endef
2018-03-26 09:33:37 +01:00
define $(PKG)_BUILD_$(BUILD)
# old version appears to interfere
rm -rf '$(PREFIX)/$(TARGET)/include/boost/'
rm -f "$(PREFIX)/$(TARGET)/lib/libboost"*
# compile boost build (b2)
cd '$(SOURCE_DIR)/tools/build/' && ./bootstrap.sh
# minimal native build - for more features, replace:
# --with-system \
# --with-filesystem \
#
# with:
# --without-mpi \
# --without-python \
2019-06-28 12:43:13 +01:00
cd '$(SOURCE_DIR)' && \
$(if $(call seq,darwin,$(OS_SHORT_NAME)),PATH=/usr/bin:$$PATH) \
./tools/build/b2 \
-a \
-q \
-j '$(JOBS)' \
--ignore-site-config \
variant=release \
link=static \
threading=multi \
runtime-link=static \
--disable-icu \
--with-system \
--with-filesystem \
--build-dir='$(BUILD_DIR)' \
--prefix='$(PREFIX)/$(TARGET)' \
--exec-prefix='$(PREFIX)/$(TARGET)/bin' \
--libdir='$(PREFIX)/$(TARGET)/lib' \
--includedir='$(PREFIX)/$(TARGET)/include' \
install
2018-03-26 09:33:37 +01:00
endef