且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何使用Homebrew在macOS Mojave(10.14)上安装Valgrind?

更新时间:2023-01-14 21:18:06

基于此帖子此答案.

$ git clone https://github.com/Echelon9/valgrind.git
$ cd valgrind
$ git checkout feature/v3.14/macos-mojave-support-v2
$ ./autogen.sh
$ ./configure --prefix=/where/you/want/it/installed --enable-only64bit
$ make

如果出现以下错误:No rule to make target '/usr/include/mach/mach_vm.defs’,则需要运行xcode-select --install.如果尚未安装Xcode,则可能需要从应用程序商店安装Xcode.完成后,您将需要编辑coregrind/Makefile:

If you get the following error: No rule to make target '/usr/include/mach/mach_vm.defs’, you will need to run xcode-select --install. You might need to install Xcode from the app store if you don't already have it. Once that's done, you will need to edit the coregrind/Makefile:

搜索:

am__append_19 = \
    /usr/include/mach/mach_vm.defs \
        /usr/include/mach/task.defs \
        /usr/include/mach/thread_act.defs \
        /usr/include/mach/vm_map.defs

仔细检查以下文件夹是否存在,在每行前添加:

After double checking the below folder exists, prefix every line with:

/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk

最终结果应为:

am__append_19 = \
    /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/mach/mach_vm.defs \
        /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/mach/task.defs \
        /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/mach/thread_act.defs \
        /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/mach/vm_map.defs

现在再次运行make,应该找到包含文件.但这并不一定意味着它将进行编译.我收到以下错误:

Now run make again and the includes should be found. But that doesn't necessarily mean it will compile. I got the following error:

vg_preloaded.c:136:19: error: expected ';' before 'const'
 __private_extern__ const char *__crashreporter_info__ = "Instrumented by Valgrind " VERSION;

对此的一种解决方法是添加以下行:

A fix for this is to add the following line:

#define __private_extern__ extern

到以下文件:

  • coregrind/m_syscall.c
  • coregrind/m_syswrap/syswrap-darwin.c
  • coregrind/vg_preloaded.c
  • coregrind/m_syscall.c
  • coregrind/m_syswrap/syswrap-darwin.c
  • coregrind/vg_preloaded.c

最后,您需要动动手指,希望不会出现其他错误:

Finally, you need to cross your fingers hoping no other errors show up:

$ make
$ make install