Homebrewを使用してmacOS Catalina(10.15)にValgrindをインストールする方法


11

コマンドbrew install Valgrindを使用してValgrindをインストールしようとすると、次のメッセージが表示されます。

「valgrind:アップストリームの非互換性が原因で、この式はSierraより新しいmacOSバージョンでは期待どおりにコンパイルまたは機能しません。エラー:要件が満たされていないため、このビルドに失敗しました。」

また、「brew edit valgrind」を試して、コードのヘッドセクションで「sourceware.org/git/valgrind.git」を「git://sourceware.org/git/valgrind.git」に置き換えてから、Itermに書き込みましたbrew install --HEAD valgrind"しかし、それは私に与えます:

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

回答:



1

驚くほど機能します!! https://github.com/LouisBrunner/valgrind-macos/issues/5を参照してください

Homebrewではなく、ソースからコンパイルする必要がありますが、それほど難しくありません。

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

楽しい!


githubからの今日のバージョンはいくつかの改善があるようです。いくつかの変更を加えて、ここの指示から作成しました。1。手順5は必要ありません。2。手順3、4、6でsudoは不要です。 。
ボブマーフィー

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.