László Nagy
László Nagy
Hey Guillaume, nice tool you've wrote. I was wondering that what's your opinion to implement these compilation database manipulations? - convert all file path to relative from absolute - convert...
Hi there, I've read [this article](https://immunant.com/blog/2020/01/quake3/) about how good C2Rust is. It's a nice post, like it very much... I am author of the Bear and scan-build tools. And would...
Don't deal with intercepting the compiler calls, Bear is a better tool to do it. The scenario when build systems generate-compile-delete code will be not supported. (Not sure how many...
https://reviews.llvm.org/D31365
log configuration and re-configuration is a hack. would be nice to clean up on it. - add handler and store it as module variable - set logger name by construction...
can a build interrupted by a ctrl-c? - when using libear - when using compiler wrapper - when analyze-build is in analyze-phase
SET(CMAKE_OSX_ARCHITECTURES "i386;x86_64" CACHE STRING "Rogue") is a good example when multiple architecture is given for a single compilation. the `-arch i386` has a corresponding macro defined which might cause different...
perl implementation has some feature which this code does not have yet.
using parallel stl, but see no improvement in speed... - replaced the `for` loop with a `std::for_each` call. - passed the `-ltbb` as a linker flag. - compared the speed...
There is a documented use case for this feature immunant/c2rust#227