Closed liuxianming closed 10 years ago
I had the same error. You are probably compiling caffe with the default version of python on your mac (2.6) and are now trying to import caffe via python 2.7. Try upgrading and make sure that boost python is using 2.7. That fixed it for me.
@nicodjimenez is right.
You need to install Python 2.7 and our Python dependencies, for which Anaconda is a good choice, then build boost python and pycaffe with it and not the system Python.
I had the same error. I can compile Caffe and "make runtest" generated no errors. But "import caffe" generate segmentation fault unfortunately.
I installed Python by using brew. OSX 10.10.2 Python 2.7.9 But since I set "cpu-only", I didn't changed fomuras to "-stdlib=libstdc++".
I tried to install Caffe many times. Any help is appreciated.
I'm getting the same issue: "make runtest" is fine but "import caffe" in a python prompt results in "Segmentation fault: 11". Have tried to re-download and reinstall all components several times... please let me know what else I can share to be helpful? Any help is greatly appreciated.
Macbook Air, OSX 10.10.2, Homebrew and system-wide python are both 2.7.9 (system python symlinks to Homebrew python). Boost does appear as one of the last calls in the stack per the crash report.
Same issue with OSX 10.9.4, Python 2.7, libc++, CUDA 7, libs via macports. Built with cmake.
Finally fixed it (painfuly). Problem (as has been indicated in a few other forum posts) was different versions of python: I had Python 2.7.9 (installed via homebrew in /usr/local/Cellar/python) which was newer than the system's python... and the system python's libraries (found in /System/Library/Frameworks) would "sneak in" during the linking stage and ultimately cause segfaults.
This is probably not the right way to fix it, but in hope of being helpful my work-around was: 1) Rename the system python libraries to something else so they wouldn't be found by ld. ("sudo mv /System/Library/Frameworks/Python.framework /System/Library/Frameworks/Python.framework_bak")
2) Explicitly add the correct library path in caffe's Makefile.config (e.g., "PYTHON_LIB := /usr/local/lib /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib").
If you're not sure where your up-to-date python library is then in a shell run "locate updatedb; locate libpythonX.X" where X.X is your version of python... use the directory in the output that contains the .dylib and .a files referring to your preferred installation of Python.
If you're wondering if you suffer from the same problem I did, I was tipped of by a line in OSX's problem report that indicated an old version of python sneaking in. Under the "Binary Images" section there was a line that read, "0x108c69000 - 0x108d5aff7 org.python.python (2.7.6 - 2.7.6)
I'm facing similar issues for quite sometime now and still have not been able to solve it. Any solutions to this problem would really be appreciated. I've tried out most of the solutions posted on various forums across the internet.
System:
MacBook Pro
MAC OSX 10.10.3
Installed with CPU_ONLY:=1
Soln-1:
Generally, setting the PYTHONPATH is what most people forget and land in trouble. My PYTHONPATH variable looks like this.
export PYTHONPATH="<Caffe-Home>/caffe/python:$PYTHONPATH"
Error :
The python command (on using 'import caffe') prompt freezes for a few seconds and returns with a "segmentation fault: 11" error message with the complete log as pasted below (at the bottom).
Soln-2:
I've also tried the distribute version.
export PYTHONPATH="<Caffe-home>/caffe/distribute/python:$PYTHONPATH"
Error : (on the python-command-prompt after using 'import caffe')
It is unable to find the _caffe.so file in the caffe directory however I have manually checked that this file is present in the directory.
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/Home/research/virginia/CloudCV/caffe/distribute/python/caffe/__init__.py", line 1, in <module>
from .pycaffe import Net, SGDSolver
File "/Users/Home/research/virginia/CloudCV/caffe/distribute/python/caffe/pycaffe.py", line 13, in <module>
from ._caffe import Net, SGDSolver
ImportError: dlopen(/Users/Home/research/virginia/CloudCV/caffe/distribute/python/caffe/_caffe.so, 2): Library not loaded: @rpath/libcaffe.so
Referenced from: /Users/Home/research/virginia/CloudCV/caffe/distribute/python/caffe/_caffe.so
Reason: image not found
@gp335 : I might not be on the same issue as yours as I don't see any "/System/Library/Frameworks/Python.framework/Versions/2.7/Python" calls being made in my error-log. To be precise, here it is.... (error-log on using /caffe/python in PYTHONPATH)
Process: Python [761]
Path: /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
Identifier: Python
Version: 2.7.9 (2.7.9)
Code Type: X86-64 (Native)
Parent Process: bash [710]
Responsible: iTerm [635]
User ID: 501
Date/Time: 2015-05-28 00:28:36.361 +0530
OS Version: Mac OS X 10.10.3 (14D136)
Report Version: 11
Anonymous UUID: 4D1E2216-6A20-E2AC-00A1-758B0B4AF821
Sleep/Wake UUID: 5F600EBD-9CB0-4BD5-A304-C45F57351EEE
Time Awake Since Boot: 18000 seconds
Time Since Wake: 6800 seconds
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
VM Regions Near 0:
-->
__TEXT 0000000106592000-0000000106594000 [ 8K] r-x/rwx SM=COW /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 ??? 000000000000000000 0 + 0
1 org.python.python 0x00000001080770dd PyEval_GetGlobals + 23
2 org.python.python 0x000000010808662b PyImport_Import + 137
3 org.python.python 0x0000000108084d27 PyImport_ImportModule + 31
4 _caffe.so 0x00000001072edcf8 caffe::init_module__caffe() + 4328
5 libboost_python.dylib 0x0000000107f98391 boost::python::handle_exception_impl(boost::function0<void>) + 81
6 libboost_python.dylib 0x0000000107f993b9 boost::python::detail::init_module(char const*, void (*)()) + 121
7 org.python.python 0x00000001066332cf _PyImport_LoadDynamicModule + 140
8 org.python.python 0x0000000106632fb7 import_submodule + 270
9 org.python.python 0x0000000106632b81 load_next + 280
10 org.python.python 0x0000000106630d89 PyImport_ImportModuleLevel + 1135
11 org.python.python 0x00000001066163db builtin___import__ + 135
12 org.python.python 0x00000001065a10ea PyObject_Call + 99
13 org.python.python 0x0000000106620d8b PyEval_CallObjectWithKeywords + 93
14 org.python.python 0x000000010661d065 PyEval_EvalFrameEx + 8375
15 org.python.python 0x000000010661ad7a PyEval_EvalCodeEx + 1409
16 org.python.python 0x000000010661a7f3 PyEval_EvalCode + 54
17 org.python.python 0x000000010662f836 PyImport_ExecCodeModuleEx + 241
18 org.python.python 0x0000000106632516 load_source_module + 1091
19 org.python.python 0x0000000106632fb7 import_submodule + 270
20 org.python.python 0x0000000106632b81 load_next + 280
21 org.python.python 0x0000000106630d89 PyImport_ImportModuleLevel + 1135
22 org.python.python 0x00000001066163db builtin___import__ + 135
23 org.python.python 0x00000001065a10ea PyObject_Call + 99
24 org.python.python 0x0000000106620d8b PyEval_CallObjectWithKeywords + 93
25 org.python.python 0x000000010661d065 PyEval_EvalFrameEx + 8375
26 org.python.python 0x000000010661ad7a PyEval_EvalCodeEx + 1409
27 org.python.python 0x000000010661a7f3 PyEval_EvalCode + 54
28 org.python.python 0x000000010662f836 PyImport_ExecCodeModuleEx + 241
29 org.python.python 0x0000000106632516 load_source_module + 1091
30 org.python.python 0x00000001066327d7 load_package + 303
31 org.python.python 0x0000000106632fb7 import_submodule + 270
32 org.python.python 0x0000000106632b81 load_next + 280
33 org.python.python 0x0000000106630d89 PyImport_ImportModuleLevel + 1135
34 org.python.python 0x00000001066163db builtin___import__ + 135
35 org.python.python 0x00000001065a10ea PyObject_Call + 99
36 org.python.python 0x0000000106620d8b PyEval_CallObjectWithKeywords + 93
37 org.python.python 0x000000010661d065 PyEval_EvalFrameEx + 8375
38 org.python.python 0x000000010661ad7a PyEval_EvalCodeEx + 1409
39 org.python.python 0x000000010661a7f3 PyEval_EvalCode + 54
40 org.python.python 0x000000010663a8a2 run_mod + 53
41 org.python.python 0x000000010663a6be PyRun_InteractiveOneFlags + 353
42 org.python.python 0x000000010663a1cd PyRun_InteractiveLoopFlags + 192
43 org.python.python 0x000000010663a077 PyRun_AnyFileExFlags + 60
44 org.python.python 0x000000010664bc5b Py_Main + 3051
45 libdyld.dylib 0x00007fff98d525c9 start + 1
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x00000001081252d8 rbx: 0x0000000108406030 rcx: 0x0800bf453c5d2274 rdx: 0x0000000108409050
rdi: 0x0000000000000000 rsi: 0x00000001080b90d7 rbp: 0x00007fff5966c050 rsp: 0x00007fff5966c048
r8: 0x2000000000000200 r9: 0x0800000000000100 r10: 0x0000000004001049 r11: 0x000000000034dfe4
r12: 0x0000000108406030 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
rip: 0x0000000000000000 rfl: 0x0000000000010206 cr2: 0x0000000000000000
Logical CPU: 2
Error Code: 0x00000014
Trap Number: 14
Binary Images:
0x106592000 - 0x106593fff +org.python.python (2.7.9 - 2.7.9) <E6A2C746-0CEF-3357-A494-E4951EAF0BA4> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
0x106596000 - 0x106688fff +org.python.python (2.7.9, [c] 2004-2014 Python Software Foundation. - 2.7.9) <37AA20B5-E884-30ED-B70C-34B482099B56> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/Python
0x10686a000 - 0x10686cfff +_locale.so (0) <29EFF01B-811A-3630-A6D8-0143809C5048> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_locale.so
0x1068ef000 - 0x1068f1fff +readline.so (0) <C5B909D2-8A99-386A-9213-1A90D3563E4F> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/readline.so
0x1068f7000 - 0x106917ff7 +libreadline.6.dylib (0) <254C680B-35F9-31BF-9C3B-D7A2768A4E67> /usr/local/opt/readline/lib/libreadline.6.dylib
0x10692e000 - 0x106931fff +_collections.so (0) <9A34391A-4CDF-31A6-B364-15E13AA9A89F> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_collections.so
0x106936000 - 0x106939fff +operator.so (0) <30570608-5F04-37E9-A637-0DD32B5158C5> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/operator.so
0x10693f000 - 0x106944fff +itertools.so (0) <C319423F-0D83-3EB3-8518-0D9C4A24D4E4> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/itertools.so
0x10694d000 - 0x10694efff +_heapq.so (0) <79FF4316-7429-3CCC-B264-277305FBB159> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_heapq.so
0x106992000 - 0x106995ff7 +math.so (0) <DEF5D1EF-0A78-35A3-8F83-8F382A844AE7> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/math.so
0x10699a000 - 0x106a7bfff +multiarray.so (0) <727FB529-9121-3F11-AAC3-9601460BEF51> /usr/local/lib/python2.7/site-packages/numpy/core/multiarray.so
0x106ad2000 - 0x106adcfff +datetime.so (0) <73C3B2A8-8E38-3BC1-A674-CD4338A4A0BB> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/datetime.so
0x106ae5000 - 0x106b2dfff +umath.so (0) <2DDAADD1-952E-3FF7-AA00-D8A27E056451> /usr/local/lib/python2.7/site-packages/numpy/core/umath.so
0x106b83000 - 0x106b8efff +cPickle.so (0) <9FE3D79B-9D73-348E-82B8-E3B8DD88C81D> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cPickle.so
0x106bd4000 - 0x106bd5fff +cStringIO.so (0) <37DDE83B-BE50-3DF7-BB34-CD2593032A88> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cStringIO.so
0x106bda000 - 0x106bdefff +_dotblas.so (0) <36AD9BFC-537B-33B1-95F3-A85F35F1255C> /usr/local/lib/python2.7/site-packages/numpy/core/_dotblas.so
0x106be2000 - 0x106be3fff +_functools.so (0) <EE5FF464-4B9D-3448-8435-957D5FAC1818> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_functools.so
0x106c26000 - 0x106c40fff +scalarmath.so (0) <4C2CE67C-EBF1-30F3-881E-B05153D59527> /usr/local/lib/python2.7/site-packages/numpy/core/scalarmath.so
0x106d49000 - 0x106d4afff +time.so (0) <3720B3AF-7F96-3635-8A4A-494CFA5E22D0> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/time.so
0x106d90000 - 0x106d91fff +grp.so (0) <9BBB7FFB-65C9-34D1-B153-B34378B8A6F5> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/grp.so
0x106d94000 - 0x106da3fff +_io.so (0) <B4FE2132-E171-3DAB-9750-A128F8DE3D31> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_io.so
0x106db4000 - 0x106db7fff +binascii.so (0) <F82DEDCB-9A28-39DE-A8F0-C1DEFD84D503> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/binascii.so
0x106dfa000 - 0x106dfcfff +_hashlib.so (0) <77B4105A-BB03-3C8D-A71E-78652E0A984A> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_hashlib.so
0x106e00000 - 0x106e3dfff +libssl.1.0.0.dylib (0) <2E0DC1A7-B1BD-3DA2-9AB6-8CF00E12E51F> /usr/local/opt/openssl/lib/libssl.1.0.0.dylib
0x106e59000 - 0x106fc948f +libcrypto.1.0.0.dylib (0) <3036BB5F-CF7A-326D-A14C-2F8A87BBC716> /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib
0x107040000 - 0x107041ff7 +_random.so (0) <48AC06E5-E5A3-30AF-891A-C777DF4DF351> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_random.so
0x107044000 - 0x107045fff +fcntl.so (0) <0E5E4BF0-D961-38E8-A3D3-173D241C2D25> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/fcntl.so
0x107048000 - 0x10704cff7 +_compiled_base.so (0) <BBDB89E9-4F8F-3A3C-8CB8-48CCBF60BDCE> /usr/local/lib/python2.7/site-packages/numpy/lib/_compiled_base.so
0x10708f000 - 0x107091fff +lapack_lite.so (0) <A96DC7D9-0041-310E-9255-628A367F649D> /usr/local/lib/python2.7/site-packages/numpy/linalg/lapack_lite.so
0x107094000 - 0x1070a3ff7 +_umath_linalg.so (0) <26511FDB-C752-3FBB-B99F-EC7C5B204721> /usr/local/lib/python2.7/site-packages/numpy/linalg/_umath_linalg.so
0x1070ea000 - 0x1070eafff +future_builtins.so (0) <6316F416-66B1-3FD1-8D5F-CD4304FD6F4B> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/future_builtins.so
0x1070ed000 - 0x1070f4ff7 +fftpack_lite.so (0) <4AC2C802-A00E-33AE-8D0E-3BD0D21AA135> /usr/local/lib/python2.7/site-packages/numpy/fft/fftpack_lite.so
0x107137000 - 0x107189ff7 +mtrand.so (0) <28B39BF0-3067-344D-97E7-AFBA28328DCE> /usr/local/lib/python2.7/site-packages/numpy/random/mtrand.so
0x107211000 - 0x107220fff +_ctypes.so (0) <6F57E1D8-279C-3F55-B5E1-E0469D0DA41E> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_ctypes.so
0x10722b000 - 0x10722efff +_struct.so (0) <1D851534-7819-38F1-8E17-295A89A317D4> /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_struct.so
0x1072ea000 - 0x107343fff +_caffe.so (0) <85CE7193-FB1F-3869-8FFA-45BA2646F679> /Users/USER/*/_caffe.so
0x107419000 - 0x107583fff +libcaffe.so (0) <86014A1D-70CF-3BD1-8CFF-04C64DB8D07B> /Users/USER/*/libcaffe.so
0x107676000 - 0x10769cff7 +libglog.0.dylib (0) <F761E8DA-978B-3A1A-A15C-414114292AE4> /usr/local/lib/libglog.0.dylib
0x1076c0000 - 0x107759ff7 +libprotobuf.9.dylib (0) <D5FDD8D1-CB08-3AF8-A421-AA9E853A7148> /usr/local/lib/libprotobuf.9.dylib
0x1077c7000 - 0x1077f4ff7 +libleveldb.1.dylib (0) <C691B11C-30C9-38DA-AE08-1C272705CB1E> /usr/local/lib/libleveldb.1.dylib
0x107811000 - 0x107814ff7 +libsnappy.1.dylib (0) <3F633F67-0FC4-3B38-8BDF-C5975334E105> /usr/local/lib/libsnappy.1.dylib
0x107818000 - 0x107826fff +liblmdb.dylib (0) <4BB994C0-00A5-3CB0-A104-DE2005EC2F0E> /usr/local/lib/liblmdb.dylib
0x10782b000 - 0x10782dff3 +libboost_system.dylib (0) <B027B810-4AD7-3352-8150-55D816859E63> /usr/local/lib/libboost_system.dylib
0x107832000 - 0x107847fff +libhdf5_hl.9.dylib (0) <498449E7-BBF3-3B83-95E3-758B180B0931> /usr/local/lib/libhdf5_hl.9.dylib
0x107850000 - 0x107a5bfff +libhdf5.9.dylib (0) <661DE0A3-6BEF-350A-8105-9FC16BAFDB3B> /usr/local/lib/libhdf5.9.dylib
0x107a95000 - 0x107c46ff7 +libopencv_core.2.4.dylib (0) <DD80EB68-6F3F-3E24-93AB-6BCBE0C8A9B3> /usr/local/lib/libopencv_core.2.4.dylib
0x107c9f000 - 0x107cc7fff +libopencv_highgui.2.4.dylib (0) <91065BBD-8AEB-369F-98C5-6EB5536B22D0> /usr/local/lib/libopencv_highgui.2.4.dylib
0x107cdf000 - 0x107e70fff +libopencv_imgproc.2.4.dylib (0) <0BEC7CF1-8F5B-37D4-8E2C-E02D7770F87C> /usr/local/lib/libopencv_imgproc.2.4.dylib
0x107f57000 - 0x107f65ffb +libboost_thread-mt.dylib (0) <C386440C-49D8-3CC7-8396-F060010C70B0> /usr/local/lib/libboost_thread-mt.dylib
0x107f7f000 - 0x107faeff7 +libboost_python.dylib (0) <C978168C-E87B-3A4E-A76C-1F7D07832B10> /usr/local/lib/libboost_python.dylib
0x107fed000 - 0x1080deff7 org.python.python (2.7.6 - 2.7.6) <A5C1B694-31A0-3966-B6BC-C40694DC707F> /System/Library/Frameworks/Python.framework/Versions/2.7/Python
0x108144000 - 0x10814dfff +libsz.2.dylib (0) <FA48FCCB-899B-3A96-8CBB-433EEC936498> /usr/local/lib/libsz.2.dylib
0x108158000 - 0x108184fff +libjpeg.8.dylib (0) <7A528846-854A-370E-AE9A-EEA0842EEC9C> /usr/local/lib/libjpeg.8.dylib
0x10818b000 - 0x1081aeff7 +libpng16.16.dylib (0) <78FA9D5B-C0BB-3B57-AA91-B092AE7A58FF> /usr/local/lib/libpng16.16.dylib
0x1081b7000 - 0x108210ff7 +libtiff.5.dylib (0) <0601B3BF-B13F-3400-A1B1-069E55830157> /usr/local/lib/libtiff.5.dylib
0x10821e000 - 0x108228ff7 +libImath-2_1.11.dylib (0) <73F59E8D-5025-3893-A7B2-105EF546922A> /usr/local/lib/libImath-2_1.11.dylib
0x10822d000 - 0x108319fff +libIlmImf-Imf_2_1.21.dylib (0) <059643D9-3318-3E9A-A1FA-0604015140B2> /usr/local/lib/libIlmImf-Imf_2_1.21.dylib
0x10836c000 - 0x108371ff7 +libIex-2_1.11.dylib (0) <AA6DD4DC-17A8-3827-8FEF-DEF14C1B215D> /usr/local/lib/libIex-2_1.11.dylib
0x10837f000 - 0x1083c0ff7 +libHalf.11.dylib (0) <EAB5D6BB-536E-39F5-9447-11B9E43678A0> /usr/local/lib/libHalf.11.dylib
0x1083c3000 - 0x1083c6fff +libIlmThread-2_1.11.dylib (0) <DC634F1B-DBD1-3519-9A13-FB9BC2F810D7> /usr/local/lib/libIlmThread-2_1.11.dylib
0x1083cb000 - 0x1083ccfff +libIexMath-2_1.11.dylib (0) <6A43F010-DDC5-3FE1-8B43-5AE2B59FEA9C> /usr/local/lib/libIexMath-2_1.11.dylib
0x1083cf000 - 0x1083d1ff3 +libboost_system-mt.dylib (0) <1F805F25-9640-3288-AEC9-23884EDCF5B4> /usr/local/lib/libboost_system-mt.dylib
0x7fff68f40000 - 0x7fff68f76837 dyld (353.2.1) <65DCCB06-339C-3E25-9702-600A28291D0E> /usr/lib/dyld
0x7fff8ac2f000 - 0x7fff8acc4ff7 com.apple.ColorSync (4.9.0 - 4.9.0) <9150C2B7-2E6E-3509-96EA-7B3F959F049E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff8adbd000 - 0x7fff8ade1ff7 com.apple.Sharing (328.16 - 328.16) <F96C7040-5FAF-3BC6-AE1E-5BF9CBE786C4> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff8ade2000 - 0x7fff8ade5fff com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff8adea000 - 0x7fff8adf7ff7 libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
0x7fff8adf8000 - 0x7fff8ae03fff libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
0x7fff8afb9000 - 0x7fff8afc8fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff8affc000 - 0x7fff8b027fff libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
0x7fff8b028000 - 0x7fff8b029fff libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff8b085000 - 0x7fff8b09fff7 liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
0x7fff8b0a0000 - 0x7fff8b0a9ff7 libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
0x7fff8b0aa000 - 0x7fff8b104ff7 com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff8b105000 - 0x7fff8b13efff com.apple.AirPlaySupport (2.0 - 215.18) <6AF8E973-3643-3FEE-AA8F-541B9F093EEE> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport
0x7fff8b13f000 - 0x7fff8b24eff3 com.apple.desktopservices (1.9.3 - 1.9.3) <FEE11342-5BC4-37A7-8169-DA48BE17B9C9> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff8b25b000 - 0x7fff8b2a8ff3 com.apple.CoreMediaIO (601.0 - 4760) <B2B71300-A863-30F8-8F00-B852CF843264> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff8b2a9000 - 0x7fff8b2d9fff libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
0x7fff8b2da000 - 0x7fff8b2dafff com.apple.CoreServices (62 - 62) <C69DA8A7-B536-34BF-A93F-1C170E2C6D58> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff8b3b3000 - 0x7fff8b3b8fff libsystem_stats.dylib (163.20.16) <FBC3F80F-A0FB-3BD6-9A7E-800DE45F092E> /usr/lib/system/libsystem_stats.dylib
0x7fff8b3c1000 - 0x7fff8b3cbff7 com.apple.NetAuth (5.2 - 5.2) <2BBD749A-8E18-35B8-8E48-A90347C1CCA7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff8b3d2000 - 0x7fff8b4c4fff libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
0x7fff8b7d6000 - 0x7fff8b7fefff libsystem_info.dylib (459.20.1) <AEB3FE62-4763-3050-8352-D6F9AF961AE6> /usr/lib/system/libsystem_info.dylib
0x7fff8b808000 - 0x7fff8b818ff7 libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
0x7fff8b83d000 - 0x7fff8b83dfff com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff8b9dc000 - 0x7fff8bb6afff libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff8bb6b000 - 0x7fff8bb7cff7 libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
0x7fff8bbe9000 - 0x7fff8bc6aff7 com.apple.CoreUtils (1.1 - 110.1) <C98E1441-3FCB-3BC6-BB51-5380BD39EA88> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff8bd8a000 - 0x7fff8bdd7ff7 com.apple.print.framework.PrintCore (10.3 - 451.1) <DE992474-0841-38A1-B4F6-46D653E454D5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff8bdd8000 - 0x7fff8c057ff7 com.apple.CoreData (111 - 526.3) <5A27E0D8-5E5A-335B-B3F6-2601C7B976FA> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff8c058000 - 0x7fff8c060ff7 com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff8c061000 - 0x7fff8c064fff com.apple.IOSurface (97.4 - 97.4) <AE11CFBC-4D46-30F3-BEEC-4C8131079391> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff8c0f9000 - 0x7fff8c129fff com.apple.GSS (4.0 - 2.0) <A37BAF76-C262-3292-B82D-F004CAC5F333> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff8c14f000 - 0x7fff8c1b6ffb com.apple.datadetectorscore (6.0 - 396.1.1) <9B0B3198-DDBE-36C0-8BA9-3EC89C725282> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff8c212000 - 0x7fff8c212fff com.apple.audio.units.AudioUnit (1.12 - 1.12) <E5335492-7EFE-31EA-BE72-4A9CEE68D58E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff8c213000 - 0x7fff8c22dff3 com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x7fff8c967000 - 0x7fff8c9d9fff com.apple.framework.IOKit (2.0.2 - 1050.20.2) <09C0518C-90DF-3FC3-96D6-34D35F72C8EF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff8c9da000 - 0x7fff8cde7ff7 libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff8cf03000 - 0x7fff8d035ff7 com.apple.MediaControlSender (2.0 - 215.18) <86E901A7-64C3-3D2C-BBD4-E385405831D3> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
0x7fff8d036000 - 0x7fff8d1e6ff3 com.apple.QuartzCore (1.10 - 361.18) <ACA61D8F-9535-3141-8FDD-AC3EF6BF0806> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff8d1e7000 - 0x7fff8d1edfff libsystem_trace.dylib (72.20.1) <840F5301-B55A-3078-90B9-FEFFD6CD741A> /usr/lib/system/libsystem_trace.dylib
0x7fff8d1f7000 - 0x7fff8d211ff7 libextension.dylib (55.2) <3BB019CA-199A-36AC-AA22-14B562138545> /usr/lib/libextension.dylib
0x7fff8d27c000 - 0x7fff8d2ebfff com.apple.SearchKit (1.4.0 - 1.4.0) <80883BD1-C9BA-3794-A20E-476F94DD89A9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff8d37a000 - 0x7fff8d395ff7 libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
0x7fff8d3b2000 - 0x7fff8d3b4ff7 com.apple.securityhi (9.0 - 55006) <5DB5773C-FC07-302C-98FE-4B80D88D481A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff8d3b5000 - 0x7fff8d69cffb com.apple.CoreServices.CarbonCore (1108.6 - 1108.6) <8953580E-7857-33B2-AA64-98296830D3A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff8d69d000 - 0x7fff8d6a8fff libGL.dylib (11.1.2) <BF99CC65-215A-3C7D-87D7-3F7EE6E9B3DD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff8d6a9000 - 0x7fff8d6b5ff7 com.apple.OpenDirectory (10.10 - 187) <1E07769D-68DE-3BF2-8E9E-A1E98BF70D1B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff8d733000 - 0x7fff8d7b1fff com.apple.CoreServices.OSServices (640.4 - 640.4) <20121A5E-7AB5-3624-8CF0-3562F97C8A95> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff8d7b2000 - 0x7fff8d7b5fff com.apple.xpc.ServiceManagement (1.0 - 1) <9E025823-660A-30C5-A568-223BD595B6F7> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff8d84d000 - 0x7fff8d84dfff com.apple.Carbon (154 - 157) <9BF51672-1684-3FDE-A561-FC59A2864EF8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff8db10000 - 0x7fff8db10ff7 libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
0x7fff8e146000 - 0x7fff8e160fff com.apple.AppleVPAFramework (1.4.3 - 1.4.3) <AE62A92E-EDA7-37AD-8AF0-7912E9381A1F> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff8e1d9000 - 0x7fff8e2cdfff libFontParser.dylib (134.2) <9F57B025-AB9C-31DD-9D54-2D7AB1298885> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff8e2ce000 - 0x7fff8e318ff7 com.apple.HIServices (1.22 - 522.1) <E8BD41E4-7747-3CAF-807A-5CA9AD16B525> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff8e371000 - 0x7fff8e375fff libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
0x7fff8e37a000 - 0x7fff8e397fff libsystem_kernel.dylib (2782.20.48) <EAFD7BD0-0C30-3E7D-9528-F9916BA0167C> /usr/lib/system/libsystem_kernel.dylib
0x7fff8e398000 - 0x7fff8e3deff7 libFontRegistry.dylib (134.1) <CE41D8C2-BEED-345C-BC4F-3775CC06C672> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff8e40f000 - 0x7fff8e411fff com.apple.loginsupport (1.0 - 1) <DAAD7013-A19D-3858-BFF7-DE1DAF664401> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff8e46c000 - 0x7fff8e474fff libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
0x7fff8e48e000 - 0x7fff8e48efff libOpenScriptingUtil.dylib (162.1) <E0605012-0DDB-3150-8FD0-699376FA3CD0> /usr/lib/libOpenScriptingUtil.dylib
0x7fff8e48f000 - 0x7fff8e6f9ff7 com.apple.security (7.0 - 57031.20.26) <6568520A-587D-3167-BB79-60CE6FEADC64> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff8e737000 - 0x7fff8e74cff7 com.apple.AppContainer (4.0 - 238.20.2) <2AA2EF49-9F38-31F6-8B08-8CC7C26F57F3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff8e7e7000 - 0x7fff8e7ecffb libheimdal-asn1.dylib (398.10.1) <A7B6447A-6680-3625-83C3-993B58D5C43F> /usr/lib/libheimdal-asn1.dylib
0x7fff8f261000 - 0x7fff8f267ff7 libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
0x7fff8f268000 - 0x7fff8f28dff7 libJPEG.dylib (1237) <8AC8EFA6-2283-3725-9F28-01537DF51766> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff8f28e000 - 0x7fff8f296fff libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
0x7fff8f297000 - 0x7fff8f2a4fff libxar.1.dylib (255) <7CD69BB5-97BA-3858-8A8B-2F33F129E6E7> /usr/lib/libxar.1.dylib
0x7fff8f2a5000 - 0x7fff8f3d5fff com.apple.UIFoundation (1.0 - 1) <466BDFA8-0B9F-3AB0-989D-F9779422926A> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff8f409000 - 0x7fff8f40aff3 libSystem.B.dylib (1213) <CCEC13A5-D0D9-31C5-B0B0-1C564B4A20A6> /usr/lib/libSystem.B.dylib
0x7fff8f86b000 - 0x7fff8f8c6ff7 libTIFF.dylib (1237) <690B205E-55D9-3F2C-B4EA-78B1AC3D3231> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff8fb72000 - 0x7fff8fd7fff3 com.apple.CFNetwork (720.3.13 - 720.3.13) <69E15385-5784-3912-88F6-03B16F1C1A5C> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff8fd80000 - 0x7fff8febdfff com.apple.ImageIO.framework (3.3.0 - 1237) <138A800C-14B7-36C2-AB04-E162602C97E3> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff8febe000 - 0x7fff8fefeff7 libGLImage.dylib (11.1.2) <260A4BF3-DC45-369C-A0CD-B667F9D17179> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff8feff000 - 0x7fff8ff0dff7 com.apple.opengl (11.1.2 - 11.1.2) <864B35BF-1E76-382B-8D5F-38C7282621E6> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff8ff0e000 - 0x7fff8ff0fffb libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
0x7fff8ff42000 - 0x7fff8ff47ff7 com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff8ff48000 - 0x7fff90217ff3 com.apple.CoreImage (10.3.4) <C1AE8252-A95D-3BF4-83B8-BE85E979F2CB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff90218000 - 0x7fff90267ff7 com.apple.opencl (2.4.2 - 2.4.2) <4A9574ED-15CF-3EBB-B4C0-D30F644D6C74> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff9028c000 - 0x7fff902cdfff libGLU.dylib (11.1.2) <4C54F0D1-2ADC-38A0-92D1-F479E9B99355> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff902d7000 - 0x7fff90376e27 com.apple.AppleJPEG (1.0 - 1) <6627DDD9-A8FE-3968-B23A-B6A29AA3919A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff9068f000 - 0x7fff906e3fff libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
0x7fff90742000 - 0x7fff9076efff libsandbox.1.dylib (358.20.5) <C84D0EA1-CE60-3328-A196-D55874BE83D1> /usr/lib/libsandbox.1.dylib
0x7fff907d5000 - 0x7fff909cf46f libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
0x7fff919ab000 - 0x7fff919affff com.apple.TCC (1.0 - 1) <CCA42EE2-3400-3444-9486-BC454E60D944> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff92068000 - 0x7fff9224dff7 libicucore.A.dylib (531.48) <3CD34752-B1F9-31D2-865D-B5B0F0BE3111> /usr/lib/libicucore.A.dylib
0x7fff92494000 - 0x7fff9249cff3 com.apple.CoreServices.FSEvents (1210.20.1 - 1210.20.1) <84F79D3E-7B5E-3C93-8479-35794A3F125E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff9249d000 - 0x7fff924c8fff com.apple.DictionaryServices (1.2 - 229) <F03DFAC6-6285-3176-9C6D-7CC50F8CD52A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff924d4000 - 0x7fff925edffb com.apple.CoreText (352.0 - 454.6) <D45790B0-E1A3-3C7D-8BA2-AB71D2CFA7FB> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff925ee000 - 0x7fff92614fff com.apple.ChunkingLibrary (2.1 - 163.6) <29D4CB95-42EF-34C6-8182-BDB6F7BB1E79> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff92615000 - 0x7fff9261aff7 libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
0x7fff92b31000 - 0x7fff92e9cfff com.apple.VideoToolbox (1.0 - 1562.235) <0E996B8C-BE1C-3749-ACCA-DACBC89AFABB> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff92e9d000 - 0x7fff92ebdfff com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff92ecd000 - 0x7fff92f6bfff com.apple.Metadata (10.7.0 - 917.35) <8CBD1D32-4F4B-3F9A-AC65-76F2B5376FBF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff92f6c000 - 0x7fff92f91ff7 libPng.dylib (1237) <CFBF1344-36AB-3AAE-B2EB-9FC1369F967F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff92fa2000 - 0x7fff92fdafff com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff92fdb000 - 0x7fff92fdfff7 libGIF.dylib (1237) <0990002D-CA11-325D-A432-3A333F2CC088> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff92fed000 - 0x7fff930adff7 com.apple.backup.framework (1.6.4 - 1.6.4) <A67CE7D7-AAE4-3AC0-86B7-EAF403853D09> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff930ae000 - 0x7fff930b6ffb libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
0x7fff93114000 - 0x7fff93118fff libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
0x7fff93119000 - 0x7fff93146fff com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff9321a000 - 0x7fff9321aff7 liblaunch.dylib (559.20.9) <FA89A113-696E-3271-8FE1-A0D7324E8481> /usr/lib/system/liblaunch.dylib
0x7fff93299000 - 0x7fff932b3ff7 com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff932b4000 - 0x7fff9331bff7 com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff9331c000 - 0x7fff9334cff7 libncurses.5.4.dylib (44) <F09809A4-53B9-3E91-A8FA-D3F584C03AA3> /usr/lib/libncurses.5.4.dylib
0x7fff9334d000 - 0x7fff9334dff7 libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
0x7fff9335a000 - 0x7fff93365fff com.apple.AppSandbox (4.0 - 238.20.2) <BEFAB7F2-B189-391B-9B2D-FFF3EE2B77B6> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fff9342f000 - 0x7fff934c3fff com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff93501000 - 0x7fff93505fff com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff9354d000 - 0x7fff93554fff com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics
0x7fff9355a000 - 0x7fff9355afff com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff935b4000 - 0x7fff935deff7 libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
0x7fff93eca000 - 0x7fff93f8dff7 libvMisc.dylib (516) <21497A28-8DCB-3EB8-BDAC-93C93382B0AA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff93f8e000 - 0x7fff93fe1ffb libAVFAudio.dylib (118.6) <2441D4C1-D8FB-3DA9-9DD7-914E03413882> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
0x7fff93fe2000 - 0x7fff93fe3ff7 libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
0x7fff93ff7000 - 0x7fff94020ffb libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
0x7fff94021000 - 0x7fff94059fff libsystem_network.dylib (412.20.3) <589A5F67-BE2A-3245-A181-0ECC9B53EB00> /usr/lib/system/libsystem_network.dylib
0x7fff94085000 - 0x7fff940d6fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <450293F7-DAE7-3DD0-8F7C-71FC2FD72627> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff940da000 - 0x7fff940ecff7 com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff941a7000 - 0x7fff941c4fff com.apple.MultitouchSupport.framework (263.9.1 - 263.9.1) <6ABD3AE2-DF6A-3AB2-994B-9C0FB42CE2B7> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff9421e000 - 0x7fff94294fe7 libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
0x7fff942b1000 - 0x7fff943c8fe7 libvDSP.dylib (516) <DFEDB210-49D1-3803-88A2-C61DB6A45C3D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff943d1000 - 0x7fff943d4ff7 com.apple.Mangrove (1.0 - 1) <6326024D-5C8D-3F59-9468-ACA1E01BC70C> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff9446c000 - 0x7fff94473ff7 libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
0x7fff94474000 - 0x7fff94476fff libsystem_configuration.dylib (699.1.5) <20F3B077-179D-3CB0-A3C1-C8602D53B4DB> /usr/lib/system/libsystem_configuration.dylib
0x7fff944a7000 - 0x7fff944a8fff libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
0x7fff9456f000 - 0x7fff945ddffb com.apple.Heimdal (4.0 - 2.0) <7697A837-98B8-3BDB-A7D2-8ED4C9ABC510> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff947fc000 - 0x7fff94cecfff com.apple.MediaToolbox (1.0 - 1562.235) <9813E9A6-5BD6-3E56-9D20-0023703D5096> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff94ced000 - 0x7fff94e31ff7 com.apple.QTKit (7.7.3 - 2890) <EA6DCA1E-CBAB-328F-B230-1F9B9104E110> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff950c1000 - 0x7fff950ddff7 libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
0x7fff950de000 - 0x7fff950e6fff libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
0x7fff950e7000 - 0x7fff950f4ff7 com.apple.SpeechRecognitionCore (2.1.2 - 2.1.2) <551322E2-C1E4-3378-A218-F362985E3E3C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff95135000 - 0x7fff9514eff7 com.apple.CFOpenDirectory (10.10 - 187) <790ED527-EFD2-3EA6-8C97-A8C04E96EBA7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff9514f000 - 0x7fff95154ff7 libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
0x7fff95155000 - 0x7fff95157fff libCVMSPluginSupport.dylib (11.1.2) <6EFEC4A6-2EAC-3C27-820E-C28BE71B9FCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff95158000 - 0x7fff9545dff3 com.apple.HIToolbox (2.1.1 - 758.7) <6711FAA9-904A-3B49-9665-FC8D13B93C42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff9545e000 - 0x7fff95498ffb com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff95623000 - 0x7fff956afff7 libsystem_c.dylib (1044.10.1) <86FBED7A-F2C8-3591-AD6F-486DD57E6B6A> /usr/lib/system/libsystem_c.dylib
0x7fff956b0000 - 0x7fff95724ffb com.apple.securityfoundation (6.0 - 55126) <42589E18-D38C-3E25-B638-6E29740C224C> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff95725000 - 0x7fff95742ffb libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
0x7fff95743000 - 0x7fff9574eff7 com.apple.CrashReporterSupport (10.10 - 631) <D87A64FA-64B1-3B23-BB43-ADE173C108C6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff9574f000 - 0x7fff95758fff libsystem_pthread.dylib (105.10.1) <3103AA7F-3BAE-3673-9649-47FFD7E15C97> /usr/lib/system/libsystem_pthread.dylib
0x7fff95774000 - 0x7fff958b6fff libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
0x7fff958b7000 - 0x7fff958bbfff libCoreVMClient.dylib (79.1) <201EF6DF-5074-3CB7-A361-398CF957A264> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff958bc000 - 0x7fff958befff libRadiance.dylib (1237) <8F1E898B-74F6-3242-B929-CAF58AFCE319> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff958bf000 - 0x7fff9611aff3 com.apple.CoreGraphics (1.600.0 - 779.11) <EFAB294A-B307-38C5-A3B0-159159B41057> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff9611f000 - 0x7fff961a8ff7 com.apple.CoreSymbolication (3.1 - 57020.1) <85707039-0C8A-3409-B0B5-153431CC1841> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff961ae000 - 0x7fff961b4ff7 com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
0x7fff961d5000 - 0x7fff961defff libGFXShared.dylib (11.1.2) <0BAF2EA8-3BC4-3BF4-ABB6-A6E0A1F3F6A5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff96233000 - 0x7fff96246ff7 com.apple.CoreBluetooth (1.0 - 1) <8D7BA9BA-EB36-307A-9119-0B3D9732C953> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff96299000 - 0x7fff9638cff7 libJP2.dylib (1237) <A48C29E6-9E9F-3449-B873-160DE8E94008> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff963b2000 - 0x7fff964daff7 com.apple.coreui (2.1 - 308.6) <DEA5D3E1-D333-302B-A6CF-7643BFDFAED0> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff964db000 - 0x7fff964e4ff3 com.apple.CommonAuth (4.0 - 2.0) <BA9F5A09-D200-3D18-9F4A-20C789291A30> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff964f2000 - 0x7fff964fdff7 libkxld.dylib (2782.20.48) <28EF8328-E3E2-336A-974B-FB1BF119D55A> /usr/lib/system/libkxld.dylib
0x7fff966d3000 - 0x7fff966d4fff liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
0x7fff9678d000 - 0x7fff968eefff com.apple.avfoundation (2.0 - 889.210) <0CFF0D47-7C6B-388E-87BD-404F43A6B1E0> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff96a0d000 - 0x7fff96a29fff com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff96a2a000 - 0x7fff96a2cfff libquarantine.dylib (76.20.1) <7AF90041-2768-378A-925A-D83161863642> /usr/lib/system/libquarantine.dylib
0x7fff96a2d000 - 0x7fff96b1fff7 libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
0x7fff96b20000 - 0x7fff96b25fff com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff96b26000 - 0x7fff96b77ff7 com.apple.AppleVAFramework (5.0.31 - 5.0.31) <FED294D2-13CB-381D-98D0-BDA909AACA32> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff974cd000 - 0x7fff97539fff com.apple.framework.CoreWLAN (5.0 - 500.35.2) <5E228544-77A9-3AA5-8355-E8F6626F50E7> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff975df000 - 0x7fff9760aff3 libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
0x7fff9761a000 - 0x7fff9773eff7 com.apple.LaunchServices (644.56 - 644.56) <20AABB1C-9319-3E4D-A024-51B0DD5FCD3B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff9773f000 - 0x7fff97b16fe7 com.apple.CoreAUC (211.1.0 - 211.1.0) <12645629-E065-388E-A6B5-094A240578CE> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff97b2d000 - 0x7fff97b68fff com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff97b9f000 - 0x7fff97ed0fff com.apple.Foundation (6.9 - 1153.20) <F0FF3A5D-C5B7-34A1-9319-DE1EF928E58E> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff97ed1000 - 0x7fff97ed8fff com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff97ed9000 - 0x7fff97edbff7 libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
0x7fff98174000 - 0x7fff98174fff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <B92888D0-ED3F-3430-8F3A-6E56FD16C5F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff98177000 - 0x7fff98219fff com.apple.Bluetooth (4.3.4 - 4.3.4f4) <A1120885-F31B-3C13-9B0D-2589F391CC7A> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff98225000 - 0x7fff9829dff7 com.apple.SystemConfiguration (1.14 - 1.14) <06A8405D-53BA-30A9-BA8A-222099176091> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff9829e000 - 0x7fff982b7ffb com.apple.openscripting (1.4 - 162.1) <E6B42781-A556-355A-8A49-82A8D2B347FF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff982e0000 - 0x7fff98377fff com.apple.CoreMedia (1.0 - 1562.235) <21EB4AB6-2DBC-326B-B17E-E88BAA9E9200> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff9838c000 - 0x7fff987bcfff com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff98855000 - 0x7fff98860ff7 com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) <A5640275-E2A6-3856-95EF-5F0DC440B10C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff98897000 - 0x7fff988adff7 com.apple.CoreMediaAuthoring (2.2 - 951) <C3E7D4C1-400D-34FA-9FE1-8C68C03CE969> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff988ae000 - 0x7fff988e9fff com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff988ea000 - 0x7fff98c82ff7 com.apple.CoreFoundation (6.9 - 1153.18) <5C0892B8-9691-341F-9279-CA3A74D59AA0> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff98cc5000 - 0x7fff98cdbff7 libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
0x7fff98cdc000 - 0x7fff98d28ff7 libcups.2.dylib (408.2) <E8AD18F9-61E4-3791-B840-504468C25556> /usr/lib/libcups.2.dylib
0x7fff98d4f000 - 0x7fff98d52ff7 libdyld.dylib (353.2.1) <9EACCA38-291D-38CC-811F-7E9D1451E2D3> /usr/lib/system/libdyld.dylib
0x7fff98d53000 - 0x7fff98d55fff com.apple.SecCodeWrapper (4.0 - 238.20.2) <C6C126F0-6BF4-3E29-A9B7-7BAD8D17EE4F> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff98d97000 - 0x7fff98e1bfff com.apple.PerformanceAnalysis (1.0 - 1) <599AED3E-B689-3C40-8B91-93AD36C97658> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff98e1c000 - 0x7fff98e4cff3 com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff98e5c000 - 0x7fff98ebbfff com.apple.AE (681.2 - 681.2) <181B3B06-2DC6-3E4D-B44A-2551C5E9CF6F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff98ebc000 - 0x7fff9930ffc7 com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff993fd000 - 0x7fff99403fff com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff99410000 - 0x7fff99743ff7 libmecabra.dylib (666.7) <0ED8AE5E-7A5B-34A6-A2EE-2B852E60E1E2> /usr/lib/libmecabra.dylib
0x7fff99804000 - 0x7fff99825fff com.apple.framework.Apple80211 (10.3 - 1030.71.6) <D3862426-2586-3DF7-BA75-9A184FCD74C4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff99826000 - 0x7fff9986cff7 libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
0x7fff99885000 - 0x7fff998adfff libxpc.dylib (559.20.9) <D35D0DB2-D7BD-3BE4-8378-062BFE545E1D> /usr/lib/system/libxpc.dylib
0x7fff99a16000 - 0x7fff99a18fff libsystem_sandbox.dylib (358.20.5) <4CF77128-6BE0-3958-B646-707FA9CE61B2> /usr/lib/system/libsystem_sandbox.dylib
0x7fff99a19000 - 0x7fff99a2afff libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
0x7fff99b48000 - 0x7fff99bb9ffb com.apple.ApplicationServices.ATS (360 - 375.2) <2338AF23-528F-359A-847F-8B04E49E2B84> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff99bba000 - 0x7fff99bcbfff libsystem_coretls.dylib (35.20.2) <6084A531-2523-39F8-B030-811FA1A32FB5> /usr/lib/system/libsystem_coretls.dylib
0x7fff99bcc000 - 0x7fff99be3ff7 libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff99be4000 - 0x7fff99be4fff com.apple.Accelerate (1.10 - Accelerate 1.10) <F1B96A61-7E4B-31BD-A35B-BA7EF1F16EF4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff99be5000 - 0x7fff9a766ff7 com.apple.AppKit (6.9 - 1347.57) <B214D528-7D1C-39B2-BE36-821D417A0297> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff9a767000 - 0x7fff9a768ff7 com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff9a76c000 - 0x7fff9a8d3ffb com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5678FC94-456A-3F5F-BA9A-10EB6E462997> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 7559
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=214.3M resident=134.1M(63%) swapped_out_or_unallocated=80.2M(37%)
Writable regions: Total=52.5M written=8808K(16%) resident=13.0M(25%) swapped_out=0K(0%) unallocated=39.5M(75%)
REGION TYPE VIRTUAL
=========== =======
Kernel Alloc Once 4K
MALLOC 42.5M
MALLOC (admin) 32K
STACK GUARD 56.0M
Stack 8192K
VM_ALLOCATE 16K
__DATA 17.7M
__IMAGE 528K
__LINKEDIT 76.2M
__TEXT 138.1M
__UNICODE 552K
shared memory 4K
=========== =======
TOTAL 339.7M
Model: MacBookPro9,2, BootROM MBP91.00D3.B09, 2 processors, Intel Core i5, 2.5 GHz, 4 GB, SMC 2.2f44
Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In
Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343235533641465236412D50422020
Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343235533641465236412D50422020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (7.15.166.24.3)
Bluetooth: Version 4.3.4f4 15601, 3 services, 18 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en1
Serial ATA Device: APPLE HDD HTS545050A7E362, 500.11 GB
Serial ATA Device: HL-DT-ST DVDRW GS41N
USB Device: Hub
USB Device: FaceTime HD Camera (Built-in)
USB Device: Hub
USB Device: Hub
USB Device: Apple Internal Keyboard / Trackpad
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
USB Device: IR Receiver
Thunderbolt Bus: MacBook Pro, Apple Inc., 25.1
@shelhamer : any inputs would be of great value.
Thanks! :)
I am seeing two different version of python in your error log: You're predominantly referencing the one from home-brew:
0x106592000 - 0x106593fff +org.python.python (2.7.9 - 2.7.9)
But further down the system version of python is still sneaking in (and it seems to be version 2.7.6 instead of the 2.7.9 that's used by home-brew):
0x107fed000 - 0x1080deff7 org.python.python (2.7.6 - 2.7.6)
I'd suggest trying the steps above and recompiling everything?
Having lived with the work-around for a few weeks, it did cause a headache when I updated my command line tools, so I'd probably suggest rather than moving the framework in step #1 to maybe just symlinking it appropriately to the home-brew directory...but for now the original post should still hopefully fix your problems :)
Good luck and hope it starts working!
@gp335 : Thanks for that point out! The different versions on my system python and brewed python was the root of the problem. I fixed the error by changing the PYTHON_LIB variable in my Makefile.config.
PYTHON_LIB := /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/
This got me through importing caffe in python. I've also written a small Wiki page to get people through the problems that I faced. http://installing-caffe-the-right-way.wikidot.com/ @gp335 : your suggestions would hold great value :D
For me the error log indicated references to /usr/lib/libpython2.7.dylib which links to /System/Library/Frameworks/Python.framework/Versions/2.7/Python.I wanted to use anaconda distribution. Fix: issue got resolved by linking /usr/lib/libpython2.7.dylib to $ANACONDA_HOME/lib/libpython2.7.dylib. Note: I'm using OSX El Captain and had to disable system integrity protection to do same.
@aniryou :I want to use anaconda too. could you please explain how to link the /usr/lib/libpython2.7.dylib to $ANACONDA_HOME/lib/libpython2.7.dylib. Thank you.
@junwenchen For my case, I tried to modify ../cmake/Dependencies.cmake, add corresponding path of PYTHON_LIBRARY and PYTHON_INCLUDE_DIR before find_package(PythonLibs 2.7). Then it works:)
@aniryou I can confirm this fixes the issue :D
For posterity, I will note that I also ran into this problem, but from a different error:
In [1]: import caffe
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-1-1cca3aa1f8c5> in <module>()
----> 1 import caffe
/opt/caffe/python/caffe/__init__.py in <module>()
----> 1 from .pycaffe import Net, SGDSolver, NesterovSolver, AdaGradSolver, RMSPropSolver, AdaDeltaSolver, AdamSolver
2 from ._caffe import set_mode_cpu, set_mode_gpu, set_device, Layer, get_solver, layer_type_list
3 from ._caffe import __version__
4 from .proto.caffe_pb2 import TRAIN, TEST
5 from .classifier import Classifier
/opt/caffe/python/caffe/pycaffe.py in <module>()
11 import numpy as np
12
---> 13 from ._caffe import Net, SGDSolver, NesterovSolver, AdaGradSolver, \
14 RMSPropSolver, AdaDeltaSolver, AdamSolver
15 import caffe.io
ImportError: No module named _caffe
I had to first rename the file that was installed as _caffe.dylib to _caffe.so before I could even get the system to recognize it. Then once that was done, I ran into a SIGSEGV:
# mv /opt/caffe/python/caffe/_caffe.dylib /opt/caffe/python/caffe/_caffe.so
...
In [1]: import caffe
Segmentation fault: 11
I could see by looking at the dynamic linker information for the library that it was linked to the system Python, which did not seem right:
# otool -L /opt/caffe/python/caffe/_caffe.so |grep -i python
...
/opt/caffe/python/caffe/_caffe.so:
/System/Library/Frameworks/Python.framework/Versions/2.7/Python (compatibility version 2.7.0, current version 2.7.10)
/usr/local/opt/boost-python/lib/libboost_python-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
Then I found this thread, which further advanced the notion that it might be a python version mismatch. I was using Anaconda for my Python env and using the cmake method for Caffe compilation, so I checked the output I had from cmake:
# cmake -D CMAKE_CXX_FLAGS="-I/System/Library/Frameworks/Accelerate.framework/Versions/Current/Frameworks/vecLib.framework/Versions/Current/Headers -Wl,-framework,Accelerate" -D OpenCV_DIR=/usr/local/opt/opencv3/share/OpenCV ..
...
-- Python:
-- Interpreter : /Users/martin/anaconda3/envs/dev27/bin/python2.7 (ver. 2.7.10)
-- Libraries : /usr/lib/libpython2.7.dylib (ver 2.7.10)
...
This indeed confirmed that the problem was a conflict between Python distributions, so I changed my cmake flags like so:
# cmake -D PYTHON_INCLUDE_DIR=/Users/martin/anaconda3/envs/dev27/include/python2.7 -D PYTHON_LIBRARY=/Users/martin/anaconda3/envs/dev27/lib/libpython2.7.dylib -D CMAKE_CXX_FLAGS="-I/System/Library/Frameworks/Accelerate.framework/Versions/Current/Frameworks/vecLib.framework/Versions/Current/Headers -Wl,-framework,Accelerate" -D OpenCV_DIR=/usr/local/opt/opencv3/share/OpenCV ..
...
-- Python:
-- Interpreter : /Users/martin/anaconda3/envs/dev27/bin/python2.7 (ver. 2.7.10)
-- Libraries : /Users/martin/anaconda3/envs/dev27/lib/libpython2.7.dylib (ver 2.7.10)
And rebuilt.
Now, looking at the linker information for the library, I can see that it is no longer linked to the system Python:
# otool -L install/python/caffe/_caffe.dylib |grep -i python
...
install/python/caffe/_caffe.dylib:
libpython2.7.dylib (compatibility version 2.7.0, current version 2.7.0)
/usr/local/opt/boost-python/lib/libboost_python-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
Then the next problem was that the libpython2.7.dylib from the Anaconda env could not be found at runtime:
In [1]: import _caffe
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-1-8f34565b13c7> in <module>()
----> 1 import _caffe
ImportError: dlopen(./_caffe.so, 2): Library not loaded: libpython2.7.dylib
Referenced from: /opt/caffe/python/caffe/_caffe.dylib
Reason: image not found
So I next had to update the
# export DYLD_FALLBACK_LIBRARY_PATH=/Users/martin/anaconda3/envs/dev27/lib:$DYLD_FALLBACK_LIBRARY_PATH
# ipy
Python 2.7.10 |Continuum Analytics, Inc.| (default, Oct 19 2015, 18:31:17)
Type "copyright", "credits" or "license" for more information.
IPython 4.0.1 -- An enhanced Interactive Python.
? -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help -> Python's own help system.
object? -> Details about 'object', use 'object??' for extra details.
In [1]: import _caffe
In [2]:
Now finally everything is working.
Similar to lots of people here I had a mix of system Python and Anaconda Python being linked together.
I used install_name_tool
to force _caffe.so
to use the Anaconda Python, without disabling system integrity protection (I'm also on El Capitan).
You can use otool to see which libraries are linked in:
otool -L python/caffe/_caffe.so
There should be one line that links a bare "libpython2.7.lib" without any path, I think this is why the system python gets pulled in at runtime.
I used this command to change it:
install_name_tool -change "libpython2.7.dylib" "$HOME/anaconda/lib/libpython2.7.dylib" python/caffe/_caffe.so
No more seg fault!!
I learned about this strategy from issue #3227
If you use Anaconda, try this in terminal before import caffe in Python interactive session:
export DYLD_FALLBACK_LIBRARY_PATH=$HOME/anaconda/lib
It works for me. Hope it helps!
What @dozyc said worked for me as well, but with slightly different invocations.
I was hitting SIGSEGV when calling import caffe
on OSX 10.11.6 (El Capitan) with python 2.7.12 installed via Homebrew.
I ran:
otool -L ./python/caffe/_caffe.so
And observed:
/usr/local/opt/boost-python/lib/libboost_python.dylib (compatibility version 0.0.0, current version 0.0.0)
/System/Library/Frameworks/Python.framework/Versions/2.7/Python (compatibility version 2.7.0, current version 2.7.10)
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib (compatibility version 1.0.0, current version 1.0.0)
The dependency on Python
from /System/Library/Frameworks
is bad - this is the OS version of Python, not the version installed via homebrew, hence incompatibility.
I fixed this with:
install_name_tool -change /System/Library/Frameworks/Python.framework/Versions/2.7/Python /usr/local/Cellar/python/2.7.12/Frameworks/Python.framework/Versions/2.7/Python ./python/caffe/_caffe.so
One one system I had to also do the same for the caffe library because I built it with Python layer support:
install_name_tool -change /System/Library/Frameworks/Python.framework/Versions/2.7/Python /usr/local/Cellar/python/2.7.12/Frameworks/Python.framework/Versions/2.7/Python ../distribute/lib/libcaffe.so.1.0.0-rc3
Hope this helps.
If you use MacOS El capitan, uncomment this line in MakeConfig file
WITH_PYTHON_LAYER := 1
I'm facing similar issues. And can not fix it by the above ways。 Mac OS X 10.11.13
I had many issues while installation. In my case the real solution was:
My configuration: Mac OS X 10.11.6 CPU only No anaconda, no cudnn
Tutorials that I used: https://frankzliu.com/installing-caffe-on-os-x-el-capitan/ http://installing-caffe-the-right-way.wikidot.com/start
On Friday, 30 September 2016, 王小树 notifications@github.com wrote:
I'm facing similar issues. And can not fix it by the above ways。 Mac OS X 10.11.13
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/BVLC/caffe/issues/591#issuecomment-250650500, or mute the thread https://github.com/notifications/unsubscribe-auth/AF9YWqWr5A49Ho_xBi-YsND7emEncAgAks5qvIKQgaJpZM4CJyGp .
Sincerely, Yura Vasiliuk
@NightFury13 Your solution just works!
I'm debuging on my local macbook. Before I tried to use the python lib "pycaffe" everything works well. While when I turn to attempt to write some python scripts relying on the "_caffe.so", the following error turns out:
python import _caffe
Segmentation fault: 11
This should be some problems in compiling the python lib.
Thanks.