Re: [cfe-users] cfe-users list moving to LLVM Discourse

2022-01-20 Thread JVApen via cfe-users
Hey John I think you are confusing Discord and Discourse. Jeroen On Thu, Jan 20, 2022, 15:51 via cfe-users wrote: > This seems like a mistake. Discord is pretty good for tight communities > where everyone wants to know about everything that’s going on, and don’t > need to refer back to old inf

Re: [cfe-users] Silencing errors in TSAN

2020-02-05 Thread JVApen via cfe-users
Hey Kyle, This is a bug in your code, if you have a context switch after the creation of the thread on an overloaded system, the close of the pipe can be closed while writing or even before it. Timing ain't a good way to synchronize threads. TSan is correct in flagging this occurrence. On Fri,

Re: [cfe-users] clang-tidy

2020-02-05 Thread JVApen via cfe-users
Hey Mario, I logged a bug for this a long time ago: https://bugs.llvm.org/show_bug.cgi?id=25319 >From what I can see, this still ain't solved. It makes sense to register you onto that one. On Thu, Jan 30, 2020, 19:02 Mario Charest via cfe-users < cfe-users@lists.llvm.org> wrote: > Hello, > > Fi

[cfe-users] Thread Safety Analysis Annotations

2017-01-08 Thread JVApen via cfe-users
Hi all, I know already about the Tread Safety Analysis annotations (see http://clang.llvm.org/docs/ThreadSafetyAnalysis.html). I love the idea and would like to use it one day in real production code. However, right now, it seems you should always use macros for indicating this code. These macros

[cfe-users] Generate mingw object files via clang-cl

2015-09-09 Thread JVApen via cfe-users
Hi all We are looking at a large project that has been written only with the MSVC compiler. I've already tried to compile this with Clang-Cl, which goes actually very nicely and already uncovered some bugs. (Let me thank all developers that already worked on making clang-cl such a good tool) Unfo