search for: amccarth

Displaying 8 results from an estimated 8 matches for "amccarth".

2020 Apr 20
2
clang-format sets executable permission on windows (openNativeFile ignores mode on Windows)
...> Execute on my system, so I think it’s not git itself setting x permission. > > --paulr > > > > *From:* cfe-dev <cfe-dev-bounces at lists.llvm.org> *On Behalf Of *Chris > Tetreault via cfe-dev > *Sent:* Monday, April 20, 2020 12:32 PM > *To:* Adrian McCarthy <amccarth at google.com> > *Cc:* LLVM Dev <llvm-dev at lists.llvm.org>; cfe-dev at lists.llvm.org > *Subject:* Re: [cfe-dev] [llvm-dev] clang-format sets executable > permission on windows (openNativeFile ignores mode on Windows) > > > > I’m using Cygwin to interact with the sou...
2020 Apr 20
4
clang-format sets executable permission on windows (openNativeFile ignores mode on Windows)
...I’ve worked on projects previously where you would get dinged in code review for setting executable permissions on source files. It would be hugely annoying to have to remember to fixup the permissions every time you invoke clang-format. Thanks, Christopher Tetreault From: Adrian McCarthy <amccarth at google.com> Sent: Monday, April 20, 2020 8:36 AM To: Chris Tetreault <ctetreau at quicinc.com> Cc: LLVM Dev <llvm-dev at lists.llvm.org>; cfe-dev at lists.llvm.org Subject: [EXT] Re: [llvm-dev] clang-format sets executable permission on windows (openNativeFile ignores mode on Wind...
2020 Aug 06
2
How to make a subdirectory in a lit test?
Yeah, the llvm-ar tests are working on Windows. But I'm getting different results when I try to use the same commands in an LLDB lit test. Maybe there's something messed up in LLDB's local lit config? If I have `mkdir %t/subdir` in my lit test, I get either file-not-found or a complaint about "unrecognized option /subdir." The one-and-only mkdir on my PATH is
2020 Jul 30
2
[Buildbots] - Looking for help with new 32 bit Windows buildbot
Hi folks, *tl;dr* I'm having some trouble setting up a Windows buildbot and I'm looking for someone with LLVM-on-Windows experience to help me. *Long story* Hans Wennborg recently pointed <http://lists.llvm.org/pipermail/llvm-dev/2020-May/141803.html>out <http://lists.llvm.org/pipermail/llvm-dev/2020-May/141803.html>, that we're missing a 32 bit Windows buildbot and I
2020 Sep 04
3
Misleading documentation on FP to integer conversion instructions?
> On Sep 4, 2020, at 2:40 PM, Neil Nelson via llvm-dev <llvm-dev at lists.llvm.org> wrote: > >> If fptosi takes 0.9 -> 0, then that is not 'rounding' in any sense I'm aware of (IEEE754 or otherwise). >> Rounding (in the IEE754 sense) determines how a number is converted when it is halfway between two >> candidate results. (see round(), ceil(),
2020 Apr 17
2
clang-format sets executable permission on windows (openNativeFile ignores mode on Windows)
Hi, I'm having an issue where clang-format is setting the executable bit on all source files it modifies when using the -i parameter. I spent some time troubleshooting this issue today, and I found that clang-format create a new temporary file, writes the formatted source into that file, then copies it over the old file. Deep in the bowels of openNativeFile in
2020 Jun 19
4
Inclusive language in LLVM: can we rename `master` branch?
As I mentioned on another thread, we also use the term "slave" for the BuildBot builders. In the past, I was told this was due to being stuck on an old version of BuildBot. Fortunately, there is already work in progress to update BuildBot to a newer version. Since that's also going affect all the build machines, perhaps changing the name of the main branch should happen
2020 Jul 03
4
[cfe-dev] RFC: Replacing the default CRT allocator on Windows
Thanks for the suggestion James, it reduces the commit by about ~900 MB (14,9 GB -> 14 GB). Unfortunately it does not solve the performance problem. The heap is global to the application and thread-safe, so every malloc/free locks it, which evidently doesn’t scale. We could manually create thread-local heaps, but I didn’t want to go there. Ultimately allocated blocks need to share ownership