diff options
-rw-r--r-- | lib/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index b23aa36f..808d1f8b 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -11,17 +11,18 @@ HERE = $(shell pwd) all: boost-build cppunit-build # gdtoa +# architecture=combined boost-release: (cd boost && \ bjam release -j3 --prefix=$(STOW_ROOT)/boost \ --build-dir=$(HERE)/boost/build --toolset=darwin \ - --build-type=complete architecture=combined install) + --build-type=complete install) boost-debug: (cd boost && \ bjam debug -j3 --prefix=$(STOW_ROOT)/boost \ --build-dir=$(HERE)/boost/build --toolset=darwin \ - --build-type=complete architecture=combined \ + --build-type=complete \ define=_GLIBCXX_DEBUG=1 install) boost-build: boost-release boost-debug |