Como instalar o Valgrind no macOS Catalina (10.15) com o Homebrew?

11

Tentei instalar o Valgrind com o comando brew install Valgrind e recebo uma mensagem dizendo:

"valgrind: esta fórmula não compila ou funciona como esperado nas versões do macOS mais recentes que o Sierra devido a uma incompatibilidade upstream. Erro: um requisito não satisfeito falhou nesta compilação."

Eu também tentei "fabricar edição valgrind" e substituir "sourceware.org/git/valgrind.git" por "git: //sourceware.org/git/valgrind.git" na seção principal do código e depois escrevi no Iterm " brew install --HEAD valgrind"mas isso me dá:

Last 15 lines from /Users/m/Library/Logs/Homebrew/valgrind/02.configure:
checking for gcc-ar... no
checking for perl... /usr/bin/perl
checking for gdb... /no/gdb/was/found/at/configure/time
checking dependency style of clang... none
checking for diff -u... yes
checking for clang option to accept ISO C99... none needed
checking for a supported version of gcc... ok (clang-11.0.0)
checking build system type... x86_64-pc-darwin
checking host system type... x86_64-pc-darwin
checking for a supported CPU... ok (x86_64)
checking for a 64-bit only build... yes
checking for a 32-bit only build... no
checking for a supported OS... ok (darwin)
checking for the kernel version... unsupported (19.0.0)
configure: error: Valgrind works on Darwin 10.x, 11.x, 12.x, 13.x, 14.x, 15.x, 16.x and 17.x (Mac OS X 10.6/7/8/9/10/11 and macOS 10.12/13)

READ THIS: https://docs.brew.sh/Troubleshooting
Mochi
fonte

Respostas:

1

Funciona incrivelmente !! consulte https://github.com/LouisBrunner/valgrind-macos/issues/5 .

Não Homebrew, você precisa compilá-lo da fonte, mas não é tão difícil.

1. git clone https://github.com/LouisBrunner/valgrind-macos.git
2. cd valgrind
3. sudo ./autogen.sh
4. sudo ./configure --prefix=/where/you/want/it/installed --enable-only64bit
5. copy the [contents][1] to ./coregrind/m_mach/mach_basics.c
6. sudo make 
7. sudo make install

desfrutar!

linfeng chen
fonte
A versão de hoje do github parece ter algumas melhorias. Eu o construí a partir das instruções aqui, com algumas alterações: 1. Não há necessidade da etapa 5. 2. Não há necessidade de sudo nas etapas 3, 4 e 6. Até agora, parece estar funcionando bem no Catalina 10.15.4 .
Bob Murphy