vient
vient
1. I'm actually using clangd, they only support most basic pragmas :( https://clangd.llvm.org/guides/include-cleaner#iwyu-pragmas 2. I checked that clangd does not do this, not sure about original IWYU tool
> Indexed c++20 standard library (incomplete due to errors): 15600 symbols, 4043 filtered I should note that there are no errors with clangd-16 here. Same log with only change being...
LLVM confirmed that isysroot is not resolved in any way so ccache should not modify it when "relocatable-pch" is seen. It seems that proper way would be to use relative...
Yes, I'm already doing it but it may take some time.
No, lost interest
If you use exanic-clock-check, note that it is really simple and does not account for PCI latency which may very well be around 300ns.
I ended up with hard limiting retransmissions (and increasing time between retransmissions), maybe this will give you ideas. ```diff diff --git a/modules/exasock/exasock-tcp.c b/modules/exasock/exasock-tcp.c index 69bb947..03251dd 100644 --- a/modules/exasock/exasock-tcp.c +++ b/modules/exasock/exasock-tcp.c...
Correction: I also changed `openvino::protobuf_shutdown` to `"$"` here https://github.com/openvinotoolkit/openvino/blob/releases/2024/0/cmake/developer_package/frontends/frontends.cmake#L204. Without it linker throws away `protobuf_killer` object. Maybe it is enough to declare it as `extern "C"` or explicitly set visibility...
just for convenience
Another reduction, this time can be compiled https://godbolt.org/z/WKqG3xY69 Doubt that it was needed but just in case ```cpp class a; namespace std { template struct coroutine_traits; template struct coroutine_handle {...