diff --git a/Jamroot b/Jamroot index 53a0205b71..eda4fb437c 100644 --- a/Jamroot +++ b/Jamroot @@ -139,7 +139,7 @@ boostcpp.set-version $(BOOST_VERSION) ; use-project /boost/architecture : libs/config/checks/architecture ; local all-headers = - [ MATCH .*libs/(.*)/include/boost : [ glob libs/*/include/boost ] ] ; + [ MATCH .*libs/(.*)/include/boost : [ glob libs/*/include/boost libs/*/*/include/boost ] ] ; for dir in $(all-headers) { @@ -147,18 +147,9 @@ for dir in $(all-headers) explicit $(dir)-headers ; } -local numeric-headers = - [ MATCH .*libs/numeric/(.*)/include/boost : [ glob libs/*/*/include/boost ] ] ; - -for dir in $(numeric-headers) -{ - link-directory numeric-$(dir)-headers : libs/numeric/$(dir)/include/boost : . ; - explicit numeric-$(dir)-headers ; -} - if $(all-headers) { - constant BOOST_MODULARLAYOUT : $(all-headers) $(numeric-headers) ; + constant BOOST_MODULARLAYOUT : $(all-headers) ; } project boost @@ -173,9 +164,6 @@ project boost # Used to encode variant in target name. See the 'tag' rule below. @$(__name__).tag @handle-static-runtime - # The standard library Sun compilers use by default has no chance - # of working with Boost. Override it. - sun:sun-stlport # Comeau does not support shared lib como:static como-linux:_GNU_SOURCE=1 @@ -243,7 +231,10 @@ for local l in $(all-libraries) } } -alias headers : $(all-headers)-headers numeric-$(numeric-headers)-headers : : : . ; +# Log has an additional target +explicit-alias log_setup : libs/log/build//boost_log_setup ; + +alias headers : $(all-headers)-headers : : : . ; explicit headers ; # Make project ids of all libraries known. @@ -252,8 +243,15 @@ for local l in $(all-libraries) use-project /boost/$(l) : libs/$(l)/build ; } -use-project /boost/tools/inspect : tools/inspect/build ; -use-project /boost/libs/wave/tool : libs/wave/tool/build ; +if [ path.exists $(BOOST_ROOT)/tools/inspect ] +{ + use-project /boost/tools/inspect : tools/inspect/build ; +} + +if [ path.exists $(BOOST_ROOT)/libs/wave/tool ] +{ + use-project /boost/libs/wave/tool : libs/wave/tool/build ; +} # This rule should be called from libraries' Jamfiles and will create two # targets, "install" and "stage", that will install or stage that library. The diff --git a/boostcpp.jam b/boostcpp.jam index a964caf417..f45d12ef2f 100644 --- a/boostcpp.jam +++ b/boostcpp.jam @@ -210,8 +210,48 @@ rule make-unversioned-links ( project name ? : property-set : sources * ) return $(result) ; } +rule filtered-target ( name : message + : sources + : requirements * ) +{ + message $(name)-message : warning: $(message) ; + alias $(name) : $(sources) : $(requirements) ; + alias $(name) : $(name)-message ; + + local p = [ project.current ] ; + $(p).mark-target-as-explicit $(name) ; + $(p).mark-target-as-explicit $(name)-message ; +} + rule declare_install_and_stage_proper_targets ( libraries * : headers * ) { + local p = [ project.current ] ; + for local l in $(libraries) + { + if $(l) = locale + { + filtered-target $(l)-for-install : + Skipping Boost.Locale library with threading=single. : + libs/$(l)/build : multi ; + } + else if $(l) = wave + { + filtered-target $(l)-for-install : + Skipping Boost.Wave library with threading=single. : + libs/$(l)/build : multi ; + } + else if $(l) = thread + { + filtered-target $(l)-for-install : + Skipping Boost.Thread library with threading=single. : + libs/$(l)/build : multi ; + } + else + { + alias $(l)-for-install : libs/$(l)/build ; + $(p).mark-target-as-explicit $(l)-for-install ; + } + } + local library-targets = $(libraries)-for-install ; + install-requirements = $(BOOST_ROOT)/boost ; if $(layout-versioned) @@ -239,14 +279,14 @@ rule declare_install_and_stage_proper_targets ( libraries * : headers * ) package.install install-proper : $(install-requirements) on : - : libs/$(libraries)/build + : $(libraries)-for-install : $(headers) ; $(p).mark-target-as-explicit install-proper ; # Install just library. install stage-proper - : libs/$(libraries)/build + : $(libraries)-for-install : $(stage-locate)/lib on LIB on @@ -461,13 +501,14 @@ rule post-build ( ok ? ) { if $(ok) { + local include-path = [ path.native $(BOOST_ROOT) ] ; ECHO " The Boost C++ Libraries were successfully built! The following directory should be added to compiler include paths: - $(BOOST_ROOT) + $(include-path) The following directory should be added to linker library paths: diff --git a/bootstrap.bat b/bootstrap.bat index a32076d610..2995907f62 100644 --- a/bootstrap.bat +++ b/bootstrap.bat @@ -32,7 +32,7 @@ goto :bjam_failure :bjam_built REM Ideally, we should obtain the toolset that build.bat has -REM guessed. However, it uses setlocal at the start and does +REM guessed. However, it uses setlocal at the start and does not REM export BOOST_JAM_TOOLSET, and I don't know how to do that REM properly. Default to msvc for now. set toolset=msvc @@ -67,7 +67,7 @@ goto :end ECHO. ECHO Failed to build Boost.Build engine. -ECHO Please consult bootstrap.log for furter diagnostics. +ECHO Please consult bootstrap.log for further diagnostics. ECHO. ECHO You can try to obtain a prebuilt binary from ECHO. diff --git a/bootstrap.sh b/bootstrap.sh index 98cf88bc1c..9e61569e2e 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -21,6 +21,14 @@ PYTHON_VERSION= PYTHON_ROOT= ICU_ROOT= +# Handle case where builtin shell version of echo command doesn't +# support -n. Use the installed echo executable if there is one +# rather than builtin version to ensure -n is supported. +ECHO=`which echo` +if test "x$ECHO" = x; then + ECHO=echo +fi + # Internal flags flag_no_python= flag_icu= @@ -213,7 +221,7 @@ rm -f config.log # Build bjam if test "x$BJAM" = x; then - echo -n "Building Boost.Build engine with toolset $TOOLSET... " + $ECHO -n "Building Boost.Build engine with toolset $TOOLSET... " pwd=`pwd` (cd "$my_dir/tools/build/src/engine" && ./build.sh "$TOOLSET") > bootstrap.log 2>&1 if [ $? -ne 0 ]; then @@ -270,20 +278,20 @@ fi if test "x$flag_no_python" = x; then if test "x$PYTHON_VERSION" = x; then - echo -n "Detecting Python version... " + $ECHO -n "Detecting Python version... " PYTHON_VERSION=`$PYTHON -c "import sys; print (\"%d.%d\" % (sys.version_info[0], sys.version_info[1]))"` echo $PYTHON_VERSION fi if test "x$PYTHON_ROOT" = x; then - echo -n "Detecting Python root... " - PYTHON_ROOT=`$PYTHON -c "import sys; print sys.prefix"` + $ECHO -n "Detecting Python root... " + PYTHON_ROOT=`$PYTHON -c "import sys; print(sys.prefix)"` echo $PYTHON_ROOT fi fi # Configure ICU -echo -n "Unicode/ICU support for Boost.Regex?... " +$ECHO -n "Unicode/ICU support for Boost.Regex?... " if test "x$flag_icu" != xno; then if test "x$ICU_ROOT" = x; then COMMON_ICU_PATHS="/usr /usr/local /sw" @@ -345,7 +353,11 @@ if test "x$flag_no_python" = x; then cat >> project-config.jam < + diff --git a/libs/maintainers.txt b/libs/maintainers.txt index a1068b9ec6..7f7b3d86af 100644 --- a/libs/maintainers.txt +++ b/libs/maintainers.txt @@ -94,7 +94,7 @@ property_map Douglas Gregor property_tree Sebastian Redl proto Eric Niebler ptr_container Thorsten Ottosen -python Ralf Grosse-Kunstleve , Ravi Rajagopal +python Stefan Seefeld random Steven Watanabe range Neil Groves , Nathan Ridge ratio Vicente J. Botet Escriba diff --git a/status/Jamfile.v2 b/status/Jamfile.v2 index 3060accb31..949b6d3323 100644 --- a/status/Jamfile.v2 +++ b/status/Jamfile.v2 @@ -63,6 +63,7 @@ run-tests libs : circular_buffer/test # test-suite circular_buffer concept_check # test-suite concept_check config/test # test-suite config + container/bench # test-suite container benchmarks container/example # test-suite container_example container/test # test-suite container_test context/test # test-suite context diff --git a/status/explicit-failures-markup.xml b/status/explicit-failures-markup.xml index 3fa5892e1c..6fcb5505e7 100644 --- a/status/explicit-failures-markup.xml +++ b/status/explicit-failures-markup.xml @@ -700,7 +700,6 @@ - @@ -716,8 +715,11 @@ + + + @@ -2034,6 +2036,28 @@ + + + + + + + + + + + + + + + + + + + + + + @@ -3059,6 +3083,17 @@ for more information. + + + + + + + + +

This is a compiler bug: it sometimes creates an illegal temporary object.

+
+
@@ -5753,7 +5788,9 @@ This platform doesn't supports Boost.Container. - + + + diff --git a/tools/Jamfile.v2 b/tools/Jamfile.v2 index d69756e701..e1391c7686 100644 --- a/tools/Jamfile.v2 +++ b/tools/Jamfile.v2 @@ -21,7 +21,7 @@ TOOLS = bcp//bcp inspect/build//inspect quickbook//quickbook - wave/build//wave + /boost/libs/wave/tool//wave ; install dist-bin