Edward Diener
Edward Diener
Your project-config.jam using msvc path is for msvc-14.1 and not msvc-14.0.
I am using a template instantiation in a global variable. ``` #include #include #include using namespace property; p_member_data_class pmd_gl_int; prop_member_data p_gl_int(pmd_gl_int); void TestInt() { p_gl_int = 34662; BOOST_CHECK_EQUAL(p_gl_int,34662); } void...
The way that the Wave tracing facility works in Boost is the way I am suggesting that templight could work as a simple alternative to your gdb-like debugging session. With...
Where is the templight trace file for a given compilation ?
In Windows if the CUSTOM_BOOST_PATH is a top-level Boost installation, then the include directory is CUSTOM_BOOST_PATH/boost and the library directory is CUSTOM_BOOST_PATH/libs. This is true for every Windows Boost distribution....
The entire CUSTOM_BOOST_PATH will not work at all. This is because you need Boost_LIBRARIES to also be set in your logic. I manage to get templight_convert.exe built by setting BOOST_ROOT...
Unfortunately since I am not a member of cpplang.slack I can not view the archives. If I step through the Boost Build code in clang-linux.jam with the debugger, where should...
What is meant by "configuration checks" and how is this related to what is in a jamfile ? In my case I understand the `threadapi-pthread`, since I am using clang-linux-11.0...
Those checks come from: `[ predef-check "BOOST_COMP_GNUC >= 4.7.4" : : -ftrack-macro-expansion=0 ]` `[ predef-check "BOOST_COMP_GNUC >= 4.3.0" : : -Wno-variadic-macros ]` Why would those checks generate two different threadapis...
The 'unescaped special character.." error no longer occurs but the failures in testing test_bimap_unordered do occur for me also.