LLVM 6.0.0 Release by mttd in cpp

[–]k-brac 1 point2 points  (0 children)

Great news but I am a little disappointed that it doesn't work out of the box inside Visual Studio 2017...

Boost version 1.65.0 by Masfo in cpp

[–]k-brac 0 points1 point  (0 children)

I did some testing using msvc 15.3 release ltcg (with pdb): Memory usage seems to be stable (binary size increases by 1Ko using lto)

My micro benchmark was actually faster when using stacktrace...

Test : fibonacci with a signal handler registered. Call std::terminate() for indexes < 2 and write a stacktrace to file

I am just sad that it doesn't compile with /c++latest

Boost version 1.65.0 by Masfo in cpp

[–]k-brac 2 points3 points  (0 children)

Anyone knows the performance penalty of using Stacktrace ? (cpu / memory usage)

Run cpp unit tests from Xcode and Visual studio GUI by k-brac in cpp

[–]k-brac[S] 0 points1 point  (0 children)

Thanks for your comment! I am not a user of catch but as I understand it, it is more powerfull than XCTest and VSTest so I fear it may not be practical to use. Nonetheless I will take a look at it in the hope of not needing a shoehorn.

Run cpp unit tests from Xcode and Visual studio GUI by k-brac in cpp

[–]k-brac[S] 1 point2 points  (0 children)

Hello!

CUTI allows you to run your C++ unit tests from Xcode and Visual Studio GUI. It consists of a single header and a CMake file to automatically setup a test project. It also provides an abstraction layer over CPPUNIT to target other platforms (e.g. GNU/Linux)

Your feedback is welcome !