Louis Brunner
Louis Brunner
> Would you be open to allowing macOS 14 if running on GitHub Actions (e.g., if the [`GITHUB_ACTIONS` env variable](https://docs.github.com/en/actions/reference/workflows-and-actions/variables) is set)? This combination seems to work in your CI....
Just merged an updated formula, sorry about that! 😄 Note that you will need to use `HOMEBREW_I_ACKNOWLEDGE_THIS_MIGHT_CRASH_OR_DAMAGE_MY_COMPUTER` during the `brew install` and the other name when running, sorry about the...
@prldev Can you open a new issue? Also include your version of Xcode, ld, etc.
With the addition of macOS 26 Tahoe support (#152), I have done a few changes. Given than macOS 26 runs fine (but very slow, nearly 3x slower than on macOS...
Just adding another anecdotal data point here, in case it happens to anyone else. I was doing some testing yesterday on my machine (macOS 15) and ended up crashing it...
Hi @nym21, Thank you for your report. I think this should be fairly straightforward to fix, unfortunately I do not have access to a macOS 26 computer at the moment...
I finally have macOS 26 to test with but unfortunately I don't have a (great) solution yet. I can reproduce the same issue by installing through brew but not locally....
@Nikky112 What file path did you add in `configure --prefix=path`? Is that in your `$PATH` variable? If you chose something like `configure --prefix=/Users/abc/valgrind` you would then need to add `/Users/abc/valgrind/bin`...
Depends. Where did you install it? Homebrew will usually install it in something like `/opt/homebrew/Cellar/valgrind/HEAD-b1d25c5/` with the binary being at `/opt/homebrew/Cellar/valgrind/HEAD-b1d25c5/bin/valgrind`. After that brew will link the command in `/opt/homebrew/bin`,...
You can't use valgrind this way. Either you need to install it fully on your system or you need to use the `vg-in-place` script. Check this document for reference: https://github.com/LouisBrunner/valgrind-macos/blob/main/README_DEVELOPERS#L10-L25