SFML community forums

Help => General => Topic started by: kipbits on October 27, 2015, 08:55:43 pm

Title: THOR[Mac] Compile & Test Examples
Post by: kipbits on October 27, 2015, 08:55:43 pm
Hi, I'm trying to run some of the example code that comes with Thor 2.0 on Mac OS 10.10.5. I've gone through the Cmake install tutorial, and I'm pretty sure I have it installed correctly.

Problem is when I go to compile a sample program I run into problems.
I've tried g++ and clang++ with different flags, all with no success.

For example:
clang++ -std=c++11 -stdlib=libc++ Action.cpp -lsfml-window gives a long error message:


I've tried other flags with clang++ and g++, but all combinations I have tried have resulted in some some aspect of C++ Language not beeing found or recognized(e.g. type_traits not found)


Is clang++ -std=c++11 -stdlib=libc++ the proper compile method for mac?
How do I fix this?


Thanks



Oh, and my version of clang:
clang++ -v
Apple LLVM version 7.0.0 (clang-700.1.76)
Target: x86_64-apple-darwin14.5.0
Thread model: posix
Title: Re: THOR[Mac] what compiler setting do I use?
Post by: Nexus on October 27, 2015, 09:24:58 pm
These are linker errors, the linker doesn't find the definitions of the mentioned functions.

Quote
clang++ -std=c++11 -stdlib=libc++ Action.cpp -lsfml-window
You are only linking to sfml-window. You need thor and sfml-system, too.
Title: Re: THOR[Mac] what compiler setting do I use?
Post by: kipbits on October 27, 2015, 10:30:20 pm
clang++ -std=c++11 -stdlib=libc++ Action.cpp -lsfml-window -lsfml-system -thor

clang: error: unknown argument: '-thor'

I ran Cmake for unix
make
sudo make install

files are in:
/usr/local/lib/libthor.dylib
/usr/local/include/Aurora
/usr/local/include/Thor

what is wrong?
Title: Re: THOR[Mac] what compiler setting do I use?
Post by: Nexus on October 27, 2015, 10:59:00 pm
Please double-check your command (and the error message!) before just posting here blindly. I'm sure you'll find the mistake within seconds ;)
Title: Re: THOR[Mac] what compiler setting do I use?
Post by: kipbits on October 27, 2015, 11:44:10 pm
i copy pasted what is in the thread

mycomputer:examples me$ clang++ -std=c++11 -stdlib=libc++ Action.cpp -lsfml-window -lsfml-system -thor
clang: error: unknown argument: '-thor'
mycomputer:examples me$ clang++ -std=c++11 -stdlib=libc++ Action.cpp -lsfml-window -lsfml-system thor
clang: error: no such file or directory: 'thor'
mycomputer:examples me$ clang++ -std=c++11 -stdlib=libc++ Action.cpp -lsfml-window -lsfml-system Thor
clang: error: no such file or directory: 'Thor'
mycomputer:examples me$ clang++ -std=c++11 -stdlib=libc++ Action.cpp -lsfml-window -lsfml-system -Thor
ld: unknown option: -T
clang: error: linker command failed with exit code 1 (use -v to see invocation)
mycomputer:examples me$

I dont understand what is wrong???
Title: Re: THOR[Mac] what compiler setting do I use?
Post by: Nexus on October 27, 2015, 11:52:35 pm
Don't copy-paste, think ;)

The linker flags -lsfml-window -lsfml-system start with -l (the argument to specify a library to the linker), but -thor does not.
Title: Re: THOR[Mac] what compiler setting do I use?
Post by: kipbits on October 27, 2015, 11:56:33 pm
got it  clang++ -std=c++11 -stdlib=libc++ Action.cpp -lsfml-window -lsfml-system /usr/local/lib/libthor.dylib


Thanks again
Title: Re: THOR[Mac] what compiler setting do I use?
Post by: Nexus on October 28, 2015, 12:11:29 am
Is that a valid linker call? Does -lthor not work? If you install Thor (make install), it should be possible to link it the same way as SFML...
Title: Re: THOR[Mac] what compiler setting do I use?
Post by: kipbits on October 28, 2015, 03:48:56 am
Oh hey, clang++ -std=c++11 -stdlib=libc++ Action.cpp -lsfml-window -lsfml-system -lthor works too. LOL

I'll let you know if i have any other difficulties
Title: Re: THOR[Mac] Compile & Test Examples
Post by: kipbits on October 28, 2015, 08:12:56 pm
I'm afraid there appears to be something wrong with 4 of the examples: Fireworks.cpp, Shapes.cpp, Triangulation.cpp and Vectors.cpp. They will not run. I'm assuming these are important aspects of Thor that I will need later. They compiled with only minor warnings, but when i went to run I got the following:

to make things quick, my compiler commands:
clang++ -std=c++11 -stdlib=libc++ Fireworks.cpp -lsfml-window -lsfml-graphics -lsfml-system -lthor
clang++ -std=c++11 -stdlib=libc++ Shapes.cpp -lsfml-window -lsfml-graphics -lsfml-system -lthor
clang++ -std=c++11 -stdlib=libc++ Triangulation.cpp -lsfml-window -lsfml-graphics -lsfml-system -lthor
clang++ -std=c++11 -stdlib=libc++ Vectors.cpp -lsfml-window -lsfml-graphics -lsfml-system -lthor

what is wrong?
Title: Re: THOR[Mac] Compile & Test Examples
Post by: Nexus on October 28, 2015, 08:35:55 pm
I don't know. You have to provide more information.

For example, run the executables in debug mode and check where/why they exit. And check the console for error outputs.

The other examples work?
Title: Re: THOR[Mac] Compile & Test Examples
Post by: kipbits on October 28, 2015, 09:24:28 pm
the others seem to be fine, I'll get back to you about the debug
Title: Re: THOR[Mac] Compile & Test Examples
Post by: kipbits on October 28, 2015, 10:53:49 pm
It's been awhile since i've used gdb, or lldb for that matter. you'll have to give me some time. thought I should let you know though
Title: Re: THOR[Mac] Compile & Test Examples
Post by: kipbits on October 29, 2015, 02:13:36 am
OK, here's one,
seg fault in Triangulation.cpp at line: thor::triangulate(vertices.begin(), vertices.end(), std::back_inserter(triangles));

Hope that helps? Don't know about the others. My GDB skills are lacking. I might already have the functionality I need...


looking forward to the next update
Title: Re: THOR[Mac] Compile & Test Examples
Post by: Nexus on October 29, 2015, 06:26:20 am
seg fault in Triangulation.cpp at line: thor::triangulate(vertices.begin(), vertices.end(), std::back_inserter(triangles));

Hope that helps?
Not really, especially since it works on the other platforms. Can you track more precisly where in that call the segmentation fault occurs? A callstack would be ideal...

By the way, you can edit your posts ;)
Title: Re: THOR[Mac] Compile & Test Examples
Post by: kipbits on October 29, 2015, 07:20:28 pm
what about this?

Process:               a.out [36128]
Path:                  /Users/USER/Documents/*/a.out
Identifier:            a.out
Version:               0
Code Type:             X86-64 (Native)
Parent Process:        bash [36105]
Responsible:           Terminal [36102]
User ID:               501

Date/Time:             2015-10-29 14:11:47.366 -0400
OS Version:            Mac OS X 10.10.5 (14F1021)
Report Version:        11
Anonymous UUID:        67365B6B-FDC1-0145-2F2E-C6BCDFFF15C4

Sleep/Wake UUID:       7010F5C5-EFA8-4E05-A1AF-71A65D6EF63F

Time Awake Since Boot: 20000 seconds
Time Since Wake:       610 seconds

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
Exception Codes:       EXC_I386_GPFLT

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   a.out                            0x000000010e80fd3e aurora::CopiedPtr<thor::detail::OptTriangleIterator>::~CopiedPtr() + 46
1   a.out                            0x000000010e80fd05 aurora::CopiedPtr<thor::detail::OptTriangleIterator>::~CopiedPtr() + 21
2   a.out                            0x000000010e80fcdc thor::detail::AdvancedVertex::~AdvancedVertex() + 28
3   a.out                            0x000000010e809d05 thor::detail::AdvancedVertex::~AdvancedVertex() + 21
4   a.out                            0x000000010e81488b std::__1::__deque_base<thor::detail::AdvancedVertex, std::__1::allocator<thor::detail::AdvancedVertex> >::clear() + 379
5   a.out                            0x000000010e81463f std::__1::__deque_base<thor::detail::AdvancedVertex, std::__1::allocator<thor::detail::AdvancedVertex> >::~__deque_base() + 31
6   a.out                            0x000000010e814615 std::__1::deque<thor::detail::AdvancedVertex, std::__1::allocator<thor::detail::AdvancedVertex> >::~deque() + 21
7   a.out                            0x000000010e805d45 std::__1::deque<thor::detail::AdvancedVertex, std::__1::allocator<thor::detail::AdvancedVertex> >::~deque() + 21
8   a.out                            0x000000010e805817 std::__1::back_insert_iterator<std::__1::vector<thor::Triangle<sf::Vector2<float> >, std::__1::allocator<thor::Triangle<sf::Vector2<float> > > > > thor::detail::triangulateImpl<std::__1::__wrap_iter<sf::Vector2<float>*>, std::__1::back_insert_iterator<std::__1::vector<thor::Triangle<sf::Vector2<float> >, std::__1::allocator<thor::Triangle<sf::Vector2<float> > > > >, thor::detail::ConstrainedTrDetails<std::__1::__wrap_iter<thor::Edge<sf::Vector2<float> >*> > >(std::__1::__wrap_iter<sf::Vector2<float>*>, std::__1::__wrap_iter<sf::Vector2<float>*>, std::__1::back_insert_iterator<std::__1::vector<thor::Triangle<sf::Vector2<float> >, std::__1::allocator<thor::Triangle<sf::Vector2<float> > > > >, thor::detail::ConstrainedTrDetails<std::__1::__wrap_iter<thor::Edge<sf::Vector2<float> >*> > const&) + 2215
9   a.out                            0x000000010e804f3d std::__1::back_insert_iterator<std::__1::vector<thor::Triangle<sf::Vector2<float> >, std::__1::allocator<thor::Triangle<sf::Vector2<float> > > > > thor::triangulateConstrained<std::__1::__wrap_iter<sf::Vector2<float>*>, std::__1::__wrap_iter<thor::Edge<sf::Vector2<float> >*>, std::__1::back_insert_iterator<std::__1::vector<thor::Triangle<sf::Vector2<float> >, std::__1::allocator<thor::Triangle<sf::Vector2<float> > > > > >(std::__1::__wrap_iter<sf::Vector2<float>*>, std::__1::__wrap_iter<sf::Vector2<float>*>, std::__1::__wrap_iter<thor::Edge<sf::Vector2<float> >*>, std::__1::__wrap_iter<thor::Edge<sf::Vector2<float> >*>, std::__1::back_insert_iterator<std::__1::vector<thor::Triangle<sf::Vector2<float> >, std::__1::allocator<thor::Triangle<sf::Vector2<float> > > > >) + 109
10  a.out                            0x000000010e80295f std::__1::back_insert_iterator<std::__1::vector<thor::Triangle<sf::Vector2<float> >, std::__1::allocator<thor::Triangle<sf::Vector2<float> > > > > thor::triangulate<std::__1::__wrap_iter<sf::Vector2<float>*>, std::__1::back_insert_iterator<std::__1::vector<thor::Triangle<sf::Vector2<float> >, std::__1::allocator<thor::Triangle<sf::Vector2<float> > > > > >(std::__1::__wrap_iter<sf::Vector2<float>*>, std::__1::__wrap_iter<sf::Vector2<float>*>, std::__1::back_insert_iterator<std::__1::vector<thor::Triangle<sf::Vector2<float> >, std::__1::allocator<thor::Triangle<sf::Vector2<float> > > > >) + 447
11  a.out                            0x000000010e801614 handleEvents(sf::RenderWindow&, std::__1::vector<sf::Vector2<float>, std::__1::allocator<sf::Vector2<float> > >&, std::__1::vector<thor::Triangle<sf::Vector2<float> >, std::__1::allocator<thor::Triangle<sf::Vector2<float> > > >&) + 1092
12  a.out                            0x000000010e800898 main + 1224
13  libdyld.dylib                    0x00007fff96bb35c9 start + 1

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib           0x00007fff9a82a232 kevent64 + 10
1   libdispatch.dylib                0x00007fff8c72326e _dispatch_mgr_thread + 52

Thread 2:
0   libsystem_kernel.dylib           0x00007fff9a82994a __workq_kernreturn + 10
1   libsystem_pthread.dylib          0x00007fff914723dd start_wqthread + 13

Thread 3:
0   libsystem_kernel.dylib           0x00007fff9a82994a __workq_kernreturn + 10
1   libsystem_pthread.dylib          0x00007fff914723dd start_wqthread + 13

Thread 4:
0   libsystem_kernel.dylib           0x00007fff9a82994a __workq_kernreturn + 10
1   libsystem_pthread.dylib          0x00007fff914723dd start_wqthread + 13

Thread 5:
0   libsystem_kernel.dylib           0x00007fff9a82994a __workq_kernreturn + 10
1   libsystem_pthread.dylib          0x00007fff914723dd start_wqthread + 13

Thread 6:
0   libsystem_kernel.dylib           0x00007fff9a8244de mach_msg_trap + 10
1   libsystem_kernel.dylib           0x00007fff9a82364f mach_msg + 55
2   com.apple.CoreFoundation         0x00007fff8dd0eeb4 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation         0x00007fff8dd0e37b __CFRunLoopRun + 1371
4   com.apple.CoreFoundation         0x00007fff8dd0dbd8 CFRunLoopRunSpecific + 296
5   com.apple.AppKit                 0x00007fff915d856b _NSEventThread + 137
6   libsystem_pthread.dylib          0x00007fff9147505a _pthread_body + 131
7   libsystem_pthread.dylib          0x00007fff91474fd7 _pthread_start + 176
8   libsystem_pthread.dylib          0x00007fff914723ed thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x00007f9c9a649e78  rbx: 0x0000000000000000  rcx: 0xd00007f9c9a64700  rdx: 0x00007fff513ff470
  rdi: 0x00007f9c9a649e78  rsi: 0x00007f9c9b888428  rbp: 0x00007fff513fef90  rsp: 0x00007fff513fef80
   r8: 0x0000000000000017   r9: 0x00007f9c9a600000  r10: 0x0000000000000040  r11: 0x00007f9c9a600000
  r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
  rip: 0x000000010e80fd3e  rfl: 0x0000000000010206  cr2: 0x000000010e9102d0
 
Logical CPU:     6
Error Code:      0x00000000
Trap Number:     13


Binary Images:
       0x10e7ff000 -        0x10e815fff +a.out (0) <996C2A38-AD12-3F7C-A7FA-52C0E0E901DC> /Users/USER/Documents/*/a.out
       0x10e823000 -        0x10e843fff  libsfml-window.2.3.dylib (2.3.2) <0E0656D8-99A2-39EF-A6CC-4818E01132E8> /usr/lib/libsfml-window.2.3.dylib
       0x10e857000 -        0x10e8bcfe7  libsfml-graphics.2.3.dylib (2.3.2) <F9C577B2-D8B6-3135-8B71-B81B4E5CF446> /usr/lib/libsfml-graphics.2.3.dylib
       0x10e8db000 -        0x10e8e7ff7  libsfml-system.2.3.dylib (2.3.2) <45ADE00C-F44A-3DCB-8A0D-64C40B506E5D> /usr/lib/libsfml-system.2.3.dylib
       0x10e8f5000 -        0x10e919ff7 +libthor.dylib (0) <3BFF0A89-AB6D-37D4-A604-6BF792D39805> /usr/local/lib/libthor.dylib
       0x10e946000 -        0x10ea19fff +org.sfml-dev.freetype (1.0) <C1B61EF4-766F-3CC2-9F97-A82039A13C57> /Library/Frameworks/freetype.framework/Versions/A/freetype
       0x10ea3a000 -        0x10ea51ff7 +org.sfml-dev.sfml-audio (2.3.2 - 2.3.2) <99F1D54D-1EF4-3C6B-9275-7F87D2360C66> /Library/Frameworks/sfml-audio.framework/Versions/2.3.2/sfml-audio
       0x10ea65000 -        0x10eacafe7 +org.sfml-dev.sfml-graphics (2.3.2 - 2.3.2) <B23350F9-AA5E-3044-A646-C312DAF05140> /Library/Frameworks/sfml-graphics.framework/Versions/2.3.2/sfml-graphics
       0x10eaee000 -        0x10eb0efff +org.sfml-dev.sfml-window (2.3.2 - 2.3.2) <076E4929-D5A6-30E8-9488-8DEF8CD9F4B9> /Library/Frameworks/sfml-window.framework/Versions/2.3.2/sfml-window
       0x10eb23000 -        0x10eb2fff7 +org.sfml-dev.sfml-system (2.3.2 - 2.3.2) <E2E58C8B-FC4F-321D-9C2C-BA54A602CBC6> /Library/Frameworks/sfml-system.framework/Versions/2.3.2/sfml-system
       0x10eb37000 -        0x10eb90fff +org.sfml-dev.OpenAL (1.0) <04C623D8-F4EF-357C-A317-944A0EF29503> /Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
       0x10ebba000 -        0x10ec31ff7 +org.sfml-dev.vorbisenc (1.0) <5B7CAF65-A2D4-3778-8317-4AF315A92513> /Library/Frameworks/vorbisenc.framework/Versions/A/vorbisenc
       0x10ec7a000 -        0x10ec7fff7 +org.sfml-dev.vorbisfile (1.0) <2A582B4F-7FFF-3822-B80A-56344FA1835B> /Library/Frameworks/vorbisfile.framework/Versions/A/vorbisfile
       0x10ec8b000 -        0x10ecb5fff +org.sfml-dev.vorbis (1.0) <14749F21-C594-3171-A1B0-8103CAFF056F> /Library/Frameworks/vorbis.framework/Versions/A/vorbis
       0x10ecc1000 -        0x10ecc5ff7 +org.sfml-dev.ogg (1.0) <856EA22F-16B9-3747-8265-B0A26ACCA1A3> /Library/Frameworks/ogg.framework/Versions/A/ogg
       0x10eccd000 -        0x10ed0dfff +org.sfml-dev.FLAC (1.0) <FFA4F034-480D-3463-A8B7-5B1695D81E54> /Library/Frameworks/FLAC.framework/Versions/A/FLAC
       0x10ff89000 -        0x110138fff  GLEngine (11.1.3) <12E0E6A1-F619-3999-8ABE-738B1F510483> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
       0x110174000 -        0x11019efff  GLRendererFloat (11.1.3) <7DB58FE4-B5ED-315A-B7AC-87E82E6C3AC5> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
       0x1109b3000 -        0x110e57fff  com.apple.driver.AppleIntelHD4000GraphicsGLDriver (10.6.33 - 10.0.6) <DC6792A9-56D3-3880-AAEC-6CFBA021CFF3> /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD4000GraphicsGLDriver
       0x113f53000 -        0x113f5aff7  libCGCMS.A.dylib (788.3.1) <9F4AB0FE-9579-3DF3-8E40-B1CAC7DBD00D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
       0x114499000 -        0x11449cffb  libCGXType.A.dylib (788.3.1) <68058722-5E9F-36D5-A87C-78C9EBB0625A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
       0x1149c9000 -        0x1149f1fff  libRIP.A.dylib (788.3.1) <9CBE41B3-FB60-3A17-8D86-8F50ED75094C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x123440000000 -     0x123440864ff7  com.apple.GeForceGLDriver (10.4.2 - 10.0.4) <D21826EA-0D95-3665-8B11-86B720887AF1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    0x7fff6ccdb000 -     0x7fff6cd11887  dyld (353.2.3) <B1B370A5-479F-3533-8AD7-97B687D4F989> /usr/lib/dyld
    0x7fff8c5e5000 -     0x7fff8c5e9fff  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
    0x7fff8c5ea000 -     0x7fff8c5f2ff7  com.apple.icloud.FindMyDevice (1.0 - 1) <9CE67F85-2BA8-3093-97BA-07BF5C04A5D6> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
    0x7fff8c61b000 -     0x7fff8c61ffff  libCoreVMClient.dylib (79.1) <201EF6DF-5074-3CB7-A361-398CF957A264> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff8c620000 -     0x7fff8c628ff7  com.apple.AppleSRP (5.0 - 1) <68F0C577-ED96-34F2-B701-CE3023367D4D> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff8c629000 -     0x7fff8c648fff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
    0x7fff8c658000 -     0x7fff8c65afff  libRadiance.dylib (1241) <480E8A72-F5F9-31A4-BF63-28BAF3BB1F8E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff8c667000 -     0x7fff8c679ff7  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
    0x7fff8c71d000 -     0x7fff8c747ff7  libdispatch.dylib (442.50.1) <A61E703C-784A-3698-B513-75DD12AAD6DC> /usr/lib/system/libdispatch.dylib
    0x7fff8c780000 -     0x7fff8c78cff7  com.apple.OpenDirectory (10.10 - 187) <22FF4721-03D8-381B-AA83-2B07D690C777> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8c7e9000 -     0x7fff8c7e9ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
    0x7fff8c7ea000 -     0x7fff8c85cfff  com.apple.framework.IOKit (2.0.2 - 1050.20.2) <09C0518C-90DF-3FC3-96D6-34D35F72C8EF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8c85d000 -     0x7fff8c86eff3  libsystem_coretls.dylib (35.40.1) <155DA0A9-2046-332E-BFA3-D7974A51F731> /usr/lib/system/libsystem_coretls.dylib
    0x7fff8c870000 -     0x7fff8c879ff3  com.apple.CommonAuth (4.0 - 2.0) <9A484EE6-0003-3AB1-AE4F-AA543BBBF53F> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8c87a000 -     0x7fff8c893ff7  com.apple.CFOpenDirectory (10.10 - 187) <F1805A0F-D5CC-35A8-9349-042D58D128B0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff8c8ed000 -     0x7fff8c8eeff7  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
    0x7fff8c8ef000 -     0x7fff8c91ffff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
    0x7fff8c920000 -     0x7fff8c921fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
    0x7fff8c98d000 -     0x7fff8c991fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
    0x7fff8c9c3000 -     0x7fff8ca22fff  com.apple.AE (681.5 - 681.7) <2BF39455-1CDD-392C-824A-9972C6B1FB57> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff8ca68000 -     0x7fff8caf1ff7  com.apple.CoreSymbolication (3.1 - 57020.2) <FDAF88F6-7D11-37BC-B758-4B835FA657BA> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff8cca2000 -     0x7fff8cd94ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
    0x7fff8cdaa000 -     0x7fff8ce11ffb  com.apple.datadetectorscore (6.0 - 396.1.2) <D04A8016-B2AD-33A2-8A8E-5793968A8370> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff8ce60000 -     0x7fff8ce6bfff  libcommonCrypto.dylib (60061.30.1) <E789748D-F9A7-3CFF-B317-90DF348B1E95> /usr/lib/system/libcommonCrypto.dylib
    0x7fff8cf75000 -     0x7fff8cf82ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
    0x7fff8d3b6000 -     0x7fff8d3cdff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff8d3d9000 -     0x7fff8d3dbfff  com.apple.EFILogin (2.0 - 2) <3BA837D8-94F5-3240-9CF7-E40DC2808446> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff8d3dc000 -     0x7fff8d4ebff3  com.apple.desktopservices (1.9.3 - 1.9.3) <FEE11342-5BC4-37A7-8169-DA48BE17B9C9> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff8d50b000 -     0x7fff8d50bfff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff8d50c000 -     0x7fff8d50dff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
    0x7fff8d50e000 -     0x7fff8d600ff3  libxml2.2.dylib (26.1) <3FBA890F-2850-3A45-87EA-DB6892BDEB60> /usr/lib/libxml2.2.dylib
    0x7fff8d601000 -     0x7fff8d607ff7  libsystem_networkextension.dylib (167.40.3) <BA58B30B-8377-3B0A-8AE3-4F84021D9D4E> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff8d608000 -     0x7fff8d615fff  libxar.1.dylib (255) <7CD69BB5-97BA-3858-8A8B-2F33F129E6E7> /usr/lib/libxar.1.dylib
    0x7fff8d8cd000 -     0x7fff8d8cdff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
    0x7fff8d8e7000 -     0x7fff8d8eefff  com.apple.NetFS (6.0 - 4.0) <C263C8F8-F284-3101-AC82-A97A81716063> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff8d8ef000 -     0x7fff8d8f2fff  com.apple.xpc.ServiceManagement (1.0 - 1) <A95A15CD-3B21-3513-AFF8-1D7DE3DBFA12> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff8d8f3000 -     0x7fff8d91efff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
    0x7fff8d91f000 -     0x7fff8d929ff7  com.apple.NetAuth (5.2 - 5.2) <2BBD749A-8E18-35B8-8E48-A90347C1CCA7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff8d934000 -     0x7fff8d935fff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
    0x7fff8d99c000 -     0x7fff8d9d3ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <CAFB9695-000F-34EA-8DF5-09996929C26A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff8da0a000 -     0x7fff8da32fff  libsystem_info.dylib (459.40.1) <2E16C4B3-A327-3957-9C41-143911979A1E> /usr/lib/system/libsystem_info.dylib
    0x7fff8dbae000 -     0x7fff8dbdbfff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8dc72000 -     0x7fff8dc7bff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
    0x7fff8dc7c000 -     0x7fff8dc80fff  com.apple.IOAccelerator (156.16 - 156.16) <12DE1474-4B2A-3D7D-ACF9-DDAF66A6936A> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff8dc81000 -     0x7fff8dc9bff7  libextension.dylib (55.2) <3BB019CA-199A-36AC-AA22-14B562138545> /usr/lib/libextension.dylib
    0x7fff8dc9c000 -     0x7fff8e034ff7  com.apple.CoreFoundation (6.9 - 1153.18) <5C0892B8-9691-341F-9279-CA3A74D59AA0> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8e04d000 -     0x7fff8e1dbfff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff8e1e7000 -     0x7fff8e376fff  libGLProgrammability.dylib (11.1.3) <838E4103-2F63-3BCD-8CD2-041162437777> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fff8e3b5000 -     0x7fff8e446ff7  libCoreStorage.dylib (471.30.1) <9D95399F-1AC5-325F-8337-6E13AD99E44B> /usr/lib/libCoreStorage.dylib
    0x7fff8e4a4000 -     0x7fff8e538fff  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
    0x7fff8e539000 -     0x7fff8e749ff7  com.apple.CFNetwork (720.5.7 - 720.5.7) <A47D7DD2-5903-39D0-8D27-5A7E2D119D84> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff8e7c1000 -     0x7fff8e80dff7  libcups.2.dylib (408.2) <E8AD18F9-61E4-3791-B840-504468C25556> /usr/lib/libcups.2.dylib
    0x7fff8e80e000 -     0x7fff8e868ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff8e869000 -     0x7fff8e87fff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
    0x7fff8e880000 -     0x7fff8e89dffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
    0x7fff8e89e000 -     0x7fff8e8edff7  com.apple.opencl (2.4.2 - 2.4.2) <EB365E68-9965-3596-A40A-D1E372F3A9B3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff8e8ee000 -     0x7fff8e912ff7  com.apple.Sharing (328.17 - 328.17) <AD5E243A-B79F-3D7B-800B-A2C99A1CFEF1> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff8fcfe000 -     0x7fff8fd39fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff8fd3a000 -     0x7fff8fd3afff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <E5335492-7EFE-31EA-BE72-4A9CEE68D58E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8fd5b000 -     0x7fff8fd75ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff8fd76000 -     0x7fff8fe69ff7  libJP2.dylib (1241) <E3D08E10-9E4E-3C19-B107-233A567B20D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8fe98000 -     0x7fff8fea8ff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
    0x7fff8fea9000 -     0x7fff8ff22fe7  libcorecrypto.dylib (233.30.1) <5779FFA0-4D9A-3AD4-B7F2-618227621DC8> /usr/lib/system/libcorecrypto.dylib
    0x7fff8ffbb000 -     0x7fff90050ff7  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
    0x7fff900e8000 -     0x7fff90113ff7  com.apple.DictionaryServices (1.2 - 229.1) <62EC3E1B-5A28-3252-90FF-C2E9999C2A2A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff90114000 -     0x7fff90116fff  libsystem_configuration.dylib (699.40.2) <56F94DCE-DBDE-3615-8F07-DE6270D9F8BE> /usr/lib/system/libsystem_configuration.dylib
    0x7fff903b4000 -     0x7fff903bbff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
    0x7fff903bc000 -     0x7fff903bcfff  com.apple.Accelerate (1.10 - Accelerate 1.10) <F1B96A61-7E4B-31BD-A35B-BA7EF1F16EF4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff903c0000 -     0x7fff903c0fff  libOpenScriptingUtil.dylib (162.2) <D6A2216D-ADB2-3F24-AD30-F6D00829F545> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff903c1000 -     0x7fff9047cff7  com.apple.DiscRecording (9.0 - 9000.4.2) <4655B4B8-523D-3AE6-92A0-8486A2258B3B> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff904ab000 -     0x7fff908b8ff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff908c1000 -     0x7fff90b40ff7  com.apple.CoreData (111 - 526.3) <5A27E0D8-5E5A-335B-B3F6-2601C7B976FA> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff90b41000 -     0x7fff90b46ff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
    0x7fff90b61000 -     0x7fff90b73ff7  libsasl2.2.dylib (194.1) <35371406-75EF-304A-A073-956C40373555> /usr/lib/libsasl2.2.dylib
    0x7fff90bf3000 -     0x7fff90bf3fff  com.apple.Carbon (154 - 157) <9BF51672-1684-3FDE-A561-FC59A2864EF8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff90ea6000 -     0x7fff90eb7fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
    0x7fff90eb8000 -     0x7fff90ee1ffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
    0x7fff90ee2000 -     0x7fff90fb8ff3  com.apple.DiskImagesFramework (10.10.5 - 398) <0E870F31-9A37-3EDA-BF03-EA45B5909E01> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff910bc000 -     0x7fff910ceff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
    0x7fff910cf000 -     0x7fff910d7fe7  libcldcpuengine.dylib (2.4.5) <6CC680F9-0D13-333B-B151-F0D9C631A1E5> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
    0x7fff9113d000 -     0x7fff91470ff7  libmecabra.dylib (666.7) <0ED8AE5E-7A5B-34A6-A2EE-2B852E60E1E2> /usr/lib/libmecabra.dylib
    0x7fff91471000 -     0x7fff9147afff  libsystem_pthread.dylib (105.40.1) <ACE90967-ECD0-3251-AEEB-461E3C6414F7> /usr/lib/system/libsystem_pthread.dylib
    0x7fff9147b000 -     0x7fff9147dff7  com.apple.securityhi (9.0 - 55006) <2B9C0BCB-7D82-39C2-A99F-7B9E1522CDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff9147f000 -     0x7fff92000ff7  com.apple.AppKit (6.9 - 1348.17) <E485D56D-3E72-34B7-99BB-BFDEE2D07BF5> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff92001000 -     0x7fff92002fff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff9213a000 -     0x7fff9215aff7  com.apple.MultitouchSupport.framework (264.6 - 264.6) <1539F1F6-6334-37F3-9C52-02EFFBF4835D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff9215b000 -     0x7fff921a5fff  com.apple.HIServices (1.22 - 523) <E2F3C5FF-8C50-3E4F-BE63-77A700466663> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff92697000 -     0x7fff926a4ff7  com.apple.SpeechRecognitionCore (2.1.2 - 2.1.2) <551322E2-C1E4-3378-A218-F362985E3E3C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff926a5000 -     0x7fff926ebff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
    0x7fff9270e000 -     0x7fff92728ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
    0x7fff9272d000 -     0x7fff927cce27  com.apple.AppleJPEG (1.0 - 1) <6627DDD9-A8FE-3968-B23A-B6A29AA3919A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff927cd000 -     0x7fff92839ff3  com.apple.MMCS (1.3 - 327.5) <FC998246-ED60-334D-9E94-453F35EF9C78> /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS
    0x7fff9292e000 -     0x7fff92948ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff929b8000 -     0x7fff929d3fff  com.apple.AppleVPAFramework (1.4.5 - 1.4.5) <A6421B0B-6D4D-3E64-AC61-DDB04ED7CFF0> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff929d4000 -     0x7fff929e5ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
    0x7fff929e6000 -     0x7fff92a1efff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff92dd5000 -     0x7fff92dd7fff  libquarantine.dylib (76.20.1) <7AF90041-2768-378A-925A-D83161863642> /usr/lib/system/libquarantine.dylib
    0x7fff92e1a000 -     0x7fff92e1cfff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
    0x7fff92ed1000 -     0x7fff92ed2fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff92ed3000 -     0x7fff93003fff  com.apple.UIFoundation (1.0 - 1) <466BDFA8-0B9F-3AB0-989D-F9779422926A> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff9311f000 -     0x7fff93238ffb  com.apple.CoreText (454.11 - 454.11) <7E5228C8-8657-3B6C-B3A4-98B79A3041EA> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff93b99000 -     0x7fff93bbeff7  libPng.dylib (1241) <E4244E6E-60F4-3478-BD18-1DD52E42EFD9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff93bbf000 -     0x7fff93bf9ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff93bfa000 -     0x7fff93c49ff7  libcurl.4.dylib (83.40.2) <AE97ED1E-A58F-3EF0-8E88-DDC6AD409BCE> /usr/lib/libcurl.4.dylib
    0x7fff93c4a000 -     0x7fff93ca5ff7  libTIFF.dylib (1241) <4FADAE48-44A5-351D-A33F-211A9544E5A9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff93cf5000 -     0x7fff93d28fff  com.apple.MediaKit (16 - 757.2) <2912E5C2-085F-3FE2-8531-23B6E894B0F0> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff93d86000 -     0x7fff93e6afff  libcrypto.0.9.8.dylib (52.40.1) <D123FC57-E2EB-3E08-A51B-6C317EA83EB5> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff93ee6000 -     0x7fff93ef9ff7  com.apple.CoreBluetooth (1.0 - 1) <8D7BA9BA-EB36-307A-9119-0B3D9732C953> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff94424000 -     0x7fff94445fff  com.apple.framework.Apple80211 (10.3 - 1030.71.6) <C0A17391-5C8B-34B1-BD46-8D644AB57DE0> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff9456e000 -     0x7fff94579ff7  libcsfde.dylib (471.30.1) <A62AE3D8-E2A6-314A-BF45-804003BE0AC9> /usr/lib/libcsfde.dylib
    0x7fff9457a000 -     0x7fff945cbfff  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <8E6AE326-9F3E-3182-BD9E-FDF561211E2E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff945cc000 -     0x7fff94644ff7  com.apple.SystemConfiguration (1.14.4 - 1.14) <3DFFD7F7-BD23-3F4C-A209-C4A0D99F6573> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff94651000 -     0x7fff946effff  com.apple.Metadata (10.7.0 - 917.36) <00C4CB5D-E723-3612-84E0-439098392CDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff94792000 -     0x7fff94794fff  libCVMSPluginSupport.dylib (11.1.3) <AD85A441-5B47-3A23-ACBA-3C37AA45DF3C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff94795000 -     0x7fff947a0ff7  libkxld.dylib (2782.50.1) <F346A631-20E3-3BA3-891F-FA95189CD7A9> /usr/lib/system/libkxld.dylib
    0x7fff947a1000 -     0x7fff94815ffb  com.apple.securityfoundation (6.0 - 55126) <8E74913F-67E8-3792-826D-B83896897CAD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff94816000 -     0x7fff9481aff7  libGIF.dylib (1241) <8A3CB11A-5CB9-3008-A0E1-F8B56125F484> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff9481b000 -     0x7fff94867fff  com.apple.corelocation (1486.17 - 1615.24) <8825B3E2-E053-3E01-AE31-793443962D06> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff94868000 -     0x7fff94871fff  libGFXShared.dylib (11.1.3) <5DBAB1CF-990E-3BC3-AB4A-311761EAD627> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff948a0000 -     0x7fff948a8ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
    0x7fff948a9000 -     0x7fff948c5fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff948db000 -     0x7fff94a8bff3  com.apple.QuartzCore (1.10 - 361.19) <F815B60E-75E3-3263-BE93-27A49882CF58> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff94af3000 -     0x7fff94b2bfff  libsystem_network.dylib (412.20.3) <6105C134-6722-3C0A-A4CE-5E1261E2E1CC> /usr/lib/system/libsystem_network.dylib
    0x7fff95042000 -     0x7fff9517ffff  com.apple.ImageIO.framework (3.3.0 - 1241) <BCBBC66A-5028-3BA5-8087-C9E7BBC3A65B> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff95180000 -     0x7fff95188fff  libsystem_dnssd.dylib (576.50.2) <9EC5AF92-D0D2-3BDE-92B6-D3730D3865C8> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff95431000 -     0x7fff95559ff7  com.apple.coreui (2.1 - 308.6) <9E0E9C6A-68F5-34C1-A17C-96226D401D4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff9555f000 -     0x7fff95564fff  libsystem_stats.dylib (163.30.2) <D0E96837-3CF6-323D-B711-6DF6F660E530> /usr/lib/system/libsystem_stats.dylib
    0x7fff95565000 -     0x7fff955d1fff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <03697149-1CDD-32FF-B564-1C1EF5E9E5C3> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff95628000 -     0x7fff95628ff7  liblaunch.dylib (559.40.1) <4F81CA3A-D2CE-3030-A89D-42F3DAD7BA8F> /usr/lib/system/liblaunch.dylib
    0x7fff95629000 -     0x7fff95910ffb  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
    0x7fff95911000 -     0x7fff95917fff  libsystem_trace.dylib (72.20.1) <840F5301-B55A-3078-90B9-FEFFD6CD741A> /usr/lib/system/libsystem_trace.dylib
    0x7fff95918000 -     0x7fff95938fff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff95939000 -     0x7fff95955ff7  libsystem_malloc.dylib (53.30.1) <DDA8928B-CC0D-3255-BD8A-3FEA0982B890> /usr/lib/system/libsystem_malloc.dylib
    0x7fff95956000 -     0x7fff95c25ff3  com.apple.CoreImage (10.3.4) <C1AE8252-A95D-3BF4-83B8-BE85E979F2CB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff95d6f000 -     0x7fff95d7aff7  com.apple.CrashReporterSupport (10.10 - 631) <C44259AC-0A1C-3EC5-99AC-48CB520A709D> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff95d7b000 -     0x7fff95d80fff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff95e96000 -     0x7fff95e9eff3  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
    0x7fff95eae000 -     0x7fff95f44ff7  com.apple.cloudkit.CloudKit (283.67.4 - 283.67.4) <EA6E4B2C-A3AA-3636-B9C3-F61D3EFFB82B> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff961a4000 -     0x7fff962e7fff  libsqlite3.dylib (168.2) <BCB1F77E-2484-3EC4-A1D5-1AE90A407A23> /usr/lib/libsqlite3.dylib
    0x7fff9633c000 -     0x7fff96b9fffb  com.apple.CoreGraphics (1.600.0 - 788.3.1) <83BEB51F-05BF-336E-8D11-977D6B5BF24D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff96baf000 -     0x7fff96baffff  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
    0x7fff96bb0000 -     0x7fff96bb3ff7  libdyld.dylib (353.2.3) <CFBBE540-D503-3AFC-B5D6-644F1E69949B> /usr/lib/system/libdyld.dylib
    0x7fff96bb4000 -     0x7fff96dae46f  libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
    0x7fff96daf000 -     0x7fff970e0fff  com.apple.Foundation (6.9 - 1154) <49EE64E1-9F53-35D1-A481-2EFE2789B254> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff9714e000 -     0x7fff9718eff7  libGLImage.dylib (11.1.3) <731612E5-92A7-3283-8B41-590441AC8318> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff9718f000 -     0x7fff97194ffb  libheimdal-asn1.dylib (398.40.1) <7D2BE3DE-60F7-3A6E-A92E-DA0EF9D3417E> /usr/lib/libheimdal-asn1.dylib
    0x7fff97195000 -     0x7fff97497ffb  com.apple.GeoServices (1.0 - 1077.0.18) <2BBF8B44-DD46-3432-8C84-6D6AA004C233> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff97498000 -     0x7fff9770eff7  com.apple.security (7.0 - 57031.40.7) <1CE2E007-883E-3FFF-B9A5-DFA73252F0AD> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff9770f000 -     0x7fff97717fff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
    0x7fff97718000 -     0x7fff97b48fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff97b49000 -     0x7fff97b4bff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
    0x7fff980d6000 -     0x7fff98529fc7  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
    0x7fff9852e000 -     0x7fff98530ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff98581000 -     0x7fff9860dfe7  libsystem_c.dylib (1044.40.1) <F0635E0F-FE4B-34DB-ACF9-A58C1E9070E9> /usr/lib/system/libsystem_c.dylib
    0x7fff9860e000 -     0x7fff98692fff  com.apple.PerformanceAnalysis (1.0 - 1) <4E934EE0-5CC6-3D54-8FA2-5B8AE669D775> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff98738000 -     0x7fff987b6fff  com.apple.CoreServices.OSServices (640.4 - 640.4) <BE8DF749-84BA-3029-AE1D-32F3993A78A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff987b7000 -     0x7fff98826fff  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
    0x7fff98827000 -     0x7fff98828ff3  libSystem.B.dylib (1213) <1866C519-C5F3-3D09-8C17-A8F703664521> /usr/lib/libSystem.B.dylib
    0x7fff98834000 -     0x7fff98865ff7  com.apple.ProtectedCloudStorage (1.0 - 1) <9D76F2E0-C28A-3DBC-A91F-E87888D46BF0> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff98946000 -     0x7fff98948fff  libsystem_sandbox.dylib (358.20.5) <3F5E973F-C702-31AC-97BC-05F5C195683C> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff98949000 -     0x7fff9896eff7  libJPEG.dylib (1241) <A6635296-BCC9-35E5-A5AF-351B039B5087> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff98bb5000 -     0x7fff98c02ff7  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
    0x7fff98cb1000 -     0x7fff98d53fff  com.apple.Bluetooth (4.3.6 - 4.3.6f3) <E5DC1699-2727-329C-A843-C80CE9A6CD7B> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff98d54000 -     0x7fff98d58fff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
    0x7fff99725000 -     0x7fff99734fff  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
    0x7fff99735000 -     0x7fff99750ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
    0x7fff99751000 -     0x7fff99a56ff3  com.apple.HIToolbox (2.1.1 - 758.7) <E3129A67-BDF9-333D-9C9C-A95C8F0EF71C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff99abb000 -     0x7fff99abefff  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
    0x7fff99abf000 -     0x7fff99ac3fff  com.apple.TCC (1.0 - 1) <CCA42EE2-3400-3444-9486-BC454E60D944> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff99ac4000 -     0x7fff99b0fff7  com.apple.CloudDocs (1.0 - 321.10) <A8221290-A2A5-3767-BB26-CC57AC18D4DC> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
    0x7fff99b10000 -     0x7fff99b29ff3  com.apple.openscripting (1.6.4 - 162.2) <BF79207B-C762-346D-8FF0-3DDCECC9E9E2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff99c9a000 -     0x7fff99c9fff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
    0x7fff99ca0000 -     0x7fff99ca2fff  com.apple.loginsupport (1.0 - 1) <DAAD7013-A19D-3858-BFF7-DE1DAF664401> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff99ca3000 -     0x7fff99caefff  libGL.dylib (11.1.3) <37A901AC-6282-3275-ABA4-7B2C2BE70B53> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff99d82000 -     0x7fff9a60aff7  libclh.dylib (4.0.3 - 4.0.3) <73BF771D-F143-3632-97FB-3C4626CDFFD4> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x7fff9a60b000 -     0x7fff9a60bfff  com.apple.CoreServices (62 - 62) <C69DA8A7-B536-34BF-A93F-1C170E2C6D58> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff9a63f000 -     0x7fff9a67afff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff9a68a000 -     0x7fff9a68bffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
    0x7fff9a695000 -     0x7fff9a7fcffb  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5678FC94-456A-3F5F-BA9A-10EB6E462997> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff9a813000 -     0x7fff9a830fff  libsystem_kernel.dylib (2782.50.1) <1EE815DA-FF1B-3A53-AE9B-C98BD8177A9D> /usr/lib/system/libsystem_kernel.dylib
    0x7fff9a831000 -     0x7fff9a89fff3  com.apple.Heimdal (4.0 - 2.0) <8D1667CF-D454-3E07-A58E-E15591B5A95E> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff9a8a0000 -     0x7fff9a8e1fff  libGLU.dylib (11.1.3) <5586DAD6-FE03-3E6F-913C-82D4EF702A90> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff9a8e2000 -     0x7fff9a953ffb  com.apple.ApplicationServices.ATS (360 - 375.4) <A1BEBCF8-8FC8-345D-B91D-1DA5773AF5A3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff9a954000 -     0x7fff9a960ff7  libGPUSupportMercury.dylib (11.1.3) <029D10A2-F3C8-343C-8348-2C24412BEA8F> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
    0x7fff9a961000 -     0x7fff9aa21ff7  com.apple.backup.framework (1.6.5 - 1.6.5) <86396038-33EA-3046-9F70-093A3D6407D4> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff9aa22000 -     0x7fff9aa89ff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff9aa8a000 -     0x7fff9aabaff3  com.apple.GSS (4.0 - 2.0) <97F2A028-44CF-3188-B863-F4EEB39CBDBD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff9b22b000 -     0x7fff9b410ff7  libicucore.A.dylib (531.50) <CAA7ACE0-4012-3A13-864D-2B56B4B072FD> /usr/lib/libicucore.A.dylib
    0x7fff9b411000 -     0x7fff9b4d4ff7  libvMisc.dylib (516) <21497A28-8DCB-3EB8-BDAC-93C93382B0AA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff9b4d5000 -     0x7fff9b4dbfff  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
    0x7fff9b596000 -     0x7fff9b68aff7  libFontParser.dylib (134.10) <6CF434A2-91CA-3477-BDE2-124508EDA05D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff9b68b000 -     0x7fff9b7a2fe7  libvDSP.dylib (516) <DFEDB210-49D1-3803-88A2-C61DB6A45C3D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff9b95d000 -     0x7fff9b9a3ff7  libFontRegistry.dylib (134.1) <CE41D8C2-BEED-345C-BC4F-3775CC06C672> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff9b9ad000 -     0x7fff9b9b9fff  com.apple.speech.synthesis.framework (5.3.11 - 5.3.11) <DFC7FD85-F1B0-317C-8513-722570CB8FB9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff9bab7000 -     0x7fff9bae2ffb  libarchive.2.dylib (30.1.1) <21997595-5D70-3915-B17D-60741DD3EFC1> /usr/lib/libarchive.2.dylib
    0x7fff9bae4000 -     0x7fff9baf1ff3  com.apple.ProtocolBuffer (1 - 228.0.1) <3429EB06-9F0E-355F-B9AB-F72879177398> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff9bb08000 -     0x7fff9bb2efff  com.apple.ChunkingLibrary (2.1 - 163.6) <29D4CB95-42EF-34C6-8182-BDB6F7BB1E79> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff9bb5f000 -     0x7fff9bb8eff7  com.apple.CoreServicesInternal (221.7.2 - 221.7.2) <B93D4775-149C-3698-B38C-9C50673D455C> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff9bb8f000 -     0x7fff9bcb3ff7  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
    0x7fff9bd88000 -     0x7fff9bdb0fff  libxpc.dylib (559.40.1) <5C829202-962E-3744-8B50-00D38CC88E84> /usr/lib/system/libxpc.dylib
    0x7fff9becc000 -     0x7fff9bf20fff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
    0x7fff9bf21000 -     0x7fff9bf53ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff9c263000 -     0x7fff9c271ff7  com.apple.opengl (11.1.3 - 11.1.3) <C4D3AA58-3EA4-30C0-8E63-7657B5898E83> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff9c272000 -     0x7fff9c275fff  com.apple.IOSurface (97.4 - 97.4) <AE11CFBC-4D46-30F3-BEEC-4C8131079391> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 1
    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: 799418
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=214.9M resident=182.5M(85%) swapped_out_or_unallocated=32.4M(15%)
Writable regions: Total=163.7M written=7688K(5%) resident=18.4M(11%) swapped_out=0K(0%) unallocated=145.3M(89%)
 
REGION TYPE                      VIRTUAL
===========                      =======
CG backing stores                  1312K
CG image                             52K
CG shared images                    176K
CoreAnimation                        80K
CoreUI image data                   124K
Dispatch continuations             16.0M
Foundation                            4K
IOKit                              16.5M
Kernel Alloc Once                     8K
MALLOC                            105.8M
MALLOC (admin)                       32K
Memory Tag 242                       12K
STACK GUARD                        56.0M
Stack                              10.6M
VM_ALLOCATE                        17.2M
__DATA                             26.5M
__GLSLBUILTINS                     2588K
__IMAGE                             528K
__LINKEDIT                         74.0M
__TEXT                            140.9M
__UNICODE                           552K
mapped file                        68.3M
shared memory                        68K
===========                      =======
TOTAL                             537.2M

Model: MacBookPro10,1, BootROM MBP101.00EE.B0A, 4 processors, Intel Core i7, 2.6 GHz, 8 GB, SMC 2.3f36
Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In
Graphics: NVIDIA GeForce GT 650M, NVIDIA GeForce GT 650M, PCIe, 1024 MB
Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533642465238432D50422020
Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533642465238432D50422020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xEF), Broadcom BCM43xx 1.0 (7.15.166.24.3)
Bluetooth: Version 4.3.6f3 16238, 3 services, 18 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
Serial ATA Device: APPLE SSD SM512E, 500.28 GB
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
Thunderbolt Bus: MacBook Pro, Apple Inc., 23.4
Title: Re: THOR[Mac] Compile & Test Examples
Post by: Nexus on October 29, 2015, 08:28:22 pm
Thank you! The callstack would have been enough :D

It says the destructor ~CopiedPtr() crashes, containing an OptTriangleIterator -- a class which extends an iterator with the "invalid" state. It's strange that this happens only on clang, but it may be a difference in the STL iterator implementation that leads to it. This whole part is far too complicated, but I need the pointer to break the circular dependency. Originally, it was like this:
AdvancedVertex holds TriangleIterator
AdvancedTriangle holds AdvancedVertex
TriangleIterator is a typedef to std::list<AdvancedTriangle>::iterator

It's a bit difficult for me to test this, as I don't own a Mac... So I can only guess and try to change the implementation in an aimless attempt to fix things. Maybe you want to experiment a bit (extract that code and play in a simplified example)? Or does somebody else use OS X with the Clang compiler?

Edit: You said other examples don't work either (Fireworks.cpp, Shapes.cpp, Vectors.cpp). They're definitely easier to debug than Triangulation.cpp. Can you for example provide a callstack (and if possible, the line where it crashes) for Vectors.cpp?
Title: Re: THOR[Mac] Compile & Test Examples
Post by: Jesper Juhl on October 29, 2015, 09:34:22 pm
... but I need the pointer to break the circular dependency.
Isn't that the exact use case for std::weak_ptr?

I apologize up front, I have not looked at the code - only your forum post (and just quickly at that). But it sounds (on the surface) as a weak_ptr use-case.
Title: Re: THOR[Mac] Compile & Test Examples
Post by: Nexus on October 29, 2015, 09:41:47 pm
... but I need the pointer to break the circular dependency.
Isn't that the exact use case for std::weak_ptr?
It's not an ownership dependency, but a declaration one. I cannot declare an iterator to a container of T inside a T object, or inside an object which is a member of T. Even if the compiler allowed it, the C++ standard wouldn't, as STL containers require complete types.

You need std::weak_ptr only in combination with std::shared_ptr (which isn't used here). For example in the case, where two objects contain a std::shared_ptr, each of which points to the other object. Both objects keep each other alive, creating a memory leak. std::weak_ptr has weak-reference semantics and allows to express an "only referring-to, but not owning" relation.

The aurora::CopiedPtr acts as a PImpl, but preserves value semantics. I don't know of any other C++ smart pointer that does this, which is one of the reasons why I find CopiedPtr so extremely versatile :)
Title: Re: THOR[Mac] Compile & Test Examples
Post by: Jesper Juhl on October 29, 2015, 09:45:40 pm
Makes sense.
As I said, I didn't look at the code ;-)
I'm well aware of the semantics, I just misunderstood from my casual reading of the forum post.
Nothing to see here, move along :-)
Title: Re: THOR[Mac] Compile & Test Examples
Post by: Hiura on October 30, 2015, 08:56:32 am
I tried the current master revision of Thor but I couldn't make Fireworks.cpp, Shapes.cpp, Vectors.cpp crash.

If I build the Triangulation example with cmake, install it in /usr/local/share, then it works fine. But if I compile it by hand using `clang++ -std=c++11 -stdlib=libc++ -lthor -lsfml-system -lsfml-window -lsfml-graphics Triangulation.cpp` it crashes.

I cannot investigate further now but I guess it has to do with something that CMake does to the binaries that a regular compilation command doesn't...  :-\
Title: Re: THOR[Mac] Compile & Test Examples
Post by: Nexus on October 30, 2015, 11:28:30 am
Maybe a different standard library (libc++ vs libstdc++) or compiler flag?
Title: Re: THOR[Mac] Compile & Test Examples
Post by: Hiura on November 02, 2015, 09:24:39 am
I really don't have time to test further sorry -- but I believe I set CMAKE_CXX_FLAG to -std=c++11 -stdlib=libc++ so it should not be that. Maybe kipbits can provide more information?  ;)