Boost-users
Threads by month
- ----- 2024 -----
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2002 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2001 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2000 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1999 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1998 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1997 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
January 2018
- 33 participants
- 26 discussions
Hi all,
I want to create a managed_shared_memory in exactly the size I needed.
Therefore I do something like this:
size = sizeof( common_managed_shared_memory );
size += sizeof( MyClassInSharedMem );
managed_shared_memory segment(create_only, "name", size );
MyClassInSharedMem allocates itself some memory by segment->allocate().
I added this also to the size, but get a boost::interprocess::bad_alloc
exception on allocating this additional memory.
Are there some magic bytes I forgot to add?
Many thanks in advance
Kai
3
2
boost::filtered_graph filtering on vertex color... if I only had a colormap
by Brian Davis 19 Jul '19
by Brian Davis 19 Jul '19
19 Jul '19
Lets say I have a graph g (of type graph_t)
and a color map (boy I wish I had a colormap):
typedef boost::property_map<graph_t, boost::vertex_color_t>::type
color_map_t;
or is it?
auto indexmap = boost::get(boost::vertex_index, g);
auto colors =
boost::make_vector_property_map<boost::default_color_type>(indexmap);
or maybe?
auto indexmap = boost::get(boost::vertex_index, g);
auto colors =
boost::make_vector_property_map<boost::vertex_color_t>(indexmap);
or possibly some goop found on the internet?
boost::make_iterator_property_map(color_map.begin(),
boost::get(boost::vertex_index, data_->g), color_map[0])
or other internet goop?
typedef boost::property_map<GraphType, boost::vertex_color_t>::type
color_map_t;
color_map_t colorMap;
boost::color_map(colorMap))
or other internet goop??
std::vector<int> colorMap(num_vertices(g), boost::white_color);
so confused... (certainly not surprised why bgl is not a part of stl) Can
someone help explain the various types and ways of specifying colormaps and
the logic for each way and means?
and a function (if I could get that far without VS syntax highlighter going
bonkers and gobs of compiler errors.. you know the type):
make_pretty(g, colormap )
which colors the graph colormap
and a filter struct for boost::filtered_graph<Graph, EdgePredicate,
VertexPredicate> (where I wonder why if I only want to filter vertices I
have to set boost::keep_all for EdgePredicate... sigh... I know the
answer... and also know how long it found me to find/figure out
boost::keep_all - and if you are looking for boost::keep_all and found it
here... your welcome ;-) )
and modifying (probably incorrectly) boost::filtered_graph example to:
template <typename ColorMap>
struct vertex_color_filter_eq {
vertex_color_filter_eq() { }
vertex_color_filter_eq(ColorMap colormap/*, boost::default_color_type
c*/) : m_colormap(colormap)/*, m_c(c)*/ { }
template <typename Vertex>
bool operator()(const Vertex& v) const {
return 0 < get(m_colormap, v);
//return c < get(m_colormap, v);
}
ColorMap m_colormap;
//boost::default_color_type m_c;
};
auto indexmap = boost::get(boost::vertex_index, g);
auto colors =
boost::make_vector_property_map<boost::default_color_type>(indexmap);
// some where here I would call make_pretty(g, colors)
typedef property_map<graph_t, boost::vertex_color_t>::type ColorMap_t;
vertex_color_filter<ColorMap_t> filter(colors);
// boost::filtered_graph<graph_t, boost::keep_all, VertexPredicate>
boost::filtered_graph<graph_t, boost::keep_all, vertex_color_filter> fg(g,
filter);
// Later say if I could get it compile and better if it compiled and worked
I could move on and
auto color = boost::red_color;
typedef property_map<graph_t, boost::vertex_color_t>::type ColorMap_t;
vertex_color_filter<ColorMap_t> filter(colors, color);
boost::filtered_graph<graph_t, boost::keep_all, vertex_color_filter> fg(g,
filter);
Maybe if I color them yellow, I can then reach the wizard pull back the
curtain and ask how to create a color map... If I only had a color map.
4
6
Hello,
I've made some unit tests with boost test before without issue, but on my latest rather ordinary test, I've been able to get Boost test to crash the executable in debug and release mode when boost test is making a report before terminating.
test_exe.exe!boost::unit_test::framework::get(unsigned long id, boost::unit_test::test_unit_type t) Line 1388 C++
test_exe.exe!boost::unit_test::framework::get<boost::unit_test::test_unit>(unsigned long id) Line 208 C++
test_exe.exe!boost::unit_test::results_reporter::make_report(boost::unit_test::report_level l, unsigned long id) Line 175 C++
test_exe.exe!boost::unit_test::unit_test_main(boost::unit_test::test_suite *(*)(int, char * *) init_func, int argc, char * * argv) Line 235 C++
test_exe.exe!main(int argc, char * * argv) Line 287 C++
That's the default report_level of 'confirm'
If I use report_level=short or detailed, I get a similar crash:
test_exe.exe!boost::unit_test::framework::get(unsigned long id, boost::unit_test::test_unit_type t) Line 1388 C++
test_exe.exe!boost::unit_test::framework::get<boost::unit_test::test_suite>(unsigned long id) Line 207 C++
test_exe.exe!boost::unit_test::traverse_test_tree(unsigned long id, boost::unit_test::test_tree_visitor & V, bool ignore_status) Line 365 C++
test_exe.exe!boost::unit_test::results_reporter::make_report(boost::unit_test::report_level l, unsigned long id) Line 185 C++
test_exe.exe!boost::unit_test::unit_test_main(boost::unit_test::test_suite *(*)(int, char * *) init_func, int argc, char * * argv) Line 235 C++
test_exe.exe!main(int argc, char * * argv) Line 287 C++
Here's the get() method:
test_unit&
get( test_unit_id id, test_unit_type t )
{
test_unit* res = impl::s_frk_state().m_test_units[id];
BOOST_TEST_I_ASSRT( (res->p_type & t) != 0, internal_error( "Invalid test unit type" ) );
return *res;
}
Crash occurs on line 2 of the function. I logged 'res' each time the function is called and many times its valid, but when it runs this one test (by itself or with others), 'res' always ends up being NULL.
id seems to always be '1', and t is TUT_ANY (17) if generating a confirmation report or TUT_SUITE (16) if generating a short or detailed report.
If I use the option '--report_level=no', then execution does complete fine.
I followed through on some process of elimination and it seems to be related to using a fixture?
Having no test body still causes the crash. It wasn't until I removed the fixture (and its usage in the body of the test) did the executable not crash.
I ensured that I was using the standard fixture model found here:
http://www.boost.org/doc/libs/1_64_0/libs/test/doc/html/boost_test/tests_or…
OS is Win 7 w/ VS2015
boost is 1.64.0 and was built with: b2 toolset=msvc-14.0 link=static runtime-link=static variant=debug address-model=64 --without-atomic --without-container --without-context --without-coroutine --without-coroutine2 --without-graph --without-graph_parallel --without-iostreams --without-locale --without-math --without-mpi --without-serialization --without-signals --without-type_erasure --without-wave -j4 --abbreviate-paths --without-python -d2
Any help would of something to look at or change would be appreciated.
Thanks for your time,
Nathan
2
4
28 Feb '18
I work on a Windows code base that I have been updating from Boost 1.64.0 to Boost 1.66.0. One of the projects sets ISOLATION_AWARE_ENABLED to 1 (refer to https://msdn.microsoft.com/en-us/library/windows/desktop/bb773175(v=vs.85).…)
#define ISOLATION_AWARE_ENABLED 1
The project also includes <boost/thread.hpp>. The Windows SDK version is 10.0.16299.0. The include chain is:
<boost/thread.hpp>
<boost/thread/thread.hpp>
<boost/thread/thread_only.hpp>
<boost/thread/win32/thread_data.hpp>
<boost/thread/win32/thread_primitives.hpp>
<boost/detail/winapi/dll.hpp>
<boost/winapi/dll.hpp>
The last include contains constructions such as:
BOOST_SYMBOL_IMPORT boost::winapi::HMODULE_ WINAPI
LoadLibraryA(boost::winapi::LPCSTR_ lpFileName);
With a nonzero ISOLATION_AWARE_ENABLED, this results in redefinition errors, e.g.:
.../boost/winapi/dll.hpp(38): error C2375: 'IsolationAwareLoadLibraryA': redefinition; different linkage
...\include\10.0.16299.0\um\winbase.inl(287): note: see declaration of 'IsolationAwareLoadLibraryA'
Jim Wilburn
2
1
I have a client which connects to a named pipe as follows:
CreateFile(pipeName.c_str(),GENERIC_READ | GENERIC_WRITE, 0, nullptr, OPEN_EXISTING, FILE_FLAG_OVERLAPPED, nullptr);
The result of this call is assigned to a stream_handle. I want that io service shuts down orderly by run() returning due to running out of work. To achieve this, I post a lambda that effectively calls cancel() on the handle (hidden inside Kill()):
_io.post([this]() {
for (auto& w : _workers) w->Kill();
});
However, cancel() has no effect: the callback for async_read continues to return with error code of zero and data read from the pipe. For reference, this is the read call with its handler:
template<typename T>
void read(T& ioh, const asio::mutable_buffer& buf)
{
ioh.async_read_some(asio::buffer(buf), [this, self = shared_from_this()](const boost::system::error_code& ec, size_t sz) {
if (ec == boost::system::errc::operation_canceled)
return;
if (ec)
QUINE_THROW(Error(self->_ownersId, ec, "async_read_some"));
self->ReadCompleted(sz);
});
}
ReadCompleted() processes the received data and loops by calling read() again.
If I call close() the callback gets an error code and everything works out correctly, *except* that I get an error code [invalid handle] that gets logged as an error (though it's not).
Am I correct in assuming that cancel() is an apparent noop in this case because of the race-condition where an I/O request completes successfully before cancel is invoked?
If so, can you suggest a more elegant way (i.e., a way that doesn't induce a hard error) of exiting a loop as described here? Setting a member variable instead of calling cancel?
Given the existence of the race-condition, what are use-cases for cancel? How to use it correctly, if at all possible?
-- Stian
4
16
Hi,
I'm getting the following message during compilation of my application:
1>Info: Boost.Config is older than your compiler version - probably nothing
bad will happen - but you may wish to look for an update Boost version.
Define BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE to suppress this message.
I don't want to suppress the message, but would appreciate any mods I need
to do to actually stop its cause.
Many thanks in advance for any suggestions.
Best wishes.
Tim Burgess
4
8
I'm upgrading to 1.66 from 1.55 and running into this problem on VS2013
https://svn.boost.org/trac10/ticket/13146
I didn't find anything as I poked about the net- does anyone on the list have any suggestions?
----------------------------------------------------------------------
This message, and any attachments, is for the intended recipient(s) only, may contain information that is privileged, confidential and/or proprietary and subject to important terms and conditions available at http://www.bankofamerica.com/emaildisclaimer. If you are not the intended recipient, please delete this message.
1
0
please help me to fix this problem as soon as possible
thanks a lot
2018-01-23 16:10 GMT+01:00 Mefteh Safa <mefteh.safa9(a)gmail.com>:
> Hi,
> I want to use boost c++ libraries on windows platform with CLion via
> cmakelists. I've followed these steps:
> 1- download
>
> boost_1_66_0.7z
> <https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.7z>
> 2- navigate to C:\Program Files\boost_1_66_0\tools\build and Run bootstrap.bat
> gcc
> 3- Run b2 install --prefix="C:\Program Files\boost-build"
> 4- C:\Program Files\boost-build\bin to Windows PATH.
> 5- restart my computer
> 6- open cmd, then navigate to C:\Program Files\boost_1_66_0
> 7- Run b2 --build-dir="C:\Program Files\boost_1_66_0\build"
> --prefix="C:\Program Files\boost" --toolset=gcc install
>
> here you find the output file containing include directories and libraries:
>
> boost.7z
> <https://drive.google.com/file/d/1bxJqqUgXYvyGnp0g_Mqr259cushpSW78/view?usp=…>
>
> 8- here the cmakelists.txt file for the configuration of boost.
>
> but the cmake still show me this problem
> [image: Images intégrées 1]
>
>
2
1
In response to this:I can't reproduce your problem. Are there any build errors?
Which libraries exactly are missing?
In Christ,
Steven Watanabe =========================================Thanks for response.Here is my build output (b2 -j%cores% toolset=%msvcver% address-model=64 architecture=x86 link=static threading=multi runtime-link=static --build-type=complete stage --stagedir=stage/x64 > std_out.txt):Performing configuration checks
- 32-bit : yes (cached) - arm : no (cached) - mips1 : no (cached) - power : no (cached) - sparc : no (cached) - x86 : yes (cached) - symlinks supported : no (cached) - junctions supported : yes (cached) - hardlinks supported : yes (cached) - C++11 mutex : yes (cached) - Boost.Config Feature Check: cxx11_auto_declarations : yes (cached) - Boost.Config Feature Check: cxx11_constexpr : yes (cached) - Boost.Config Feature Check: cxx11_defaulted_functions : yes (cached) - Boost.Config Feature Check: cxx11_final : yes (cached) - Boost.Config Feature Check: cxx11_hdr_mutex : yes (cached) - Boost.Config Feature Check: cxx11_hdr_regex : yes (cached) - Boost.Config Feature Check: cxx11_hdr_tuple : yes (cached) - Boost.Config Feature Check: cxx11_lambdas : yes (cached) - Boost.Config Feature Check: cxx11_noexcept : yes (cached) - Boost.Config Feature Check: cxx11_nullptr : yes (cached) - Boost.Config Feature Check: cxx11_rvalue_references : yes (cached) - Boost.Config Feature Check: cxx11_template_aliases : yes (cached) - Boost.Config Feature Check: cxx11_thread_local : yes (cached) - Boost.Config Feature Check: cxx11_variadic_templates : yes (cached) - has_icu builds : no (cached)warning: Graph library does not contain MPI-based parallel components.note: to enable them, add "using mpi ;" to your user-config.jam - zlib : no (cached) - bzip2 : no (cached) - lzma : no (cached) - iconv (libc) : no (cached) - iconv (separate) : no (cached) - icu : no (cached) - icu (lib64) : no (cached) - native-atomic-int32-supported : yes (cached) - message-compiler : yes (cached) - native-syslog-supported : no (cached) - pthread-supports-robust-mutexes : no (cached) - compiler-supports-visibility : no (cached) - compiler-supports-ssse3 : yes (cached) - compiler-supports-avx2 : yes (cached) - gcc visibility : no (cached) - long double support : yes (cached)warning: skipping optional Message Passing Interface (MPI) library.note: to enable MPI support, add "using mpi ;" to user-config.jam.note: to suppress this message, pass "--without-mpi" to bjam.note: otherwise, you can safely ignore this message.warning: No python installation configured and autoconfigurationnote: failed. See http://www.boost.org/libs/python/doc/building.htmlnote: for configuration instructions or pass --without-python tonote: suppress this message and silently skip all Boost.Python targets - libbacktrace builds : no (cached) - addr2line builds : no (cached) - WinDbg builds : yes (cached) - WinDbgCached builds : yes (cached) - zlib : no (cached) - bzip2 : no (cached) - lzma : no (cached)
Component configuration:
- atomic : building - chrono : building - container : building - context : building - coroutine : building - date_time : building - exception : building - fiber : building - filesystem : building - graph : building - graph_parallel : building - iostreams : building - locale : building - log : building - math : building - mpi : building - program_options : building - python : building - random : building - regex : building - serialization : building - signals : building - stacktrace : building - system : building - test : building - thread : building - timer : building - type_erasure : building - wave : building
...patience......patience......patience......patience......patience......found 17673 targets......updating 1061 targets...compile-c-c++ bin.v2\libs\atomic\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\lockpool.objlockpool.cppmsvc.archive bin.v2\libs\atomic\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_atomic-vc141-mt-sgd-x64-1_66.libcommon.copy stage\x64\lib\libboost_atomic-vc141-mt-sgd-x64-1_66.libbin.v2\libs\atomic\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_atomic-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\system\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\error_code.objerror_code.cppcompile-c-c++ bin.v2\libs\container\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\dlmalloc.objdlmalloc.cppcompile-c-c++ bin.v2\libs\container\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\global_resource.objglobal_resource.cppmsvc.archive bin.v2\libs\system\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_system-vc141-mt-sgd-x64-1_66.libcompile-c-c++ bin.v2\libs\container\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\monotonic_buffer_resource.objmonotonic_buffer_resource.cppcommon.copy stage\x64\lib\libboost_system-vc141-mt-sgd-x64-1_66.libbin.v2\libs\system\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_system-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\container\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\pool_resource.objpool_resource.cppcompile-c-c++ bin.v2\libs\chrono\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\chrono.objchrono.cppcompile-c-c++ bin.v2\libs\chrono\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\thread_clock.objthread_clock.cppcompile-c-c++ bin.v2\libs\chrono\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\process_cpu_clocks.objprocess_cpu_clocks.cppcompile-c-c++ bin.v2\libs\container\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\synchronized_pool_resource.objsynchronized_pool_resource.cppcompile-c-c++ bin.v2\libs\container\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\unsynchronized_pool_resource.objunsynchronized_pool_resource.cppcompile-c-c++ bin.v2\libs\thread\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\win32\tss_dll.objtss_dll.cppmsvc.archive bin.v2\libs\container\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_container-vc141-mt-sgd-x64-1_66.libcommon.copy stage\x64\lib\libboost_container-vc141-mt-sgd-x64-1_66.libbin.v2\libs\container\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_container-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.msvc.archive bin.v2\libs\chrono\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_chrono-vc141-mt-sgd-x64-1_66.libcompile-c-c++ bin.v2\libs\coroutine\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\detail\coroutine_context.objcoroutine_context.cppWarning: Boost.Coroutine is now deprecated. Please switch to Boost.Coroutine2. To disable this warning message, define BOOST_COROUTINES_NO_DEPRECATION_WARNING.compile-c-c++ bin.v2\libs\thread\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\win32\tss_pe.objtss_pe.cppcommon.copy stage\x64\lib\libboost_chrono-vc141-mt-sgd-x64-1_66.libbin.v2\libs\chrono\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_chrono-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\thread\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\future.objfuture.cppcompile-c-c++ bin.v2\libs\context\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\windows\stack_traits.objstack_traits.cppcompile-c-c++ bin.v2\libs\coroutine\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\exceptions.objexceptions.cppWarning: Boost.Coroutine is now deprecated. Please switch to Boost.Coroutine2. To disable this warning message, define BOOST_COROUTINES_NO_DEPRECATION_WARNING.msvc.archive bin.v2\libs\context\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_context-vc141-mt-sgd-x64-1_66.libcompile-c-c++ bin.v2\libs\exception\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\clone_current_exception_non_intrusive.objclone_current_exception_non_intrusive.cppcommon.copy stage\x64\lib\libboost_context-vc141-mt-sgd-x64-1_66.libbin.v2\libs\context\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_context-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\date_time\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\gregorian\date_generators.objdate_generators.cppmsvc.archive bin.v2\libs\exception\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_exception-vc141-mt-sgd-x64-1_66.libcommon.copy stage\x64\lib\libboost_exception-vc141-mt-sgd-x64-1_66.libbin.v2\libs\exception\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_exception-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\date_time\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\gregorian\greg_weekday.objgreg_weekday.cppcompile-c-c++ bin.v2\libs\filesystem\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\codecvt_error_category.objcodecvt_error_category.cppcompile-c-c++ bin.v2\libs\filesystem\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\path_traits.objpath_traits.cppcompile-c-c++ bin.v2\libs\filesystem\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\utf8_codecvt_facet.objutf8_codecvt_facet.cppcompile-c-c++ bin.v2\libs\filesystem\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\portability.objportability.cppcompile-c-c++ bin.v2\libs\filesystem\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\operations.objoperations.cppcompile-c-c++ bin.v2\libs\filesystem\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\path.objpath.cppcompile-c-c++ bin.v2\libs\thread\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\win32\thread.objthread.cppmsvc.archive bin.v2\libs\thread\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_thread-vc141-mt-sgd-x64-1_66.libcompile-c-c++ bin.v2\libs\date_time\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\gregorian\greg_month.objgreg_month.cppcompile-c-c++ bin.v2\libs\filesystem\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\unique_path.objunique_path.cpplibs\filesystem\src\unique_path.cpp(114): warning C4267: 'argument': conversion from 'size_t' to 'DWORD', possible loss of datacommon.copy stage\x64\lib\libboost_thread-vc141-mt-sgd-x64-1_66.libbin.v2\libs\thread\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_thread-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\coroutine\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\windows\stack_traits.objstack_traits.cppWarning: Boost.Coroutine is now deprecated. Please switch to Boost.Coroutine2. To disable this warning message, define BOOST_COROUTINES_NO_DEPRECATION_WARNING.msvc.archive bin.v2\libs\date_time\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_date_time-vc141-mt-sgd-x64-1_66.libmsvc.archive bin.v2\libs\coroutine\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_coroutine-vc141-mt-sgd-x64-1_66.libcommon.copy stage\x64\lib\libboost_coroutine-vc141-mt-sgd-x64-1_66.libbin.v2\libs\coroutine\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_coroutine-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.common.copy stage\x64\lib\libboost_date_time-vc141-mt-sgd-x64-1_66.libbin.v2\libs\date_time\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_date_time-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\filesystem\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\windows_file_codecvt.objwindows_file_codecvt.cpplibs\filesystem\src\windows_file_codecvt.cpp(43): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datalibs\filesystem\src\windows_file_codecvt.cpp(63): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datacompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\numa\windows\pin_thread.objpin_thread.cppmsvc.archive bin.v2\libs\filesystem\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_filesystem-vc141-mt-sgd-x64-1_66.libcommon.copy stage\x64\lib\libboost_filesystem-vc141-mt-sgd-x64-1_66.libbin.v2\libs\filesystem\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_filesystem-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\numa\windows\topology.objtopology.cppcompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\algo\algorithm.objalgorithm.cppcompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\algo\round_robin.objround_robin.cppcompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\algo\shared_work.objshared_work.cppcompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\barrier.objbarrier.cppcompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\algo\work_stealing.objwork_stealing.cppcompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\condition_variable.objcondition_variable.cppcompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\algo\numa\work_stealing.objwork_stealing.cppcompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\context.objcontext.cppcompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\future.objfuture.cppcompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\fiber.objfiber.cppcompile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\c_regex_traits.objc_regex_traits.cppcompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\properties.objproperties.cppcompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\recursive_mutex.objrecursive_mutex.cppcompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\mutex.objmutex.cppcompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\recursive_timed_mutex.objrecursive_timed_mutex.cppcompile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\icu.objicu.cppcompile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cpp_regex_traits.objcpp_regex_traits.cppcompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\timed_mutex.objtimed_mutex.cppcompile-c-c++ bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\scheduler.objscheduler.cppcompile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\regex_debug.objregex_debug.cppcompile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\regex_raw_buffer.objregex_raw_buffer.cppmsvc.archive bin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_fiber-vc141-mt-sgd-x64-1_66.libcommon.copy stage\x64\lib\libboost_fiber-vc141-mt-sgd-x64-1_66.libbin.v2\libs\fiber\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_fiber-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\fileiter.objfileiter.cppcompile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\regex.objregex.cppcompile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\static_mutex.objstatic_mutex.cppcompile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\regex_traits_defaults.objregex_traits_defaults.cppcompile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\posix_api.objposix_api.cppcompile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cregex.objcregex.cppcompile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\instances.objinstances.cppcompile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\wc_regex_traits.objwc_regex_traits.cppcompile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\w32_regex_traits.objw32_regex_traits.cppcompile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\wide_posix_api.objwide_posix_api.cppcompile-c-c++ bin.v2\libs\iostreams\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\file_descriptor.objfile_descriptor.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\encoding\codepage.objcodepage.cppc:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\encoding\wconv_codepage.ipp(129): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\encoding\wconv_codepage.ipp(139): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\encoding\wconv_codepage.ipp(139): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\encoding\wconv_codepage.ipp(152): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\encoding\wconv_codepage.ipp(155): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\encoding\wconv_codepage.ipp(415): warning C4244: 'argument': conversion from '__int64' to 'unsigned int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\encoding\wconv_codepage.ipp(406): note: while compiling class template member function 'std::string boost::locale::conv::impl::wconv_from_utf<CharType,2>::convert(const CharType *,const CharType *)' with [ CharType=wchar_t ]libs\locale\src\encoding\codepage.cpp(106): note: see reference to class template instantiation 'boost::locale::conv::impl::wconv_from_utf<CharType,2>' being compiled with [ CharType=wchar_t ]libs\locale\src\encoding\codepage.cpp(161): note: see reference to function template instantiation 'std::string boost::locale::conv::impl::convert_from<wchar_t>(const CharType *,const CharType *,const char *,boost::locale::conv::method_type)' being compiled with [ CharType=wchar_t ]c:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\encoding\wconv_codepage.ipp(424): warning C4244: 'argument': conversion from '__int64' to 'unsigned int', possible loss of datacompile-c-c++ bin.v2\libs\iostreams\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\mapped_file.objmapped_file.cppcompile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\winstances.objwinstances.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\shared\format.objformat.cppmsvc.archive bin.v2\libs\iostreams\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_iostreams-vc141-mt-sgd-x64-1_66.lib...on 100th target...common.copy stage\x64\lib\libboost_iostreams-vc141-mt-sgd-x64-1_66.libbin.v2\libs\iostreams\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_iostreams-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\shared\formatting.objformatting.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\shared\date_time.objdate_time.cppcompile-c-c++ bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\usinstances.objusinstances.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\shared\ids.objids.cppmsvc.archive bin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_regex-vc141-mt-sgd-x64-1_66.libcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\util\codecvt_converter.objcodecvt_converter.cppC:\Users\Valued Customer\Documents\Visual Studio 2017\Libraries\boost_1_66_0\boost/locale/generic_codecvt.hpp(232): warning C4244: 'return': conversion from '__int64' to 'int', possible loss of dataC:\Users\Valued Customer\Documents\Visual Studio 2017\Libraries\boost_1_66_0\boost/locale/generic_codecvt.hpp(202): note: while compiling class template member function 'int boost::locale::generic_codecvt<CharType,boost::locale::util::simple_codecvt<CharType>,2>::do_length(mbstate_t &,const char *,const char *,::size_t) const' with [ CharType=wchar_t ]libs\locale\src\util\codecvt_converter.cpp(189): note: see reference to class template instantiation 'boost::locale::generic_codecvt<CharType,boost::locale::util::simple_codecvt<CharType>,2>' being compiled with [ CharType=wchar_t ]libs\locale\src\util\codecvt_converter.cpp(398): note: see reference to class template instantiation 'boost::locale::util::simple_codecvt<wchar_t>' being compiledcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\shared\generator.objgenerator.cppcommon.copy stage\x64\lib\libboost_regex-vc141-mt-sgd-x64-1_66.libbin.v2\libs\regex\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_regex-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\shared\localization_backend.objlocalization_backend.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\util\info.objinfo.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\util\locale_data.objlocale_data.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\std\codecvt.objcodecvt.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\std\collate.objcollate.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\util\default_locale.objdefault_locale.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\shared\message.objmessage.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\std\converter.objconverter.cppcompile-c-c++ bin.v2\libs\graph\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\read_graphviz_new.objread_graphviz_new.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\std\numeric.objnumeric.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\util\gregorian.objgregorian.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\win32\collate.objcollate.cppc:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(149): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(153): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(153): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(170): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(245): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(249): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datacompile-c-c++ bin.v2\libs\graph\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\graphml.objgraphml.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\win32\converter.objconverter.cppc:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(149): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(153): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(153): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(170): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(245): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(249): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datacompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\std\std_backend.objstd_backend.cppmsvc.archive bin.v2\libs\graph\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_graph-vc141-mt-sgd-x64-1_66.libcommon.copy stage\x64\lib\libboost_graph-vc141-mt-sgd-x64-1_66.libbin.v2\libs\graph\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_graph-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\win32\lcid.objlcid.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\win32\win_backend.objwin_backend.cppc:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(149): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(153): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(153): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(170): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(245): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(249): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datacompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\attribute_set.objattribute_set.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\code_conversion.objcode_conversion.cppcompile-c-c++ bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\win32\numeric.objnumeric.cppc:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(149): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(153): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(153): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(170): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(245): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datac:\users\valued customer\documents\visual studio 2017\libraries\boost_1_66_0\libs\locale\src\win32\api.hpp(249): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of datacompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\attribute_name.objattribute_name.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\attribute_value_set.objattribute_value_set.cppmsvc.archive bin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_locale-vc141-mt-sgd-x64-1_66.libcommon.copy stage\x64\lib\libboost_locale-vc141-mt-sgd-x64-1_66.libbin.v2\libs\locale\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_locale-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\process_id.objprocess_id.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\named_scope.objnamed_scope.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\process_name.objprocess_name.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\global_logger_storage.objglobal_logger_storage.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\severity_level.objseverity_level.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\thread_id.objthread_id.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\default_attribute_names.objdefault_attribute_names.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\timer.objtimer.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\exceptions.objexceptions.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\once_block.objonce_block.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\text_ostream_backend.objtext_ostream_backend.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\record_ostream.objrecord_ostream.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\thread_specific.objthread_specific.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\core.objcore.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\timestamp.objtimestamp.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\text_multifile_backend.objtext_multifile_backend.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\threadsafe_queue.objthreadsafe_queue.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\event.objevent.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\unhandled_exception_count.objunhandled_exception_count.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\default_sink.objdefault_sink.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\trivial.objtrivial.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\dump_avx2.objdump_avx2.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\dump.objdump.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\dump_ssse3.objdump_ssse3.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\permissions.objpermissions.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\spirit_encoding.objspirit_encoding.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\windows\debug_output_backend.objdebug_output_backend.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\text_file_backend.objtext_file_backend.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\date_time_format_parser.objdate_time_format_parser.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\windows\light_rw_mutex.objlight_rw_mutex.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\windows\ipc_reliable_message_queue.objipc_reliable_message_queue.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\named_scope_format_parser.objnamed_scope_format_parser.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\windows\ipc_sync_wrappers.objipc_sync_wrappers.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\syslog_backend.objsyslog_backend.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\format_parser.objformat_parser.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\windows\mapped_shared_memory.objmapped_shared_memory.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\windows\object_name.objobject_name.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\setup\parser_utils.objparser_utils.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\setup\init_from_stream.objinit_from_stream.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\windows\event_log_backend.objevent_log_backend.cppmsvc.archive bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_log-vc141-mt-sgd-x64-1_66.libcommon.copy stage\x64\lib\libboost_log-vc141-mt-sgd-x64-1_66.libbin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_log-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\setup\matches_relation_factory.objmatches_relation_factory.cppcompile-c-c++-pch bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\pch.pchpch.pch.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\setup\settings_parser.objsettings_parser.cppcompile-c-c++ bin.v2\libs\math\config\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\has_long_double_support.objhas_long_double_support.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\assoc_laguerre.objassoc_laguerre.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\assoc_legendre.objassoc_legendre.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\beta.objbeta.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\comp_ellint_1.objcomp_ellint_1.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\comp_ellint_2.objcomp_ellint_2.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\setup\filter_parser.objfilter_parser.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\comp_ellint_3.objcomp_ellint_3.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cyl_bessel_i.objcyl_bessel_i.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\setup\default_formatter_factory.objdefault_formatter_factory.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cyl_bessel_k.objcyl_bessel_k.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cyl_bessel_j.objcyl_bessel_j.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\setup\formatter_parser.objformatter_parser.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\ellint_1.objellint_1.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cyl_neumann.objcyl_neumann.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\ellint_2.objellint_2.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\ellint_3.objellint_3.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\expint.objexpint.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\laguerre.objlaguerre.cpp...on 200th target...compile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\hermite.objhermite.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\legendre.objlegendre.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\setup\default_filter_factory.objdefault_filter_factory.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\sph_legendre.objsph_legendre.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\assoc_laguerref.objassoc_laguerref.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\sph_bessel.objsph_bessel.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\riemann_zeta.objriemann_zeta.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\sph_neumann.objsph_neumann.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\betaf.objbetaf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\assoc_legendref.objassoc_legendref.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\comp_ellint_2f.objcomp_ellint_2f.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\comp_ellint_1f.objcomp_ellint_1f.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\comp_ellint_3f.objcomp_ellint_3f.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cyl_bessel_jf.objcyl_bessel_jf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\ellint_1f.objellint_1f.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cyl_bessel_kf.objcyl_bessel_kf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cyl_neumannf.objcyl_neumannf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\ellint_2f.objellint_2f.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\ellint_3f.objellint_3f.cppcompile-c-c++ bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\setup\init_from_settings.objinit_from_settings.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\hermitef.objhermitef.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cyl_bessel_if.objcyl_bessel_if.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\legendref.objlegendref.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\laguerref.objlaguerref.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\expintf.objexpintf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\riemann_zetaf.objriemann_zetaf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\sph_besself.objsph_besself.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\sph_legendref.objsph_legendref.cppmsvc.archive bin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_log_setup-vc141-mt-sgd-x64-1_66.libcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\assoc_laguerrel.objassoc_laguerrel.cppmsvc.archive bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_math_tr1-vc141-mt-sgd-x64-1_66.libcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\betal.objbetal.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\sph_neumannf.objsph_neumannf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\assoc_legendrel.objassoc_legendrel.cppcommon.copy stage\x64\lib\libboost_math_tr1-vc141-mt-sgd-x64-1_66.libbin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_math_tr1-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\comp_ellint_1l.objcomp_ellint_1l.cppcommon.copy stage\x64\lib\libboost_log_setup-vc141-mt-sgd-x64-1_66.libbin.v2\libs\log\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_log_setup-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\comp_ellint_2l.objcomp_ellint_2l.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\comp_ellint_3l.objcomp_ellint_3l.cppmsvc.archive bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_math_tr1f-vc141-mt-sgd-x64-1_66.libcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cyl_bessel_il.objcyl_bessel_il.cppcommon.copy stage\x64\lib\libboost_math_tr1f-vc141-mt-sgd-x64-1_66.libbin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_math_tr1f-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cyl_bessel_kl.objcyl_bessel_kl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cyl_bessel_jl.objcyl_bessel_jl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\ellint_1l.objellint_1l.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cyl_neumannl.objcyl_neumannl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\ellint_3l.objellint_3l.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\laguerrel.objlaguerrel.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\ellint_2l.objellint_2l.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\expintl.objexpintl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\hermitel.objhermitel.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\legendrel.objlegendrel.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\riemann_zetal.objriemann_zetal.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\sph_legendrel.objsph_legendrel.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\sph_bessell.objsph_bessell.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\acosh.objacosh.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\sph_neumannl.objsph_neumannl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\asinh.objasinh.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\atanh.objatanh.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\copysign.objcopysign.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\erfc.objerfc.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\erf.objerf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\expm1.objexpm1.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\fmax.objfmax.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\fmin.objfmin.cppmsvc.archive bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_math_tr1l-vc141-mt-sgd-x64-1_66.libcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\fpclassify.objfpclassify.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\hypot.objhypot.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\llround.objllround.cppcommon.copy stage\x64\lib\libboost_math_tr1l-vc141-mt-sgd-x64-1_66.libbin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_math_tr1l-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cbrt.objcbrt.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\log1p.objlog1p.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\lgamma.objlgamma.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\lround.objlround.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\nextafter.objnextafter.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\round.objround.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\nexttoward.objnexttoward.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\trunc.objtrunc.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\tgamma.objtgamma.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\asinhf.objasinhf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\acoshf.objacoshf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\atanhf.objatanhf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\copysignf.objcopysignf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\erfcf.objerfcf.cppmsvc.archive bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_math_c99-vc141-mt-sgd-x64-1_66.libcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\erff.objerff.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\expm1f.objexpm1f.cppcommon.copy stage\x64\lib\libboost_math_c99-vc141-mt-sgd-x64-1_66.libbin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_math_c99-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\fmaxf.objfmaxf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\fpclassifyf.objfpclassifyf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\fminf.objfminf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\lgammaf.objlgammaf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\hypotf.objhypotf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\log1pf.objlog1pf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\llroundf.objllroundf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\lroundf.objlroundf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cbrtf.objcbrtf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\roundf.objroundf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\nextafterf.objnextafterf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\nexttowardf.objnexttowardf.cpp...on 300th target...compile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\truncf.objtruncf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\tgammaf.objtgammaf.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\acoshl.objacoshl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\asinhl.objasinhl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\atanhl.objatanhl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\copysignl.objcopysignl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\erfcl.objerfcl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\erfl.objerfl.cppmsvc.archive bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_math_c99f-vc141-mt-sgd-x64-1_66.libcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\fmaxl.objfmaxl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\fpclassifyl.objfpclassifyl.cppcommon.copy stage\x64\lib\libboost_math_c99f-vc141-mt-sgd-x64-1_66.libbin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_math_c99f-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\expm1l.objexpm1l.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\hypotl.objhypotl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\lgammal.objlgammal.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\llroundl.objllroundl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\log1pl.objlog1pl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cbrtl.objcbrtl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\lroundl.objlroundl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\nextafterl.objnextafterl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\nexttowardl.objnexttowardl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\roundl.objroundl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\fminl.objfminl.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\tgammal.objtgammal.cppcompile-c-c++ bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\truncl.objtruncl.cppmsvc.archive bin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_math_c99l-vc141-mt-sgd-x64-1_66.libcommon.copy stage\x64\lib\libboost_math_c99l-vc141-mt-sgd-x64-1_66.libbin.v2\libs\math\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_math_c99l-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\program_options\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\positional_options.objpositional_options.cppcompile-c-c++ bin.v2\libs\program_options\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\utf8_codecvt_facet.objutf8_codecvt_facet.cppcompile-c-c++ bin.v2\libs\program_options\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\config_file.objconfig_file.cppcompile-c-c++ bin.v2\libs\program_options\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\convert.objconvert.cppcompile-c-c++ bin.v2\libs\program_options\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\cmdline.objcmdline.cppcompile-c-c++ bin.v2\libs\program_options\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\options_description.objoptions_description.cppcompile-c-c++ bin.v2\libs\program_options\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\variables_map.objvariables_map.cppcompile-c-c++ bin.v2\libs\program_options\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\parsers.objparsers.cppcompile-c-c++ bin.v2\libs\random\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\random_device.objrandom_device.cppcompile-c-c++ bin.v2\libs\serialization\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\basic_archive.objbasic_archive.cppcompile-c-c++ bin.v2\libs\program_options\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\value_semantic.objvalue_semantic.cppmsvc.archive bin.v2\libs\random\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_random-vc141-mt-sgd-x64-1_66.libcompile-c-c++ bin.v2\libs\serialization\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\basic_iserializer.objbasic_iserializer.cppcommon.copy stage\x64\lib\libboost_random-vc141-mt-sgd-x64-1_66.libbin.v2\libs\random\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_random-vc141-mt-sgd-x64-1_66.lib 1 file(s) copied.compile-c-c++ bin.v2\libs\serialization\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\basic_oserializer.objbasic_oserializer.cppcompile-c-c++ bin.v2\libs\serialization\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\basic_pointer_iserializer.objbasic_pointer_iserializer.cppcompile-c-c++ bin.v2\libs\program_options\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\winmain.objwinmain.cppcompile-c-c++ bin.v2\libs\serialization\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\basic_pointer_oserializer.objbasic_pointer_oserializer.cppcompile-c-c++ bin.v2\libs\serialization\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\basic_serializer_map.objbasic_serializer_map.cppcompile-c-c++ bin.v2\libs\program_options\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\split.objsplit.cpp================================================================================================================\Here is a message in console: http://www.boost.org/build/doc/html/index.htmlfailed to write output file 'bin.v2\libs\program_options\build\msvc-14.1\debug\address-model-64\link-static\runtime-link-static\threadapi-win32\threading-multi\libboost_program_options-vc141-mt-sgd-x64-1_66.lib.rsp'!================================================================================================================Here are the built libraries: Volume in drive C has no label. Volume Serial Number is DC32-C7DD
Directory of C:\Users\Valued Customer\Documents\Visual Studio 2017\Libraries\boost_1_66_0\stage\x64\lib
01/24/2018 06:37 AM <DIR> .01/24/2018 06:37 AM <DIR> ..01/24/2018 06:37 AM 0 c.txt01/24/2018 06:19 AM 70,996 libboost_atomic-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:19 AM 1,956,114 libboost_chrono-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:19 AM 2,029,624 libboost_container-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:19 AM 349,880 libboost_context-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:19 AM 2,610,038 libboost_coroutine-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:19 AM 3,122,476 libboost_date_time-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:19 AM 34,236 libboost_exception-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:19 AM 30,572,974 libboost_fiber-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:19 AM 6,239,250 libboost_filesystem-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:19 AM 19,061,424 libboost_graph-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:19 AM 1,962,594 libboost_iostreams-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:19 AM 31,815,270 libboost_locale-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:20 AM 78,533,348 libboost_log-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:20 AM 79,055,980 libboost_log_setup-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:20 AM 3,769,638 libboost_math_c99-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:20 AM 3,610,482 libboost_math_c99f-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:20 AM 3,726,546 libboost_math_c99l-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:20 AM 21,521,570 libboost_math_tr1-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:20 AM 21,565,816 libboost_math_tr1f-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:20 AM 21,280,044 libboost_math_tr1l-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:20 AM 660,442 libboost_random-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:19 AM 49,632,980 libboost_regex-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:10 AM 37,608,940 libboost_serialization-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:10 AM 326,972 libboost_stacktrace_noop-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:10 AM 1,048,648 libboost_stacktrace_windbg-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:19 AM 678,190 libboost_system-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:19 AM 4,237,894 libboost_thread-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:10 AM 1,498,068 libboost_timer-vc141-mt-sgd-x64-1_66.lib01/24/2018 06:10 AM 27,178,304 libboost_wserialization-vc141-mt-sgd-x64-1_66.lib 30 File(s) 455,758,738 bytes 2 Dir(s) 9,402,617,856 bytes free===============================================================================Way back in the build output, under Performing configuration checks, should one of the checks show x64 bit?================================================================================I am using Visual Studio 15.5.4. I had to modify C:\Users\Valued Customer\Documents\Visual Studio 2017\Libraries\boost_1_66_0\boost\config\compiler to clear this warning: Info: Boost.Config is older than your compiler version
I changed/added _MSC_VER > 1920================================================================================
Any help is appreciated...
2
1
24 Jan '18
Hello,
I'm trying to preform an asynchronous operation in order to obtain a
connection from a pool of available connections. I'm trying to leverage
strands for two reasons, 1) I don't need locks because I can guarantee that
the connection pool access is limited to quick sequential access, and 2) I
may need to wait for connections to become available, or I may need to
actually make a connection.
I'm working with the 1.66 version of boost and I have been searching the
internet for ANY answer to this question, so far none of the examples which
I've located work any more. All of them simply fail to compile. For
example,
http://coliru.stacked-crooked.com/a/7427ec669bf0e326
This uses an older version of boost.
So how can I do this under the newest version of boost.asio?
Any help would be greatly appreciated.
--
thanks,
Brian Bartman. PhD
2
2