mxe/src/boost.mk

52 lines
1.9 KiB
Makefile
Raw Normal View History

2010-01-16 22:02:02 +00:00
# This file is part of mingw-cross-env.
# See doc/index.html for further information.
2009-01-31 05:52:28 +00:00
# Boost C++ Library
PKG := boost
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1_43_0
$(PKG)_CHECKSUM := b8257b7da2a7222739314f8d1e07e217debe71d6
$(PKG)_SUBDIR := boost_$($(PKG)_VERSION)
$(PKG)_FILE := boost_$($(PKG)_VERSION).tar.bz2
$(PKG)_WEBSITE := http://www.boost.org/
$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/boost/boost/$(subst _,.,$($(PKG)_VERSION))/$($(PKG)_FILE)
$(PKG)_DEPS := gcc zlib bzip2 expat
2009-01-31 05:52:28 +00:00
define $(PKG)_UPDATE
$(call SOURCEFORGE_FILES,http://sourceforge.net/projects/boost/files/boost/) | \
$(SED) -n 's,.*boost_\([0-9][^>]*\)\.tar.*,\1,p' | \
2009-11-09 04:00:39 +00:00
grep -v beta | \
tail -1
2009-01-31 05:52:28 +00:00
endef
define $(PKG)_BUILD
echo 'using gcc : : $(TARGET)-g++ : <rc>$(TARGET)-windres <archiver>$(TARGET)-ar ;' > '$(1)/user-config.jam'
2009-02-14 22:41:35 +00:00
# make the build script generate .a library files instead of .lib
$(SED) -i 's,<target-os>windows : lib ;,<target-os>windows : a ;,' '$(1)/tools/build/v2/tools/types/lib.jam'
2009-01-31 05:52:28 +00:00
# compile boost jam
cd '$(1)/tools/jam/src' && ./build.sh
2009-02-03 20:48:46 +00:00
cd '$(1)' && tools/jam/src/bin.*/bjam \
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 \
target-os=windows \
threading=multi \
link=static \
threadapi=win32 \
2009-09-02 13:08:54 +01:00
--layout=tagged \
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' \
stage install
2010-04-25 12:22:44 +01:00
'$(TARGET)-g++' \
-W -Wall -Werror -std=c++98 -U__STRICT_ANSI__ -pedantic \
'$(2).cpp' -o '$(PREFIX)/$(TARGET)/bin/test-boost.exe' \
-lboost_serialization-mt
2009-01-31 05:52:28 +00:00
endef