Comment installer Valgrind sur macOS Catalina (10.15) avec Homebrew?

11

J'ai essayé d'installer Valgrind avec la commande brew install Valgrind et je reçois un message dit:

"valgrind: cette formule ne se compile pas ou ne fonctionne pas comme prévu sur les versions de macOS plus récentes que Sierra en raison d'une incompatibilité en amont. Erreur: une exigence non satisfaite a échoué cette génération."

J'ai également essayé de "brasser éditer valgrind" et remplacer "sourceware.org/git/valgrind.git" par "git: //sourceware.org/git/valgrind.git" dans la section head du code, puis j'ai écrit sur Iterm " brew install --HEAD valgrind"mais ça me donne:

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
la source

Réponses:

2

Fonctionne à merveille !! voir https://github.com/LouisBrunner/valgrind-macos/issues/5 .

Pas Homebrew, vous devez le compiler à partir de la source, mais ce n'est pas si difficile.

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

prendre plaisir!

linfeng chen
la source
1
La version d'aujourd'hui de github semble avoir quelques améliorations. Je l'ai construit à partir des instructions ici, avec quelques modifications: 1. Pas besoin de l'étape 5. 2. Pas besoin de sudo aux étapes 3, 4 et 6. Jusqu'à présent, il semble bien fonctionner sur Catalina 10.15.4 .
Bob Murphy