Summary: | Won't Build on Mac OS X 10.11 (El Capitan) - undefined symbol ___bzero | ||
---|---|---|---|
Product: | [Developer tools] valgrind | Reporter: | chris |
Component: | general | Assignee: | Julian Seward <jseward> |
Status: | RESOLVED FIXED | ||
Severity: | major | CC: | noloader, philippe.waroquiers, terryeather |
Priority: | NOR | ||
Version: | 3.12.0 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | macOS | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
chris
2017-01-07 11:17:27 UTC
This problem was already discussed on the user mailing list. The below solution was proposed by John Reiser. > Undefined symbols for architecture x86_64: > > "___bzero", referenced from: > > _hijack_thread_state in libcoregrind-amd64-darwin.a(libcoregrind_amd64_darwin_a-syswrap-amd64-darwin.o) > > _RRegUniverse__init in libvex-amd64-darwin.a(libvex_amd64_darwin_a-host_generic_regs.o) $ grep -r __bzero valgrind-3.12 ===== coregrind/m_main.c #if defined(VGO_darwin) && DARWIN_VERS == DARWIN_10_10 /* This might also be needed for > DARWIN_10_10, but I have no way to test for that. Hence '==' rather than '>=' in the version test above. */ void __bzero ( void* s, UWord n ); void __bzero ( void* s, UWord n ) { (void) VG_(memset)( s, 0, n ); } #endif ===== So a timid developer chose "not functional" versus "works, but perhaps a few microseconds slower". Just change it to #if defined(VGO_darwin) omitting the test of DARWIN_VERS. Note that this was fixed in SVN, effectively by always defining __bzero. So, 3.13../SVN should build out of the box r16103 | rhyskidd | 2016-10-23 23:31:16 +0200 (Sun, 23 Oct 2016) | 1 line bzero is non-POSIX (deprecated), accordingly __bzero template required for all macOS versions. n-i-bz. ------------------------------------------------------------------------ Thanks Philippe! I can confirm it builds and installs using the latest SVN commit. The issue surfaced on a 2012 Intel Core2 Duo MacBook running OS X 10.9. Working from Master, the issue was resolved on OS X 10.9, also. *** Bug 377550 has been marked as a duplicate of this bug. *** |