summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xacprep2
-rw-r--r--lib/Makefile7
2 files changed, 6 insertions, 3 deletions
diff --git a/acprep b/acprep
index badf8425..381ee032 100755
--- a/acprep
+++ b/acprep
@@ -237,7 +237,7 @@ class CommandLineApp(object):
force_exit = True # If true, always ends run() with sys.exit()
log_handler = None
darwin_gcc = False
- boost_version = "1_44"
+ boost_version = "1_45"
options = {
'debug': False,
diff --git a/lib/Makefile b/lib/Makefile
index f2a8cd14..01a51717 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -10,10 +10,12 @@ ifeq ($(CC),clang)
CXX = clang++
LD = llvm-ld
DIR_SUFFIX = clang
+OPTJ =
else
CXX = g++-mp-4.5
LD = gcc-mp-4.5
DIR_SUFFIX = gcc45
+OPTJ = #-j16
endif
CPPFLAGS = -D_GLIBCXX_FULLY_DYNAMIC_STRING=1
ifneq ($(CC),clang)
@@ -22,7 +24,7 @@ endif
CFLAGS = $(CPPFLAGS) -g
LDFLAGS = -g
-BOOST_VERSION = 1_44_0
+BOOST_VERSION = 1_45_0
BOOST_SOURCE = boost_$(BOOST_VERSION)
BOOST_DEFINES = define=_GLIBCXX_FULLY_DYNAMIC_STRING=1
ifeq ($(CC),clang)
@@ -47,7 +49,8 @@ all: boost-build cppunit-build #icu-build boost-icu-build
boost-build:
(cd $(BOOST_SOURCE) && \
- bjam debug --prefix=$(BOOST_STOW) --build-dir=$(BOOST_BUILD) \
+ sh bootstrap.sh && \
+ ./bjam $(OPTJ) debug --prefix=$(BOOST_STOW) --build-dir=$(BOOST_BUILD) \
$(BOOST_FLAGS) install)
cppunit-build: