Bartek Kryza
Bartek Kryza
`clang-uml` just passes the options to Clang, however all options you add with `add_compile_flags` will be added right after the compiler path, i.e. before all other flags from compile commands:...
@gopalak Can you try using -isystem instead of -I, i.e. `clang-uml --query-driver . -vv --add-compile-flag "-isystem/opt/3p/include" --remove-compile-flag "-isystem/usr/include"` Also to see detailed logs you have to remove `-p`.
@gopalak To exclude files or directories you need `paths` filter (`elements` filter only works for diagram elements like classes). Add something like: ```yaml exclude: paths: # If your tests are...
@gopalak I've seen it in your previous message but I wasn't able to reproduce it - could be due to your libstdc++ version you're linking against. Can you rebuild in...
As to the stack trace I remember seeing this once in some other project, and they were related to linking and static variables, in particular double linking of some libraries...
My idea was that if you could create a Docker image with the same Ubuntu, LLVM, GCC and dependencies that you have in your system and create there some simple...
Ok, but I cannot reproduce the core dump in any way, so if you could create a Docker image with the same dependencies, add to it this test project, check...
By `It now fails on the builtin_ APIs from mintrinsic.h` you mean it crashes on this file or you get some specific errors there? Maybe LLVM 21 cannot parse the...
@hubidubi13 Thanks for reporting this, 0.6.2 was prepared for Bookworm, I will make sure new release supports Trixie. I'll also look into creating a release of 0.6.2 for Trixie, depending...