Cristian Morales Vega
Cristian Morales Vega
https://github.com/SonarOpenCommunity/sonar-cxx/wiki/sonar.cxx.gcc.reportPaths#configure-cxx-plugin says > Create a matching [sonar.cxx.gcc.regex](https://github.com/SonarOpenCommunity/sonar-cxx/wiki/sonar.cxx.gcc.regex), some samples are below. (I read it as a hard requirement, not something optional you happen to be able to change), and gives...
As can be seen in https://www.boost.org/doc/libs/1_87_0/doc/html/boost_asio/history.html a bunch of deprecated facilities of ASIO have finally been removed, meaning AZMQ doesn't build any more. I have not checked how difficult it's...
If you take this program ``` #include void test(){} ``` which builds with no issues with `clang -O1 -D_GNU_SOURCE -o /dev/null -c test.c`. And use OpenOSC 1.0.7, it fails with...
OpenOSC doesn't work with musl. The main benefit I would see in OpenOSC is having a C-library-independent _FORTIFY_SOURCE. musl does indeed [ask for such a library](https://wiki.musl-libc.org/future-ideas.html#Fortify). But OpenOSC right now...
This simple program ``` #include #include int main() { std::printf("%s\n", std::to_string(3.14).c_str()); } ``` fails to compile with LTO in the latest version of gcc (and also in older versions), when...
My understanding is that gcc 12 / clang 9 introduced a new builtin, __builtin_dynamic_object_size, which allows for an improved _FORTIFY_SOURCE=3. Looking at the OpenOSC source code, I see references to...
### Brief Issue Summary While ``` "cacheVariables": { "$comment": "My comment", "CMAKE_EXE_LINKER_FLAGS": { "type": "STRING", "value": "-Wno-error=free-nonheap-object" } } ``` is accepted, ``` "cacheVariables": { "CMAKE_EXE_LINKER_FLAGS": { "type": "STRING", "$comment":...
This simple program ``` #include int main() { const auto payload = boost::json::serialize(boost::json::object{{"field", "value"}}); } ``` , built with `g++ -g -o main main.cpp -I boost_1_88_0 -fsanitize=address -fsanitize=pointer-subtract`, and run...