diff options
author | John Wiegley <johnw@newartisans.com> | 2011-07-12 22:31:14 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2011-07-12 22:31:14 -0500 |
commit | 51587d351f984661e801e35f7db4911cc22b642b (patch) | |
tree | 55489d67914d15821b448d82e63a78fce43e7e98 /lib/Makefile | |
parent | 168c111c624115decb3f8d071075f953aca4fe69 (diff) | |
download | fork-ledger-51587d351f984661e801e35f7db4911cc22b642b.tar.gz fork-ledger-51587d351f984661e801e35f7db4911cc22b642b.tar.bz2 fork-ledger-51587d351f984661e801e35f7db4911cc22b642b.zip |
Update to use Boost 1.47
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Makefile b/lib/Makefile index e2d5dd2b..734816af 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -5,8 +5,8 @@ STOW_ROOT = /usr/local/stow PRODUCTS = $(HOME)/Products -GCC_VERSION = 4.6 -BOOST_VERSION = 1_46_1 +GCC_VERSION = 4.5 +BOOST_VERSION = 1_47_0 CC = gcc-mp-$(GCC_VERSION) ifeq ($(CC),clang) @@ -51,7 +51,7 @@ all: boost-build #icu-build boost-icu-build prepare-boost: perl -i -pe 's/local command = \[ common\.get-invocation-command darwin : g\+\+ : .*/local command = [ common.get-invocation-command darwin : g++ : $(CXX) ] ;/;' $(BOOST_SOURCE)/tools/build/v2/tools/darwin.jam - perl -i -pe 's/flags darwin\.compile OPTIONS : -no-cpp-precomp -gdwarf-2 ;/flags darwin\.compile OPTIONS : -gdwarf-2 ;/;' $(BOOST_SOURCE)/tools/build/v2/tools/darwin.jam + perl -i -pe 's/flags darwin\.compile OPTIONS : -no-cpp-precomp -gdwarf-2 (-fexceptions )?;/flags darwin\.compile OPTIONS : -gdwarf-2 \1;/;' $(BOOST_SOURCE)/tools/build/v2/tools/darwin.jam boost-build: prepare-boost (cd $(BOOST_SOURCE) && \ |