Edward Diener
Edward Diener
"You will need to install some dependencies to get the ultimate stack trace. Two libraries are currently supported, the only difference is which one is the easiest for you to...
Does your code work on all platforms ? I want to use it on an embedded arm 64 bit system.
My suggestion is simple: a 'break' command that lists the current breakpoints which the user has set, and whether each breakpoint is enabled or disabled. This will greatly help the...
With the changes to the way msvc compiler setup works using Boost created setup scripts, the intel-win toolset now has a single location for creating an msvc-setup.bat setup script for...
Given a user-config.jam of: ``` import toolset ; import feature ; using gcc : 8.3 : "C:/Utilities/mingw-w64/i686-8.3.0/bin/g++" ; using gcc : 8.1 : "C:/Utilities/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/g++" ; # using gcc : 8.3...
My user-config.jam has, for Intel on Windows: ``` using intel : 19.0 : : vc14.2 "C:/Utilities/IntelSWTools/parallel_studio_xe_2019/compilers_and_libraries_2019/windows/bin" off "/Qdiag-disable:2415,367,3280,177" ; using intel : 18.0 : : vc14.1 "C:/Utilities/IntelSWTools/parallel_studio_xe_2018/compilers_and_libraries_2018/windows/bin" off "/Qdiag-disable:2415,367,3280,177,3346" ;...
The documentation for the 'cflags' feature in the latest Boost Build docs says: "For cflags that is both the C and C++ compilers, for cxxflags that is the C++ compiler"...
I do not understand where in the implementation there is functionality for classifying types. In the function_types library there are numerous metafunctions for testing whether a given type is a...
In looking at the Boost Build jamfile for tests in preprocessor, tti, and vmd I noticed a number of Boost Build constructs that are left out of the conversion to...
Since you have support in for COMPILE_ONLY in the bcm_test for paralleling the compile/compile-fail rules of Boost Build you can also add support for Boost Build link/link-fail rules with a...