diff --git a/main/boost/boost-clang.patch b/main/boost/boost-clang.patch index 1582a9e73f..a8cd050290 100644 --- a/main/boost/boost-clang.patch +++ b/main/boost/boost-clang.patch @@ -1,6 +1,98 @@ ---- misc/build/boost_1_55_0/boost/config/user.hpp 2023-01-20 06:52:20.006784000 +0200 -+++ misc/build/boost_1_55_0/boost/config/user.hpp 2023-01-20 06:54:54.816087000 +0200 -@@ -122,3 +122,6 @@ +--- misc/boost_1_64_0/tools/build/src/tools/clang-linux.jam.orig 2017-04-17 02:22:26 UTC ++++ misc/build/boost_1_64_0/tools/build/src/tools/clang-linux.jam +@@ -31,7 +31,7 @@ generators.override clang-linux.compile.c.pch : pch. + generators.override clang-linux.compile.c++.pch : pch.default-cpp-pch-generator ; + + type.set-generated-target-suffix PCH +- : clang linux : pth ; ++ : clang linux : pch ; + + toolset.inherit-rules clang-linux : gcc ; + toolset.inherit-flags clang-linux : gcc +@@ -96,24 +96,24 @@ rule compile.c++ ( targets * : sources * : properties + gcc.setup-fpic $(targets) : $(sources) : $(properties) ; + gcc.setup-address-model $(targets) : $(sources) : $(properties) ; + +- local pth-file = [ on $(<) return $(PCH_FILE) ] ; ++ local pch-file = [ on $(<) return $(PCH_FILE) ] ; + +- if $(pth-file) { +- DEPENDS $(<) : $(pth-file) ; ++ if $(pch-file) { ++ DEPENDS $(<) : $(pch-file) ; + clang-linux.compile.c++.with-pch $(targets) : $(sources) ; + } + else { +- clang-linux.compile.c++.without-pth $(targets) : $(sources) ; ++ clang-linux.compile.c++.without-pch $(targets) : $(sources) ; + } + } + +-actions compile.c++.without-pth { ++actions compile.c++.without-pch { + "$(CONFIG_COMMAND)" -c -x c++ $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -o "$(<)" "$(>)" + } + + actions compile.c++.with-pch bind PCH_FILE + { +- "$(CONFIG_COMMAND)" -c -x c++ $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -Xclang -include-pth -Xclang "$(PCH_FILE)" -o "$(<)" "$(>)" ++ "$(CONFIG_COMMAND)" -c -x c++ $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -Xclang -include-pch -Xclang "$(PCH_FILE)" -o "$(<)" "$(>)" + } + + rule compile.c ( targets * : sources * : properties * ) +@@ -122,25 +122,25 @@ rule compile.c ( targets * : sources * : properties * + gcc.setup-fpic $(targets) : $(sources) : $(properties) ; + gcc.setup-address-model $(targets) : $(sources) : $(properties) ; + +- local pth-file = [ on $(<) return $(PCH_FILE) ] ; ++ local pch-file = [ on $(<) return $(PCH_FILE) ] ; + +- if $(pth-file) { +- DEPENDS $(<) : $(pth-file) ; ++ if $(pch-file) { ++ DEPENDS $(<) : $(pch-file) ; + clang-linux.compile.c.with-pch $(targets) : $(sources) ; + } + else { +- clang-linux.compile.c.without-pth $(targets) : $(sources) ; ++ clang-linux.compile.c.without-pch $(targets) : $(sources) ; + } + } + +-actions compile.c.without-pth ++actions compile.c.without-pch + { + "$(CONFIG_COMMAND)" -c -x c $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)" + } + + actions compile.c.with-pch bind PCH_FILE + { +- "$(CONFIG_COMMAND)" -c -x c $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -Xclang -include-pth -Xclang "$(PCH_FILE)" -c -o "$(<)" "$(>)" ++ "$(CONFIG_COMMAND)" -c -x c $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -Xclang -include-pch -Xclang "$(PCH_FILE)" -c -o "$(<)" "$(>)" + } + + ############################################################################### +@@ -153,7 +153,7 @@ rule compile.c++.pch ( targets * : sources * : propert + } + + actions compile.c++.pch { +- rm -f "$(<)" && "$(CONFIG_COMMAND)" -c -x c++-header $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -Xclang -emit-pth -o "$(<)" "$(>)" ++ rm -f "$(<)" && "$(CONFIG_COMMAND)" -c -x c++-header $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -Xclang -emit-pch -o "$(<)" "$(>)" + } + + rule compile.c.pch ( targets * : sources * : properties * ) { +@@ -164,7 +164,7 @@ rule compile.c.pch ( targets * : sources * : propertie + + actions compile.c.pch + { +- rm -f "$(<)" && "$(CONFIG_COMMAND)" -c -x c-header $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -Xclang -emit-pth -o "$(<)" "$(>)" ++ rm -f "$(<)" && "$(CONFIG_COMMAND)" -c -x c-header $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -Xclang -emit-pch -o "$(<)" "$(>)" + } + + ############################################################################### +--- misc/boost_1_64_0/boost/config/user.hpp 2023-01-20 06:52:20.006784000 +0200 ++++ misc/build/boost_1_64_0/boost/config/user.hpp 2023-01-20 06:54:54.816087000 +0200 +@@ -131,3 +131,6 @@ diff --git a/main/boost/boost-os2.patch b/main/boost/boost-os2.patch index 2c23a877bc..882194b7af 100644 --- a/main/boost/boost-os2.patch +++ b/main/boost/boost-os2.patch @@ -1,5 +1,5 @@ ---- misc/boost_1_55_0/boost/tr1/detail/config.hpp 2010-06-12 11:30:02.000000000 +0200 -+++ misc/build/boost_1_55_0/boost/tr1/detail/config.hpp 2013-07-04 12:49:12.000000000 +0200 +--- misc/boost_1_64_0/boost/tr1/detail/config.hpp 2010-06-12 11:30:02.000000000 +0200 ++++ misc/build/boost_1_64_0/boost/tr1/detail/config.hpp 2013-07-04 12:49:12.000000000 +0200 @@ -9,6 +9,7 @@ #include @@ -8,8 +8,8 @@ || (!defined(_AIX) && defined(__IBMCPP__) && (__IBMCPP__ >= 800)) // Disable use of #include_next on Linux as typically we are installed in a // directory that is searched *after* the std lib include path. ---- misc/boost_1_55_0/boost/tr1/detail/config_all.hpp 2011-07-25 11:28:58.000000000 +0200 -+++ misc/build/boost_1_55_0/boost/tr1/detail/config_all.hpp 2013-07-04 12:50:44.000000000 +0200 +--- misc/boost_1_64_0/boost/tr1/detail/config_all.hpp 2011-07-25 11:28:58.000000000 +0200 ++++ misc/build/boost_1_64_0/boost/tr1/detail/config_all.hpp 2013-07-04 12:50:44.000000000 +0200 @@ -107,7 +107,7 @@ # endif @@ -19,4 +19,4 @@ // Disable use of #include_next on Linux as typically we are installed in a directory that is searched // *after* the std lib include path: # define BOOST_TR1_DISABLE_INCLUDE_NEXT -Binary files misc/boost_1_55_0/libs/math/quaternion/TQE_EA.pdf and misc/build/boost_1_55_0/libs/math/quaternion/TQE_EA.pdf differ +Binary files misc/boost_1_64_0/libs/math/quaternion/TQE_EA.pdf and misc/build/boost_1_64_0/libs/math/quaternion/TQE_EA.pdf differ diff --git a/main/boost/makefile.mk b/main/boost/makefile.mk index f78e4c4cf3..0ccb9f2660 100644 --- a/main/boost/makefile.mk +++ b/main/boost/makefile.mk @@ -42,8 +42,8 @@ all: # --- Files -------------------------------------------------------- -TARFILE_NAME=boost_1_55_0 -TARFILE_MD5=d6eef4b4cacb2183f2bf265a5a03a354 +TARFILE_NAME=boost_1_64_0 +TARFILE_MD5=93eecce2abed9d2442c9676914709349 PATCH_FILES= $(TARFILE_NAME).patch boost-clang.patch .IF "$(GUI)"=="OS2" PATCH_FILES+=boost-os2.patch @@ -78,6 +78,7 @@ $(PACKAGE_DIR)$/$(NORMALIZE_FLAG_FILE) : $(PACKAGE_DIR)$/$(BUILD_FLAG_FILE) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/*.hpp $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/accumulators $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/algorithm $(INCCOM)$/$(PRJNAME) + @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/align $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/archive $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/asio $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/assign $(INCCOM)$/$(PRJNAME) @@ -87,15 +88,21 @@ $(PACKAGE_DIR)$/$(NORMALIZE_FLAG_FILE) : $(PACKAGE_DIR)$/$(BUILD_FLAG_FILE) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/chrono $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/circular_buffer $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/compatibility $(INCCOM)$/$(PRJNAME) + @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/compute $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/concept $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/concept_check $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/config $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/container $(INCCOM)$/$(PRJNAME) + @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/context $(INCCOM)$/$(PRJNAME) + @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/convert $(INCCOM)$/$(PRJNAME) + @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/core $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/coroutine $(INCCOM)$/$(PRJNAME) + @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/coroutine2 $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/date_time $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/detail $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/dynamic_bitset $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/exception $(INCCOM)$/$(PRJNAME) + @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/fiber $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/filesystem $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/flyweight $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/format $(INCCOM)$/$(PRJNAME) @@ -106,7 +113,7 @@ $(PACKAGE_DIR)$/$(NORMALIZE_FLAG_FILE) : $(PACKAGE_DIR)$/$(BUILD_FLAG_FILE) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/geometry $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/gil $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/graph $(INCCOM)$/$(PRJNAME) - @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/graph $(INCCOM)$/$(PRJNAME) + @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/hana $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/icl $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/integer $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/interprocess $(INCCOM)$/$(PRJNAME) @@ -115,6 +122,8 @@ $(PACKAGE_DIR)$/$(NORMALIZE_FLAG_FILE) : $(PACKAGE_DIR)$/$(BUILD_FLAG_FILE) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/iostreams $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/iterator $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/lambda $(INCCOM)$/$(PRJNAME) + @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/lexical_cast $(INCCOM)$/$(PRJNAME) + @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/lockfree $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/logic $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/math $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/move $(INCCOM)$/$(PRJNAME) @@ -138,6 +147,7 @@ $(PACKAGE_DIR)$/$(NORMALIZE_FLAG_FILE) : $(PACKAGE_DIR)$/$(BUILD_FLAG_FILE) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/property_tree $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/proto $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/ptr_container $(INCCOM)$/$(PRJNAME) + @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/qvm $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/random $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/range $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/ratio $(INCCOM)$/$(PRJNAME) @@ -153,8 +163,11 @@ $(PACKAGE_DIR)$/$(NORMALIZE_FLAG_FILE) : $(PACKAGE_DIR)$/$(BUILD_FLAG_FILE) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/thread $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/timer $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/tr1 $(INCCOM)$/$(PRJNAME) + @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/tti $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/tuple $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/typeof $(INCCOM)$/$(PRJNAME) + @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/type_erasure $(INCCOM)$/$(PRJNAME) + @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/type_index $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/type_traits $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/units $(INCCOM)$/$(PRJNAME) @$(GNUCOPY) -R $(PACKAGE_DIR)$/$(TARFILE_NAME)$/boost$/unordered $(INCCOM)$/$(PRJNAME) diff --git a/main/boost/prj/d.lst b/main/boost/prj/d.lst index 65850eb0fa..986e84f441 100644 --- a/main/boost/prj/d.lst +++ b/main/boost/prj/d.lst @@ -13,6 +13,8 @@ mkdir: %_DEST%\inc%_EXT%\boost\algorithm mkdir: %_DEST%\inc%_EXT%\boost\algorithm\string mkdir: %_DEST%\inc%_EXT%\boost\algorithm\string\detail mkdir: %_DEST%\inc%_EXT%\boost\algorithm\string\std +mkdir: %_DEST%\inc%_EXT%\boost\align +mkdir: %_DEST%\inc%_EXT%\boost\align\detail mkdir: %_DEST%\inc%_EXT%\boost\archive mkdir: %_DEST%\inc%_EXT%\boost\archive\detail mkdir: %_DEST%\inc%_EXT%\boost\archive\impl @@ -62,12 +64,40 @@ mkdir: %_DEST%\inc%_EXT%\boost\chrono\detail\inlined mkdir: %_DEST%\inc%_EXT%\boost\chrono\detail\inlined\mac mkdir: %_DEST%\inc%_EXT%\boost\chrono\detail\inlined\posix mkdir: %_DEST%\inc%_EXT%\boost\chrono\detail\inlined\win +mkdir: %_DEST%\inc%_EXT%\boost\chrono\io +mkdir: %_DEST%\inc%_EXT%\boost\chrono\io\utility mkdir: %_DEST%\inc%_EXT%\boost\chrono\typeof mkdir: %_DEST%\inc%_EXT%\boost\chrono\typeof\boost mkdir: %_DEST%\inc%_EXT%\boost\chrono\typeof\boost\chrono mkdir: %_DEST%\inc%_EXT%\boost\circular_buffer mkdir: %_DEST%\inc%_EXT%\boost\compatibility mkdir: %_DEST%\inc%_EXT%\boost\compatibility\cpp_c_headers +mkdir: %_DEST%\inc%_EXT%\boost\compute +mkdir: %_DEST%\inc%_EXT%\boost\compute\algorithm +mkdir: %_DEST%\inc%_EXT%\boost\compute\algorithm\detail +mkdir: %_DEST%\inc%_EXT%\boost\compute\allocator +mkdir: %_DEST%\inc%_EXT%\boost\compute\async +mkdir: %_DEST%\inc%_EXT%\boost\compute\container +mkdir: %_DEST%\inc%_EXT%\boost\compute\detail +mkdir: %_DEST%\inc%_EXT%\boost\compute\exception +mkdir: %_DEST%\inc%_EXT%\boost\compute\experimental +mkdir: %_DEST%\inc%_EXT%\boost\compute\functional +mkdir: %_DEST%\inc%_EXT%\boost\compute\functional\detail +mkdir: %_DEST%\inc%_EXT%\boost\compute\image +mkdir: %_DEST%\inc%_EXT%\boost\compute\interop +mkdir: %_DEST%\inc%_EXT%\boost\compute\interop\eigen +mkdir: %_DEST%\inc%_EXT%\boost\compute\interop\opencv +mkdir: %_DEST%\inc%_EXT%\boost\compute\interop\opengl +mkdir: %_DEST%\inc%_EXT%\boost\compute\interop\qt +mkdir: %_DEST%\inc%_EXT%\boost\compute\iterator +mkdir: %_DEST%\inc%_EXT%\boost\compute\iterator\detail +mkdir: %_DEST%\inc%_EXT%\boost\compute\lambda +mkdir: %_DEST%\inc%_EXT%\boost\compute\memory +mkdir: %_DEST%\inc%_EXT%\boost\compute\random +mkdir: %_DEST%\inc%_EXT%\boost\compute\type_traits +mkdir: %_DEST%\inc%_EXT%\boost\compute\type_traits\detail +mkdir: %_DEST%\inc%_EXT%\boost\compute\types +mkdir: %_DEST%\inc%_EXT%\boost\compute\utility mkdir: %_DEST%\inc%_EXT%\boost\concept mkdir: %_DEST%\inc%_EXT%\boost\concept\detail mkdir: %_DEST%\inc%_EXT%\boost\concept_check @@ -79,24 +109,34 @@ mkdir: %_DEST%\inc%_EXT%\boost\config\platform mkdir: %_DEST%\inc%_EXT%\boost\config\stdlib mkdir: %_DEST%\inc%_EXT%\boost\container mkdir: %_DEST%\inc%_EXT%\boost\container\detail +mkdir: %_DEST%\inc%_EXT%\boost\container\pmr +mkdir: %_DEST%\inc%_EXT%\boost\context +mkdir: %_DEST%\inc%_EXT%\boost\context\detail +mkdir: %_DEST%\inc%_EXT%\boost\context\posix +mkdir: %_DEST%\inc%_EXT%\boost\context\windows +mkdir: %_DEST%\inc%_EXT%\boost\convert +mkdir: %_DEST%\inc%_EXT%\boost\convert\detail +mkdir: %_DEST%\inc%_EXT%\boost\core mkdir: %_DEST%\inc%_EXT%\boost\coroutine mkdir: %_DEST%\inc%_EXT%\boost\coroutine\detail -mkdir: %_DEST%\inc%_EXT%\boost\coroutine\v1 -mkdir: %_DEST%\inc%_EXT%\boost\coroutine\v1\detail -mkdir: %_DEST%\inc%_EXT%\boost\coroutine\v2 -mkdir: %_DEST%\inc%_EXT%\boost\coroutine\v2\detail +mkdir: %_DEST%\inc%_EXT%\boost\coroutine2 +mkdir: %_DEST%\inc%_EXT%\boost\coroutine2\detail mkdir: %_DEST%\inc%_EXT%\boost\date_time mkdir: %_DEST%\inc%_EXT%\boost\date_time\gregorian mkdir: %_DEST%\inc%_EXT%\boost\date_time\local_time mkdir: %_DEST%\inc%_EXT%\boost\date_time\posix_time mkdir: %_DEST%\inc%_EXT%\boost\detail -mkdir: %_DEST%\inc%_EXT%\boost\detail\win +mkdir: %_DEST%\inc%_EXT%\boost\detail\winapi +mkdir: %_DEST%\inc%_EXT%\boost\detail\winapi\detail mkdir: %_DEST%\inc%_EXT%\boost\dynamic_bitset mkdir: %_DEST%\inc%_EXT%\boost\exception mkdir: %_DEST%\inc%_EXT%\boost\exception\detail +mkdir: %_DEST%\inc%_EXT%\boost\fiber +mkdir: %_DEST%\inc%_EXT%\boost\fiber\detail +mkdir: %_DEST%\inc%_EXT%\boost\fiber\future +mkdir: %_DEST%\inc%_EXT%\boost\fiber\future\detail mkdir: %_DEST%\inc%_EXT%\boost\filesystem mkdir: %_DEST%\inc%_EXT%\boost\filesystem\detail -mkdir: %_DEST%\inc%_EXT%\boost\filesystem\v2 -mkdir: %_DEST%\inc%_EXT%\boost\filesystem\v3 mkdir: %_DEST%\inc%_EXT%\boost\flyweight mkdir: %_DEST%\inc%_EXT%\boost\flyweight\detail mkdir: %_DEST%\inc%_EXT%\boost\format @@ -115,9 +155,10 @@ mkdir: %_DEST%\inc%_EXT%\boost\function_types\detail\pp_tags mkdir: %_DEST%\inc%_EXT%\boost\function_types\detail\pp_variate_loop mkdir: %_DEST%\inc%_EXT%\boost\function_types\detail\synthesize_impl mkdir: %_DEST%\inc%_EXT%\boost\functional -mkdir: %_DEST%\inc%_EXT%\boost\functional\detail mkdir: %_DEST%\inc%_EXT%\boost\functional\hash mkdir: %_DEST%\inc%_EXT%\boost\functional\hash\detail +mkdir: %_DEST%\inc%_EXT%\boost\functional\overloaded_function +mkdir: %_DEST%\inc%_EXT%\boost\functional\overloaded_function\detail mkdir: %_DEST%\inc%_EXT%\boost\fusion mkdir: %_DEST%\inc%_EXT%\boost\fusion\adapted mkdir: %_DEST%\inc%_EXT%\boost\fusion\adapted\adt @@ -265,6 +306,14 @@ mkdir: %_DEST%\inc%_EXT%\boost\graph\parallel mkdir: %_DEST%\inc%_EXT%\boost\graph\parallel\detail mkdir: %_DEST%\inc%_EXT%\boost\graph\planar_detail mkdir: %_DEST%\inc%_EXT%\boost\graph\property_maps +mkdir: %_DEST%\inc%_EXT%\boost\hana +mkdir: %_DEST%\inc%_EXT%\boost\hana\detail +mkdir: %_DEST%\inc%_EXT%\boost\hana\experimental +mkdir: %_DEST%\inc%_EXT%\boost\hana\ext +mkdir: %_DEST%\inc%_EXT%\boost\hana\functional +mkdir: %_DEST%\inc%_EXT%\boost\hana\fwd +mkdir: %_DEST%\inc%_EXT%\boost\heap +mkdir: %_DEST%\inc%_EXT%\boost\heap\detail mkdir: %_DEST%\inc%_EXT%\boost\icl mkdir: %_DEST%\inc%_EXT%\boost\icl\concept mkdir: %_DEST%\inc%_EXT%\boost\icl\detail @@ -284,6 +333,7 @@ mkdir: %_DEST%\inc%_EXT%\boost\interprocess\smart_ptr mkdir: %_DEST%\inc%_EXT%\boost\interprocess\smart_ptr\detail mkdir: %_DEST%\inc%_EXT%\boost\interprocess\streams mkdir: %_DEST%\inc%_EXT%\boost\interprocess\sync +mkdir: %_DEST%\inc%_EXT%\boost\interprocess\sync\detail mkdir: %_DEST%\inc%_EXT%\boost\interprocess\sync\emulation mkdir: %_DEST%\inc%_EXT%\boost\interprocess\sync\posix mkdir: %_DEST%\inc%_EXT%\boost\interprocess\sync\xsi @@ -304,9 +354,13 @@ mkdir: %_DEST%\inc%_EXT%\boost\iterator mkdir: %_DEST%\inc%_EXT%\boost\iterator\detail mkdir: %_DEST%\inc%_EXT%\boost\lambda mkdir: %_DEST%\inc%_EXT%\boost\lambda\detail +mkdir: %_DEST%\inc%_EXT%\boost\lexical_cast +mkdir: %_DEST%\inc%_EXT%\boost\lexical_cast\detail mkdir: %_DEST%\inc%_EXT%\boost\locale mkdir: %_DEST%\inc%_EXT%\boost\locale\boundary mkdir: %_DEST%\inc%_EXT%\boost\logic +mkdir: %_DEST%\inc%_EXT%\boost\lockfree +mkdir: %_DEST%\inc%_EXT%\boost\lockfree\detail mkdir: %_DEST%\inc%_EXT%\boost\math mkdir: %_DEST%\inc%_EXT%\boost\math\bindings mkdir: %_DEST%\inc%_EXT%\boost\math\bindings\detail @@ -382,6 +436,10 @@ mkdir: %_DEST%\inc%_EXT%\boost\multiprecision mkdir: %_DEST%\inc%_EXT%\boost\multiprecision\cpp_int mkdir: %_DEST%\inc%_EXT%\boost\multiprecision\detail mkdir: %_DEST%\inc%_EXT%\boost\multiprecision\traits +mkdir: %_DEST%\inc%_EXT%\boost\move +mkdir: %_DEST%\inc%_EXT%\boost\move\algo +mkdir: %_DEST%\inc%_EXT%\boost\move\algo\detail +mkdir: %_DEST%\inc%_EXT%\boost\move\detail mkdir: %_DEST%\inc%_EXT%\boost\numeric mkdir: %_DEST%\inc%_EXT%\boost\numeric\conversion mkdir: %_DEST%\inc%_EXT%\boost\numeric\conversion\detail @@ -416,6 +474,7 @@ mkdir: %_DEST%\inc%_EXT%\boost\numeric\ublas\experimental mkdir: %_DEST%\inc%_EXT%\boost\numeric\ublas\operation mkdir: %_DEST%\inc%_EXT%\boost\numeric\ublas\traits mkdir: %_DEST%\inc%_EXT%\boost\optional +mkdir: %_DEST%\inc%_EXT%\boost\optional\detail mkdir: %_DEST%\inc%_EXT%\boost\parameter mkdir: %_DEST%\inc%_EXT%\boost\parameter\aux_ mkdir: %_DEST%\inc%_EXT%\boost\parameter\aux_\preprocessor @@ -465,12 +524,22 @@ mkdir: %_DEST%\inc%_EXT%\boost\pool\detail mkdir: %_DEST%\inc%_EXT%\boost\predef mkdir: %_DEST%\inc%_EXT%\boost\predef\architecture mkdir: %_DEST%\inc%_EXT%\boost\predef\architecture\x86 +mkdir: %_DEST%\inc%_EXT%\boost\predef\compiler mkdir: %_DEST%\inc%_EXT%\boost\predef\detail +mkdir: %_DEST%\inc%_EXT%\boost\predef\hardware +mkdir: %_DEST%\inc%_EXT%\boost\predef\hardware\simd +mkdir: %_DEST%\inc%_EXT%\boost\predef\hardware\simd\arm +mkdir: %_DEST%\inc%_EXT%\boost\predef\hardware\simd\ppc +mkdir: %_DEST%\inc%_EXT%\boost\predef\hardware\simd\x86 +mkdir: %_DEST%\inc%_EXT%\boost\predef\hardware\simd\x86_amd +mkdir: %_DEST%\inc%_EXT%\boost\predef\language mkdir: %_DEST%\inc%_EXT%\boost\predef\library mkdir: %_DEST%\inc%_EXT%\boost\predef\library\c +mkdir: %_DEST%\inc%_EXT%\boost\predef\library\std mkdir: %_DEST%\inc%_EXT%\boost\predef\os mkdir: %_DEST%\inc%_EXT%\boost\predef\os\bsd mkdir: %_DEST%\inc%_EXT%\boost\predef\other +mkdir: %_DEST%\inc%_EXT%\boost\predef\platform mkdir: %_DEST%\inc%_EXT%\boost\preprocessor mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\arithmetic mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\arithmetic\detail @@ -486,6 +555,7 @@ mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\debug mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\detail mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\detail\dmc mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\facilities +mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\facilities\detail mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\iteration mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\iteration\detail mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\iteration\detail\bounds @@ -496,6 +566,7 @@ mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\list\detail\dmc mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\list\detail\edg mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\logical mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\punctuation +mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\punctuation\detail mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\repetition mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\repetition\detail mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\repetition\detail\dmc @@ -507,7 +578,11 @@ mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\seq\detail mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\slot mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\slot\detail mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\tuple +mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\tuple\detail mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\variadic +mkdir: %_DEST%\inc%_EXT%\boost\preprocessor\variadic\detail +mkdir: %_DEST%\inc%_EXT%\boost\process +mkdir: %_DEST%\inc%_EXT%\boost\process\detail mkdir: %_DEST%\inc%_EXT%\boost\program_options mkdir: %_DEST%\inc%_EXT%\boost\program_options\detail mkdir: %_DEST%\inc%_EXT%\boost\property_map @@ -529,6 +604,9 @@ mkdir: %_DEST%\inc%_EXT%\boost\proto\transform\detail mkdir: %_DEST%\inc%_EXT%\boost\proto\transform\detail\preprocessed mkdir: %_DEST%\inc%_EXT%\boost\ptr_container mkdir: %_DEST%\inc%_EXT%\boost\ptr_container\detail +mkdir: %_DEST%\inc%_EXT%\boost\qvm +mkdir: %_DEST%\inc%_EXT%\boost\qvm\detail +mkdir: %_DEST%\inc%_EXT%\boost\qvm\gen mkdir: %_DEST%\inc%_EXT%\boost\random mkdir: %_DEST%\inc%_EXT%\boost\random\detail mkdir: %_DEST%\inc%_EXT%\boost\range @@ -536,7 +614,6 @@ mkdir: %_DEST%\inc%_EXT%\boost\range\adaptor mkdir: %_DEST%\inc%_EXT%\boost\range\algorithm mkdir: %_DEST%\inc%_EXT%\boost\range\algorithm_ext mkdir: %_DEST%\inc%_EXT%\boost\range\detail -mkdir: %_DEST%\inc%_EXT%\boost\range\detail\vc6 mkdir: %_DEST%\inc%_EXT%\boost\ratio mkdir: %_DEST%\inc%_EXT%\boost\ratio\detail mkdir: %_DEST%\inc%_EXT%\boost\ratio\detail\mpl @@ -670,9 +747,6 @@ mkdir: %_DEST%\inc%_EXT%\boost\spirit\home\support\nonterminal mkdir: %_DEST%\inc%_EXT%\boost\spirit\home\support\utree mkdir: %_DEST%\inc%_EXT%\boost\spirit\home\support\utree\detail mkdir: %_DEST%\inc%_EXT%\boost\spirit\include -mkdir: %_DEST%\inc%_EXT%\boost\spirit\iterator -mkdir: %_DEST%\inc%_EXT%\boost\spirit\meta -mkdir: %_DEST%\inc%_EXT%\boost\spirit\phoenix mkdir: %_DEST%\inc%_EXT%\boost\spirit\repository mkdir: %_DEST%\inc%_EXT%\boost\spirit\repository\home mkdir: %_DEST%\inc%_EXT%\boost\spirit\repository\home\karma @@ -692,6 +766,7 @@ mkdir: %_DEST%\inc%_EXT%\boost\spirit\utility mkdir: %_DEST%\inc%_EXT%\boost\statechart mkdir: %_DEST%\inc%_EXT%\boost\statechart\detail mkdir: %_DEST%\inc%_EXT%\boost\system +mkdir: %_DEST%\inc%_EXT%\boost\system\detail mkdir: %_DEST%\inc%_EXT%\boost\test mkdir: %_DEST%\inc%_EXT%\boost\test\detail mkdir: %_DEST%\inc%_EXT%\boost\test\impl @@ -707,8 +782,13 @@ mkdir: %_DEST%\inc%_EXT%\boost\test\utils\runtime\cla\iface mkdir: %_DEST%\inc%_EXT%\boost\test\utils\runtime\env mkdir: %_DEST%\inc%_EXT%\boost\test\utils\runtime\file mkdir: %_DEST%\inc%_EXT%\boost\thread +mkdir: %_DEST%\inc%_EXT%\boost\thread\csbl mkdir: %_DEST%\inc%_EXT%\boost\thread\detail +mkdir: %_DEST%\inc%_EXT%\boost\thread\executors +mkdir: %_DEST%\inc%_EXT%\boost\thread\experimental +mkdir: %_DEST%\inc%_EXT%\boost\thread\futures mkdir: %_DEST%\inc%_EXT%\boost\thread\pthread +mkdir: %_DEST%\inc%_EXT%\boost\thread\v2 mkdir: %_DEST%\inc%_EXT%\boost\thread\win32 mkdir: %_DEST%\inc%_EXT%\boost\timer mkdir: %_DEST%\inc%_EXT%\boost\tr1 @@ -716,11 +796,18 @@ mkdir: %_DEST%\inc%_EXT%\boost\tr1\detail mkdir: %_DEST%\inc%_EXT%\boost\tr1\tr1 mkdir: %_DEST%\inc%_EXT%\boost\tr1\tr1\bcc32 mkdir: %_DEST%\inc%_EXT%\boost\tr1\tr1\sun +mkdir: %_DEST%\inc%_EXT%\boost\tti +mkdir: %_DEST%\inc%_EXT%\boost\tti\detail +mkdir: %_DEST%\inc%_EXT%\boost\tti\gen mkdir: %_DEST%\inc%_EXT%\boost\tuple mkdir: %_DEST%\inc%_EXT%\boost\tuple\detail +mkdir: %_DEST%\inc%_EXT%\boost\type_erasure +mkdir: %_DEST%\inc%_EXT%\boost\type_erasure\detail +mkdir: %_DEST%\inc%_EXT%\boost\type_index +mkdir: %_DEST%\inc%_EXT%\boost\type_index\detail +mkdir: %_DEST%\inc%_EXT%\boost\type_index\runtime_cast mkdir: %_DEST%\inc%_EXT%\boost\type_traits mkdir: %_DEST%\inc%_EXT%\boost\type_traits\detail -mkdir: %_DEST%\inc%_EXT%\boost\type_traits\msvc mkdir: %_DEST%\inc%_EXT%\boost\typeof mkdir: %_DEST%\inc%_EXT%\boost\typeof\dmc mkdir: %_DEST%\inc%_EXT%\boost\typeof\msvc @@ -749,6 +836,7 @@ mkdir: %_DEST%\inc%_EXT%\boost\unordered\detail mkdir: %_DEST%\inc%_EXT%\boost\utility mkdir: %_DEST%\inc%_EXT%\boost\utility\detail mkdir: %_DEST%\inc%_EXT%\boost\uuid +mkdir: %_DEST%\inc%_EXT%\boost\uuid\detail mkdir: %_DEST%\inc%_EXT%\boost\variant mkdir: %_DEST%\inc%_EXT%\boost\variant\detail mkdir: %_DEST%\inc%_EXT%\boost\wave @@ -783,6 +871,8 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\algorithm\string\* %_DEST%\inc%_EXT%\boost\algorithm\string ..\%__SRC%\inc\boost\algorithm\string\detail\* %_DEST%\inc%_EXT%\boost\algorithm\string\detail ..\%__SRC%\inc\boost\algorithm\string\std\* %_DEST%\inc%_EXT%\boost\algorithm\string\std +..\%__SRC%\inc\boost\align\* %_DEST%\inc%_EXT%\boost\align +..\%__SRC%\inc\boost\arlign\detail\* %_DEST%\inc%_EXT%\boost\align\detail ..\%__SRC%\inc\boost\archive\* %_DEST%\inc%_EXT%\boost\archive ..\%__SRC%\inc\boost\archive\detail\* %_DEST%\inc%_EXT%\boost\archive\detail ..\%__SRC%\inc\boost\archive\impl\* %_DEST%\inc%_EXT%\boost\archive\impl @@ -831,8 +921,33 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\chono\detail\inlined\mac\* %_DEST%\inc%_EXT%\boost\chrono\detail\inlined\mac ..\%__SRC%\inc\boost\chono\detail\inlined\posix\* %_DEST%\inc%_EXT%\boost\chrono\detail\inlined\posix ..\%__SRC%\inc\boost\chono\detail\inlined\win\* %_DEST%\inc%_EXT%\boost\chrono\detail\inlined\win +..\%__SRC%\inc\boost\chono\io\* %_DEST%\inc%_EXT%\boost\chrono\io +..\%__SRC%\inc\boost\chono\io\utility\* %_DEST%\inc%_EXT%\boost\chrono\io\utility +..\%__SRC%\inc\boost\chono\typeof\* %_DEST%\inc%_EXT%\boost\chrono\typeof ..\%__SRC%\inc\boost\circular_buffer\* %_DEST%\inc%_EXT%\boost\circular_buffer ..\%__SRC%\inc\boost\compatibility\cpp_c_headers\* %_DEST%\inc%_EXT%\boost\compatibility\cpp_c_headers +..\%__SRC%\inc\boost\compute\* %_DEST%\inc%_EXT%\boost\compute +..\%__SRC%\inc\boost\compute\algorithm\* %_DEST%\inc%_EXT%\boost\compute\algorithm +..\%__SRC%\inc\boost\compute\async\* %_DEST%\inc%_EXT%\boost\compute\async +..\%__SRC%\inc\boost\compute\container\* %_DEST%\inc%_EXT%\boost\container +..\%__SRC%\inc\boost\compute\detail\* %_DEST%\inc%_EXT%\boost\compute\detail +..\%__SRC%\inc\boost\compute\exception\* %_DEST%\inc%_EXT%\boost\exception\detail +..\%__SRC%\inc\boost\compute\experimentall\* %_DEST%\inc%_EXT%\boost\experimental\detail +..\%__SRC%\inc\boost\compute\functional\* %_DEST%\inc%_EXT%\boost\compute\functional\ +..\%__SRC%\inc\boost\compute\functional\detail\* %_DEST%\inc%_EXT%\boost\compute\functional\detail +..\%__SRC%\inc\boost\compute\image\* %_DEST%\inc%_EXT%\boost\compute\image +..\%__SRC%\inc\boost\compute\interop\* %_DEST%\inc%_EXT%\boost\compute\interop +..\%__SRC%\inc\boost\compute\interop\eigen\* %_DEST%\inc%_EXT%\boost\compute\interop\eigen +..\%__SRC%\inc\boost\compute\interop\opencv\* %_DEST%\inc%_EXT%\boost\compute\interop\opencv +..\%__SRC%\inc\boost\compute\interop\opengl\* %_DEST%\inc%_EXT%\boost\compute\interop\opengl +..\%__SRC%\inc\boost\compute\interop\qt\* %_DEST%\inc%_EXT%\boost\compute\interop\qt +..\%__SRC%\inc\boost\compute\iterator\* %_DEST%\inc%_EXT%\boost\compute\iterator +..\%__SRC%\inc\boost\compute\lambda\* %_DEST%\inc%_EXT%\boost\compute\lambda +..\%__SRC%\inc\boost\compute\memory\* %_DEST%\inc%_EXT%\boost\compute\memory +..\%__SRC%\inc\boost\compute\random\* %_DEST%\inc%_EXT%\boost\compute\random +..\%__SRC%\inc\boost\compute\type_traits\* %_DEST%\inc%_EXT%\boost\compute\type_traits +..\%__SRC%\inc\boost\compute\types\* %_DEST%\inc%_EXT%\boost\compute\types +..\%__SRC%\inc\boost\compute\utility\* %_DEST%\inc%_EXT%\boost\compute\utility ..\%__SRC%\inc\boost\concept\* %_DEST%\inc%_EXT%\boost\concept ..\%__SRC%\inc\boost\concept\detail\* %_DEST%\inc%_EXT%\boost\concept\detail ..\%__SRC%\inc\boost\concept_check\* %_DEST%\inc%_EXT%\boost\concept_check @@ -843,36 +958,47 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\config\platform\* %_DEST%\inc%_EXT%\boost\config\platform ..\%__SRC%\inc\boost\config\stdlib\* %_DEST%\inc%_EXT%\boost\config\stdlib ..\%__SRC%\inc\boost\container\* %_DEST%\inc%_EXT%\boost\container +..\%__SRC%\inc\boost\container\detail\* %_DEST%\inc%_EXT%\boost\container\detail +..\%__SRC%\inc\boost\container\pmr\* %_DEST%\inc%_EXT%\boost\container\pmr +..\%__SRC%\inc\boost\convert\* %_DEST%\inc%_EXT%\boost\convert +..\%__SRC%\inc\boost\convert\detail\* %_DEST%\inc%_EXT%\boost\convert\detail +..\%__SRC%\inc\boost\core\* %_DEST%\inc%_EXT%\boost\core ..\%__SRC%\inc\boost\coroutine\detail\* %_DEST%\inc%_EXT%\boost\coroutine\detail ..\%__SRC%\inc\boost\coroutine\* %_DEST%\inc%_EXT%\boost\coroutine -..\%__SRC%\inc\boost\coroutine\v1\* %_DEST%\inc%_EXT%\boost\coroutine\v1 -..\%__SRC%\inc\boost\coroutine\v1\detail\* %_DEST%\inc%_EXT%\boost\coroutine\v1\detail -..\%__SRC%\inc\boost\coroutine\v2\* %_DEST%\inc%_EXT%\boost\coroutine\v2 -..\%__SRC%\inc\boost\coroutine\v2\detail\* %_DEST%\inc%_EXT%\boost\coroutine\v2\detail +..\%__SRC%\inc\boost\coroutine\detail\* %_DEST%\inc%_EXT%\boost\coroutine\detail +..\%__SRC%\inc\boost\coroutine2\* %_DEST%\inc%_EXT%\boost\coroutine2 +..\%__SRC%\inc\boost\coroutine2\detail\* %_DEST%\inc%_EXT%\boost\coroutine2\detail +..\%__SRC%\inc\boost\context\* %_DEST%\inc%_EXT%\boost\context +..\%__SRC%\inc\boost\context\detail\* %_DEST%\inc%_EXT%\boost\context\detail +..\%__SRC%\inc\boost\context\posix\* %_DEST%\inc%_EXT%\boost\context\posix +..\%__SRC%\inc\boost\context\windows\* %_DEST%\inc%_EXT%\boost\context\windows ..\%__SRC%\inc\boost\date_time\* %_DEST%\inc%_EXT%\boost\date_time ..\%__SRC%\inc\boost\date_time\gregorian\* %_DEST%\inc%_EXT%\boost\date_time\gregorian ..\%__SRC%\inc\boost\date_time\local_time\* %_DEST%\inc%_EXT%\boost\date_time\local_time ..\%__SRC%\inc\boost\date_time\posix_time\* %_DEST%\inc%_EXT%\boost\date_time\posix_time ..\%__SRC%\inc\boost\detail\* %_DEST%\inc%_EXT%\boost\detail -..\%__SRC%\inc\boost\detail\win\* %_DEST%\inc%_EXT%\boost\detail\win +..\%__SRC%\inc\boost\detail\winapi\* %_DEST%\inc%_EXT%\boost\detail\winapi +..\%__SRC%\inc\boost\detail\winapi\detail\* %_DEST%\inc%_EXT%\boost\detail\winapi\detail ..\%__SRC%\inc\boost\dynamic_bitset\* %_DEST%\inc%_EXT%\boost\dynamic_bitset ..\%__SRC%\inc\boost\exception\* %_DEST%\inc%_EXT%\boost\exception ..\%__SRC%\inc\boost\exception\detail\* %_DEST%\inc%_EXT%\boost\exception\detail +..\%__SRC%\inc\boost\fiber\* %_DEST%\inc%_EXT%\boost\fiber +..\%__SRC%\inc\boost\fiber\detail\* %_DEST%\inc%_EXT%\boost\fiber\detail +..\%__SRC%\inc\boost\fiber\future\* %_DEST%\inc%_EXT%\boost\fiber\future +..\%__SRC%\inc\boost\fiber\future\detail\* %_DEST%\inc%_EXT%\boost\fiber\future\detail ..\%__SRC%\inc\boost\filesystem\* %_DEST%\inc%_EXT%\boost\filesystem ..\%__SRC%\inc\boost\filesystem\detail\* %_DEST%\inc%_EXT%\boost\filesystem\detail -..\%__SRC%\inc\boost\filesystem\v2\* %_DEST%\inc%_EXT%\boost\filesystem\v2 -..\%__SRC%\inc\boost\filesystem\v3\* %_DEST%\inc%_EXT%\boost\filesystem\v3 ..\%__SRC%\inc\boost\flyweight\* %_DEST%\inc%_EXT%\boost\flyweight ..\%__SRC%\inc\boost\flyweight\detail\* %_DEST%\inc%_EXT%\boost\flyweight\detail ..\%__SRC%\inc\boost\format\* %_DEST%\inc%_EXT%\boost\format ..\%__SRC%\inc\boost\format\detail\* %_DEST%\inc%_EXT%\boost\format\detail ..\%__SRC%\inc\boost\function\* %_DEST%\inc%_EXT%\boost\function ..\%__SRC%\inc\boost\function\detail\* %_DEST%\inc%_EXT%\boost\function\detail -..\%__SRC%\inc\boost\function_types\config\* %_DEST%\inc%_EXT%\boost\function_types\config ..\%__SRC%\inc\boost\function_types\* %_DEST%\inc%_EXT%\boost\function_types +..\%__SRC%\inc\boost\function_types\config\* %_DEST%\inc%_EXT%\boost\function_types\config +..\%__SRC%\inc\boost\function_types\detail\* %_DEST%\inc%_EXT%\boost\function_types\detail ..\%__SRC%\inc\boost\function_types\detail\classifier_impl\* %_DEST%\inc%_EXT%\boost\function_types\detail\classifier_impl ..\%__SRC%\inc\boost\function_types\detail\components_impl\* %_DEST%\inc%_EXT%\boost\function_types\detail\components_impl -..\%__SRC%\inc\boost\function_types\detail\* %_DEST%\inc%_EXT%\boost\function_types\detail ..\%__SRC%\inc\boost\function_types\detail\encoding\* %_DEST%\inc%_EXT%\boost\function_types\detail\encoding ..\%__SRC%\inc\boost\function_types\detail\pp_cc_loop\* %_DEST%\inc%_EXT%\boost\function_types\detail\pp_cc_loop ..\%__SRC%\inc\boost\function_types\detail\pp_retag_default_cc\* %_DEST%\inc%_EXT%\boost\function_types\detail\pp_retag_default_cc @@ -880,9 +1006,10 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\function_types\detail\pp_variate_loop\* %_DEST%\inc%_EXT%\boost\function_types\detail\pp_variate_loop ..\%__SRC%\inc\boost\function_types\detail\synthesize_impl\* %_DEST%\inc%_EXT%\boost\function_types\detail\synthesize_impl ..\%__SRC%\inc\boost\functional\* %_DEST%\inc%_EXT%\boost\functional -..\%__SRC%\inc\boost\functional\detail\* %_DEST%\inc%_EXT%\boost\functional\detail ..\%__SRC%\inc\boost\functional\hash\* %_DEST%\inc%_EXT%\boost\functional\hash ..\%__SRC%\inc\boost\functional\hash\detail\* %_DEST%\inc%_EXT%\boost\functional\hash\detail +..\%__SRC%\inc\boost\functional\overloaded_function\* %_DEST%\inc%_EXT%\boost\functional\overloaded_function +..\%__SRC%\inc\boost\functional\overloaded_function\detail\* %_DEST%\inc%_EXT%\boost\functional\overloaded_function\detail ..\%__SRC%\inc\boost\fusion\adapted\adt\* %_DEST%\inc%_EXT%\boost\fusion\adapted\adt ..\%__SRC%\inc\boost\fusion\adapted\array\* %_DEST%\inc%_EXT%\boost\fusion\adapted\array ..\%__SRC%\inc\boost\fusion\adapted\boost_array\* %_DEST%\inc%_EXT%\boost\fusion\adapted\boost_array @@ -1020,9 +1147,18 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\graph\parallel\detail\* %_DEST%\inc%_EXT%\boost\graph\parallel\detail ..\%__SRC%\inc\boost\graph\planar_detail\* %_DEST%\inc%_EXT%\boost\graph\planar_detail ..\%__SRC%\inc\boost\graph\property_maps\* %_DEST%\inc%_EXT%\boost\graph\property_maps +..\%__SRC%\inc\boost\hana\* %_DEST%\inc%_EXT%\boost\hana +..\%__SRC%\inc\boost\hana\detail\* %_DEST%\inc%_EXT%\boost\hana\detail +..\%__SRC%\inc\boost\hana\experimental\* %_DEST%\inc%_EXT%\boost\hana\experimental +..\%__SRC%\inc\boost\hana\ext\* %_DEST%\inc%_EXT%\boost\hana\ext +..\%__SRC%\inc\boost\hana\functional\* %_DEST%\inc%_EXT%\boost\hana\functional +..\%__SRC%\inc\boost\hana\fwd\* %_DEST%\inc%_EXT%\boost\hana\fwd +..\%__SRC%\inc\boost\heap\* %_DEST%\inc%_EXT%\boost\heap +..\%__SRC%\inc\boost\heap\detail\* %_DEST%\inc%_EXT%\boost\heap\detail ..\%__SRC%\inc\boost\icl\* %_DEST%\inc%_EXT%\boost\icl ..\%__SRC%\inc\boost\icl\concept\* %_DEST%\inc%_EXT%\boost\icl\concept ..\%__SRC%\inc\boost\icl\detail\* %_DEST%\inc%_EXT%\boost\icl\detail +..\%__SRC%\inc\boost\icl\predicates\* %_DEST%\inc%_EXT%\boost\icl\predicates ..\%__SRC%\inc\boost\icl\type_traits\* %_DEST%\inc%_EXT%\boost\icl\type_traits ..\%__SRC%\inc\boost\integer\* %_DEST%\inc%_EXT%\boost\integer ..\%__SRC%\inc\boost\interprocess\allocators\* %_DEST%\inc%_EXT%\boost\interprocess\allocators @@ -1040,6 +1176,7 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\interprocess\smart_ptr\detail\* %_DEST%\inc%_EXT%\boost\interprocess\smart_ptr\detail ..\%__SRC%\inc\boost\interprocess\streams\* %_DEST%\inc%_EXT%\boost\interprocess\streams ..\%__SRC%\inc\boost\interprocess\sync\* %_DEST%\inc%_EXT%\boost\interprocess\sync +..\%__SRC%\inc\boost\interprocess\sync\detail\* %_DEST%\inc%_EXT%\boost\interprocess\sync\detail ..\%__SRC%\inc\boost\interprocess\sync\emulation\* %_DEST%\inc%_EXT%\boost\interprocess\sync\emulation ..\%__SRC%\inc\boost\interprocess\sync\posix\* %_DEST%\inc%_EXT%\boost\interprocess\sync\posix ..\%__SRC%\inc\boost\interprocess\sync\xsi\* %_DEST%\inc%_EXT%\boost\interprocess\sync\xsi @@ -1060,8 +1197,12 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\iterator\detail\* %_DEST%\inc%_EXT%\boost\iterator\detail ..\%__SRC%\inc\boost\lambda\* %_DEST%\inc%_EXT%\boost\lambda ..\%__SRC%\inc\boost\lambda\detail\* %_DEST%\inc%_EXT%\boost\lambda\detail +..\%__SRC%\inc\boost\lexical_cast\* %_DEST%\inc%_EXT%\boost\lexical_cast +..\%__SRC%\inc\boost\lexical_cast\detail\* %_DEST%\inc%_EXT%\boost\lexical_cast\detail ..\%__SRC%\inc\boost\locale\* %_DEST%\inc%_EXT%\boost\locale ..\%__SRC%\inc\boost\locale\boundary\* %_DEST%\inc%_EXT%\boost\locale\boundary +..\%__SRC%\inc\boost\lockfree\* %_DEST%\inc%_EXT%\boost\lockfree +..\%__SRC%\inc\boost\lockfree\detail\* %_DEST%\inc%_EXT%\boost\lockfree\detail ..\%__SRC%\inc\boost\logic\* %_DEST%\inc%_EXT%\boost\logic ..\%__SRC%\inc\boost\math\bindings\* %_DEST%\inc%_EXT%\boost\math\bindings ..\%__SRC%\inc\boost\math\bindings\detail\* %_DEST%\inc%_EXT%\boost\math\bindings\detail @@ -1077,6 +1218,8 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\math\tools\* %_DEST%\inc%_EXT%\boost\math\tools ..\%__SRC%\inc\boost\math\tools\detail\* %_DEST%\inc%_EXT%\boost\math\tools\detail ..\%__SRC%\inc\boost\move\* %_DEST%\inc%_EXT%\boost\move +..\%__SRC%\inc\boost\move\algo\* %_DEST%\inc%_EXT%\boost\move\algo +..\%__SRC%\inc\boost\move\algo\detail\* %_DEST%\inc%_EXT%\boost\move\algo\detail ..\%__SRC%\inc\boost\move\detail\* %_DEST%\inc%_EXT%\boost\move\detail ..\%__SRC%\inc\boost\mpi\* %_DEST%\inc%_EXT%\boost\mpi ..\%__SRC%\inc\boost\mpi\collectives\* %_DEST%\inc%_EXT%\boost\mpi\collectives @@ -1159,6 +1302,7 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\numeric\ublas\operation\* %_DEST%\inc%_EXT%\boost\numeric\ublas\operation ..\%__SRC%\inc\boost\numeric\ublas\traits\* %_DEST%\inc%_EXT%\boost\numeric\ublas\traits ..\%__SRC%\inc\boost\optional\* %_DEST%\inc%_EXT%\boost\optional +..\%__SRC%\inc\boost\optional\detail\* %_DEST%\inc%_EXT%\boost\optional\detail ..\%__SRC%\inc\boost\parameter\aux_\* %_DEST%\inc%_EXT%\boost\parameter\aux_ ..\%__SRC%\inc\boost\parameter\aux_\preprocessor\* %_DEST%\inc%_EXT%\boost\parameter\aux_\preprocessor ..\%__SRC%\inc\boost\parameter\aux_\python\* %_DEST%\inc%_EXT%\boost\parameter\aux_\python @@ -1208,12 +1352,22 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\predef\* %_DEST%\inc%_EXT%\boost\predef ..\%__SRC%\inc\boost\predef\architecture\* %_DEST%\inc%_EXT%\boost\predef\architecture ..\%__SRC%\inc\boost\predef\architecture\x86\* %_DEST%\inc%_EXT%\boost\predef\architecture\x86 +..\%__SRC%\inc\boost\predef\compiler\* %_DEST%\inc%_EXT%\boost\predef\compiler ..\%__SRC%\inc\boost\predef\detail\* %_DEST%\inc%_EXT%\boost\predef\detail +..\%__SRC%\inc\boost\predef\hardware\* %_DEST%\inc%_EXT%\boost\predef\hardware +..\%__SRC%\inc\boost\predef\hardware\simd\* %_DEST%\inc%_EXT%\boost\predef\hardware\simd +..\%__SRC%\inc\boost\predef\hardware\simd\arm\* %_DEST%\inc%_EXT%\boost\predef\hardware\simd\arm +..\%__SRC%\inc\boost\predef\hardware\simd\ppc\* %_DEST%\inc%_EXT%\boost\predef\hardware\simd\ppc +..\%__SRC%\inc\boost\predef\hardware\simd\x86\* %_DEST%\inc%_EXT%\boost\predef\hardware\simd\x86 +..\%__SRC%\inc\boost\predef\hardware\simd\x86_amd\* %_DEST%\inc%_EXT%\boost\predef\hardware\simd\x86_amd +..\%__SRC%\inc\boost\predef\language\* %_DEST%\inc%_EXT%\boost\predef\language ..\%__SRC%\inc\boost\predef\library\* %_DEST%\inc%_EXT%\boost\predef\library ..\%__SRC%\inc\boost\predef\library\c\* %_DEST%\inc%_EXT%\boost\predef\library\c +..\%__SRC%\inc\boost\predef\library\std\* %_DEST%\inc%_EXT%\boost\predef\library\std ..\%__SRC%\inc\boost\predef\os\* %_DEST%\inc%_EXT%\boost\predef\os ..\%__SRC%\inc\boost\predef\os\bsd\* %_DEST%\inc%_EXT%\boost\predef\os\bsd ..\%__SRC%\inc\boost\predef\other\* %_DEST%\inc%_EXT%\boost\predef\other +..\%__SRC%\inc\boost\predef\platform\* %_DEST%\inc%_EXT%\boost\predef\platform ..\%__SRC%\inc\boost\preprocessor\arithmetic\* %_DEST%\inc%_EXT%\boost\preprocessor\arithmetic ..\%__SRC%\inc\boost\preprocessor\arithmetic\detail\* %_DEST%\inc%_EXT%\boost\preprocessor\arithmetic\detail ..\%__SRC%\inc\boost\preprocessor\array\* %_DEST%\inc%_EXT%\boost\preprocessor\array @@ -1229,6 +1383,7 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\preprocessor\detail\* %_DEST%\inc%_EXT%\boost\preprocessor\detail ..\%__SRC%\inc\boost\preprocessor\detail\dmc\* %_DEST%\inc%_EXT%\boost\preprocessor\detail\dmc ..\%__SRC%\inc\boost\preprocessor\facilities\* %_DEST%\inc%_EXT%\boost\preprocessor\facilities +..\%__SRC%\inc\boost\preprocessor\facilities\detail\* %_DEST%\inc%_EXT%\boost\preprocessor\facilities\detail ..\%__SRC%\inc\boost\preprocessor\iteration\* %_DEST%\inc%_EXT%\boost\preprocessor\iteration ..\%__SRC%\inc\boost\preprocessor\iteration\detail\bounds\* %_DEST%\inc%_EXT%\boost\preprocessor\iteration\detail\bounds ..\%__SRC%\inc\boost\preprocessor\iteration\detail\* %_DEST%\inc%_EXT%\boost\preprocessor\iteration\detail @@ -1239,6 +1394,7 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\preprocessor\list\detail\edg\* %_DEST%\inc%_EXT%\boost\preprocessor\list\detail\edg ..\%__SRC%\inc\boost\preprocessor\logical\* %_DEST%\inc%_EXT%\boost\preprocessor\logical ..\%__SRC%\inc\boost\preprocessor\punctuation\* %_DEST%\inc%_EXT%\boost\preprocessor\punctuation +..\%__SRC%\inc\boost\preprocessor\punctuation\detail\* %_DEST%\inc%_EXT%\boost\preprocessor\punctuation\detail ..\%__SRC%\inc\boost\preprocessor\repetition\* %_DEST%\inc%_EXT%\boost\preprocessor\repetition ..\%__SRC%\inc\boost\preprocessor\repetition\detail\* %_DEST%\inc%_EXT%\boost\preprocessor\repetition\detail ..\%__SRC%\inc\boost\preprocessor\repetition\detail\dmc\* %_DEST%\inc%_EXT%\boost\preprocessor\repetition\detail\dmc @@ -1250,7 +1406,11 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\preprocessor\slot\* %_DEST%\inc%_EXT%\boost\preprocessor\slot ..\%__SRC%\inc\boost\preprocessor\slot\detail\* %_DEST%\inc%_EXT%\boost\preprocessor\slot\detail ..\%__SRC%\inc\boost\preprocessor\tuple\* %_DEST%\inc%_EXT%\boost\preprocessor\tuple +..\%__SRC%\inc\boost\preprocessor\tuple\detail\* %_DEST%\inc%_EXT%\boost\preprocessor\tuple\detail ..\%__SRC%\inc\boost\preprocessor\variadic\* %_DEST%\inc%_EXT%\boost\preprocessor\variadic +..\%__SRC%\inc\boost\preprocessor\variadic\detail\* %_DEST%\inc%_EXT%\boost\preprocessor\variadic\detail +..\%__SRC%\inc\boost\process\* %_DEST%\inc%_EXT%\boost\process +..\%__SRC%\inc\boost\process\detail\* %_DEST%\inc%_EXT%\boost\process\detail ..\%__SRC%\inc\boost\program_options\* %_DEST%\inc%_EXT%\boost\program_options ..\%__SRC%\inc\boost\program_options\detail\* %_DEST%\inc%_EXT%\boost\program_options\detail ..\%__SRC%\inc\boost\property_map\* %_DEST%\inc%_EXT%\boost\property_map @@ -1269,6 +1429,9 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\proto\transform\detail\preprocessed\* %_DEST%\inc%_EXT%\boost\proto\transform\detail\preprocessed ..\%__SRC%\inc\boost\ptr_container\* %_DEST%\inc%_EXT%\boost\ptr_container ..\%__SRC%\inc\boost\ptr_container\detail\* %_DEST%\inc%_EXT%\boost\ptr_container\detail +..\%__SRC%\inc\boost\qvm\* %_DEST%\inc%_EXT%\boost\qvm +..\%__SRC%\inc\boost\qvm\detail\* %_DEST%\inc%_EXT%\boost\qvm\detail +..\%__SRC%\inc\boost\qvm\gen\* %_DEST%\inc%_EXT%\boost\qvm\gen ..\%__SRC%\inc\boost\random\* %_DEST%\inc%_EXT%\boost\random ..\%__SRC%\inc\boost\random\detail\* %_DEST%\inc%_EXT%\boost\random\detail ..\%__SRC%\inc\boost\range\adaptor\* %_DEST%\inc%_EXT%\boost\range\adaptor @@ -1276,7 +1439,6 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\range\algorithm_ext\* %_DEST%\inc%_EXT%\boost\range\algorithm_ext ..\%__SRC%\inc\boost\range\* %_DEST%\inc%_EXT%\boost\range ..\%__SRC%\inc\boost\range\detail\* %_DEST%\inc%_EXT%\boost\range\detail -..\%__SRC%\inc\boost\range\detail\vc6\* %_DEST%\inc%_EXT%\boost\range\detail\vc6 ..\%__SRC%\inc\boost\ratio\* %_DEST%\inc%_EXT%\boost\ratio ..\%__SRC%\inc\boost\ratio\detail\* %_DEST%\inc%_EXT%\boost\ratio\detail ..\%__SRC%\inc\boost\ratio\mpl\* %_DEST%\inc%_EXT%\boost\ratio\mpl @@ -1415,9 +1577,6 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\spirit\home\support\iterators\detail\* %_DEST%\inc%_EXT%\boost\spirit\home\support\iterators\detail ..\%__SRC%\inc\boost\spirit\home\support\nonterminal\* %_DEST%\inc%_EXT%\boost\spirit\home\support\nonterminal ..\%__SRC%\inc\boost\spirit\include\* %_DEST%\inc%_EXT%\boost\spirit\include -..\%__SRC%\inc\boost\spirit\iterator\* %_DEST%\inc%_EXT%\boost\spirit\iterator -..\%__SRC%\inc\boost\spirit\meta\* %_DEST%\inc%_EXT%\boost\spirit\meta -..\%__SRC%\inc\boost\spirit\phoenix\* %_DEST%\inc%_EXT%\boost\spirit\phoenix ..\%__SRC%\inc\boost\spirit\repository\home\* %_DEST%\inc%_EXT%\boost\spirit\repository\home ..\%__SRC%\inc\boost\spirit\repository\home\karma\* %_DEST%\inc%_EXT%\boost\spirit\repository\home\karma ..\%__SRC%\inc\boost\spirit\repository\home\karma\directive\* %_DEST%\inc%_EXT%\boost\spirit\repository\home\karma\directive @@ -1428,12 +1587,10 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\spirit\repository\home\qi\primitive\* %_DEST%\inc%_EXT%\boost\spirit\repository\home\qi\primitive ..\%__SRC%\inc\boost\spirit\repository\home\support\* %_DEST%\inc%_EXT%\boost\spirit\repository\home\support ..\%__SRC%\inc\boost\spirit\repository\include\* %_DEST%\inc%_EXT%\boost\spirit\repository\include -..\%__SRC%\inc\boost\spirit\symbols\* %_DEST%\inc%_EXT%\boost\spirit\symbols -..\%__SRC%\inc\boost\spirit\tree\* %_DEST%\inc%_EXT%\boost\spirit\tree -..\%__SRC%\inc\boost\spirit\utility\* %_DEST%\inc%_EXT%\boost\spirit\utility ..\%__SRC%\inc\boost\statechart\* %_DEST%\inc%_EXT%\boost\statechart ..\%__SRC%\inc\boost\statechart\detail\* %_DEST%\inc%_EXT%\boost\statechart\detail ..\%__SRC%\inc\boost\system\* %_DEST%\inc%_EXT%\boost\system +..\%__SRC%\inc\boost\system\detail\* %_DEST%\inc%_EXT%\boost\system\detail ..\%__SRC%\inc\boost\test\* %_DEST%\inc%_EXT%\boost\test ..\%__SRC%\inc\boost\test\detail\* %_DEST%\inc%_EXT%\boost\test\detail ..\%__SRC%\inc\boost\test\impl\* %_DEST%\inc%_EXT%\boost\test\impl @@ -1449,19 +1606,31 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\test\utils\runtime\env\* %_DEST%\inc%_EXT%\boost\test\utils\runtime\env ..\%__SRC%\inc\boost\test\utils\runtime\file\* %_DEST%\inc%_EXT%\boost\test\utils\runtime\file ..\%__SRC%\inc\boost\thread\* %_DEST%\inc%_EXT%\boost\thread +..\%__SRC%\inc\boost\thread\csbl\* %_DEST%\inc%_EXT%\boost\thread\csbl ..\%__SRC%\inc\boost\thread\detail\* %_DEST%\inc%_EXT%\boost\thread\detail +..\%__SRC%\inc\boost\thread\executors\* %_DEST%\inc%_EXT%\boost\thread\executors +..\%__SRC%\inc\boost\thread\experimental\* %_DEST%\inc%_EXT%\boost\thread\experimental +..\%__SRC%\inc\boost\thread\futures\* %_DEST%\inc%_EXT%\boost\thread\futures ..\%__SRC%\inc\boost\thread\pthread\* %_DEST%\inc%_EXT%\boost\thread\pthread +..\%__SRC%\inc\boost\thread\v2\* %_DEST%\inc%_EXT%\boost\thread\v2 ..\%__SRC%\inc\boost\thread\win32\* %_DEST%\inc%_EXT%\boost\thread\win32 ..\%__SRC%\inc\boost\tr1\* %_DEST%\inc%_EXT%\boost\tr1 ..\%__SRC%\inc\boost\tr1\detail\* %_DEST%\inc%_EXT%\boost\tr1\detail ..\%__SRC%\inc\boost\tr1\tr1\bcc32\* %_DEST%\inc%_EXT%\boost\tr1\tr1\bcc32 -..\%__SRC%\inc\boost\tr1\tr1\* %_DEST%\inc%_EXT%\boost\tr1\tr1 ..\%__SRC%\inc\boost\tr1\tr1\sun\* %_DEST%\inc%_EXT%\boost\tr1\tr1\sun +..\%__SRC%\inc\boost\tr1\tr1\* %_DEST%\inc%_EXT%\boost\tr1\tr1 +..\%__SRC%\inc\boost\tti\* %_DEST%\inc%_EXT%\boost\tti +..\%__SRC%\inc\boost\tti\detail\* %_DEST%\inc%_EXT%\boost\tti\detail +..\%__SRC%\inc\boost\tti\gen\* %_DEST%\inc%_EXT%\boost\tti\gen ..\%__SRC%\inc\boost\tuple\* %_DEST%\inc%_EXT%\boost\tuple ..\%__SRC%\inc\boost\tuple\detail\* %_DEST%\inc%_EXT%\boost\tuple\detail +..\%__SRC%\inc\boost\type_erasure\* %_DEST%\inc%_EXT%\boost\type_erasure +..\%__SRC%\inc\boost\type_erasure\detail\* %_DEST%\inc%_EXT%\boost\type_erasure\detail +..\%__SRC%\inc\boost\type_index\* %_DEST%\inc%_EXT%\boost\type_index +..\%__SRC%\inc\boost\type_index\detail\* %_DEST%\inc%_EXT%\boost\type_index\detail +..\%__SRC%\inc\boost\type_index\runtime_cast\* %_DEST%\inc%_EXT%\boost\type_index\runtime_cast ..\%__SRC%\inc\boost\type_traits\* %_DEST%\inc%_EXT%\boost\type_traits ..\%__SRC%\inc\boost\type_traits\detail\* %_DEST%\inc%_EXT%\boost\type_traits\detail -..\%__SRC%\inc\boost\type_traits\msvc\* %_DEST%\inc%_EXT%\boost\type_traits\msvc ..\%__SRC%\inc\boost\typeof\* %_DEST%\inc%_EXT%\boost\typeof ..\%__SRC%\inc\boost\typeof\dmc\* %_DEST%\inc%_EXT%\boost\typeof\dmc ..\%__SRC%\inc\boost\typeof\msvc\* %_DEST%\inc%_EXT%\boost\typeof\msvc @@ -1489,6 +1658,7 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\utility\* %_DEST%\inc%_EXT%\boost\utility ..\%__SRC%\inc\boost\utility\detail\* %_DEST%\inc%_EXT%\boost\utility\detail ..\%__SRC%\inc\boost\uuid\* %_DEST%\inc%_EXT%\boost\uuid +..\%__SRC%\inc\boost\uuid\detail\* %_DEST%\inc%_EXT%\boost\uuid\detail ..\%__SRC%\inc\boost\variant\* %_DEST%\inc%_EXT%\boost\variant ..\%__SRC%\inc\boost\variant\detail\* %_DEST%\inc%_EXT%\boost\variant\detail ..\%__SRC%\inc\boost\lambda\* %_DEST%\inc%_EXT%\boost\lambda @@ -1509,4 +1679,3 @@ mkdir: %_DEST%\inc%_EXT%\boost\xpressive\traits\detail ..\%__SRC%\inc\boost\xpressive\detail\utility\* %_DEST%\inc%_EXT%\boost\xpressive\detail\utility ..\%__SRC%\inc\boost\xpressive\traits\* %_DEST%\inc%_EXT%\boost\xpressive\traits ..\%__SRC%\inc\boost\xpressive\traits\detail\* %_DEST%\inc%_EXT%\boost\xpressive\traits\detail - diff --git a/main/external_deps.lst b/main/external_deps.lst index 0c0c29daa4..c33f4406bb 100644 --- a/main/external_deps.lst +++ b/main/external_deps.lst @@ -200,9 +200,9 @@ if (SYSTEM_PYTHON != YES) URL2 = $(OOO_EXTRAS)$(MD5)-$(name) if (SYSTEM_BOOST != YES) - MD5 = d6eef4b4cacb2183f2bf265a5a03a354 - name = boost_1_55_0.tar.bz2 - URL1 = https://sourceforge.net/projects/boost/files/boost/1.55.0/boost_1_55_0.tar.bz2 + MD5 = 93eecce2abed9d2442c9676914709349 + name = boost_1_64_0.tar.bz2 + URL1 = https://sourceforge.net/projects/boost/files/boost/1.64.0/boost_1_64_0.tar.bz2 URL2 = $(OOO_EXTRAS)$(MD5)-$(name) if (SYSTEM_VIGRA != YES)