diff options
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Makefile b/lib/Makefile index 38ff924d..709358df 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -8,20 +8,20 @@ STOW_ROOT = /usr/local/stow BOOST_SOURCE = boost -BOOST_VERSION = 1_39_0 +BOOST_VERSION = 1_40_0 # architecture=combined boost-release: (cd $(BOOST_SOURCE) && \ - bjam release -j3 --prefix=$(STOW_ROOT)/boost_$(BOOST_VERSION) \ + bjam release -j16 --prefix=$(STOW_ROOT)/boost_$(BOOST_VERSION) \ --build-dir=$(HOME)/Products/boost_$(BOOST_VERSION) \ - --toolset=darwin --build-type=complete install) + --toolset=darwin --build-type=complete --layout=versioned install) boost-debug: (cd $(BOOST_SOURCE) && \ - bjam debug -j3 --prefix=$(STOW_ROOT)/boost_$(BOOST_VERSION) \ + bjam debug -j16 --prefix=$(STOW_ROOT)/boost_$(BOOST_VERSION) \ --build-dir=$(HOME)/Products/boost_$(BOOST_VERSION) \ - --toolset=darwin --build-type=complete \ + --toolset=darwin --build-type=complete --layout=versioned \ define=_GLIBCXX_DEBUG=1 install) boost-build: boost-release boost-debug |