Jim Garrison
Jim Garrison
Somewhat related, it would also be very nice if the documentation explained any special considerations to consider when choosing the order in which to apply multiple converters. For instance, in...
+1 to this. I am making some benchmarks of different system sizes, and it is a bit annoying to make sense of this: ``` "EV" => 6-element BenchmarkTools.BenchmarkGroup: tags: []...
I'm finding myself back here with the same wish I had back in September. I believe this would be a really useful feature. Now that julia has reached 1.0, I...
``` $ which g++ /usr/lib64/ccache/g++ ``` Yes. The directory containing ccache-wrapped versions of compilers is added to the `PATH` in `/etc/profile.d/ccache.sh`.
Well, I'm not certain that there is an Ekam bug, but something about it is interacting strangely with ccache when it is installed on Fedora. If I boot the following...
Fedora's `/var/cache/ccache` has permissions `rwxrws---`. Is there any possibility that ekam's seccomp filter could be preventing subprocesses from writing there? (That was my first suspicion, anyway, when I filed this...
ccache owns the directory. I am a member of the group on my local machine, but I suspect vagrant may not be a member on the virtual one. I will...
I had indeed forgotten to `usermod -a -G ccache vagrant` on the VM. But like on my local machine, the error remains even once I run that command and login...
In support of that hypothesis, I managed to reproduce on Debian bullseye, which has the same version of ccache (version 4.2) as Fedora 34. Previously, I had been unable to...
I experimented with the following patch, which explicitly allows reads and writes under `/var/cache/ccache` to bypass special handling. With it, everything works with ccache. Ideally, this allowlist should be configurable,...