DIV ARENA FORUMS

DIV Goes open source

MikeDX - 21-11-2016 at 03:54 PM

The full source code to DIV, including the IDE, compiler and runtime for all platforms has been uploaded to github and shared for everyone. Hopefully this will attract some new talent to help us make DIV the best it can be. I shall continue to update the code as time goes on, at least until we move to the next version.

https://github.com/MikeDX/DIV-Games-Studio/

BreadCaster - 21-11-2016 at 08:55 PM

Hells horses!!

This is pretty big news, Mikey :) hopefully this will help push DivDX to be as amazing as it can be!!

So are you and Cictec (and others I'd imagine haha) still developing DivDX at the same time? :)

TransDiv - 22-11-2016 at 01:53 PM

Great news Mike!

In the Windows enviroment, can you specify which compiler do u use? SDL version, Any additional SDL libraries?; I know all this can be deducted looking at the sources, but if you write a ReadMe about it, it would be more easy to begin playing with ;)


[Edited on 22-11-2016 by TransDiv]

RKSoft - 22-11-2016 at 03:00 PM

Good news :) - i hope there will be more developers for DIV DX :)

CicTec - 22-11-2016 at 07:50 PM

Quote: Originally posted by BreadCaster  

So are you and Cictec (and others I'd imagine haha) still developing DivDX at the same time? :)

It would be interesting to know your opinion(s) on this.

Quote: Originally posted by TransDiv  

In the Windows enviroment, can you specify which compiler do u use? SDL version, Any aditional SDL libraries?; I know all this can be deducted looking at the sources, but if you write a ReadMe about it, it would be more easy to begin playing with ;)

MinGW + CMake as tools, better MSYS2 as complete package.
SDL 1.2, SDL 2.0 and SDL_Mixer as dependencies.

TransDiv - 22-11-2016 at 08:14 PM

Thx CicTec

saucjedi - 23-11-2016 at 02:06 PM

This is great news! At last we can take a peek at how DIV is made under the hood!

Is there any chance of releasing the DIV2 DOS source untouched for archival purposes?

willicab - 23-11-2016 at 05:45 PM

Hell Yeah :smilegrin:!!!!!! I will review it and try to compile it to see what I can do for the project, btw, I wrote an article about it in my blog (in spanish) https://blog.willicab.com.ve/div-games-studio-ha-sido-libera...

*** EDITED ***
You should create a new development section in the forum, and subforums for each platform supported

[Edited on 23/11/2016 by willicab]

MikeDX - 23-11-2016 at 07:32 PM

Lets see if i can answer some questions:

Quote: Originally posted by BreadCaster  
Hells horses!!

So are you and Cictec (and others I'd imagine haha) still developing DivDX at the same time? :)


I plan to carry on developing this code, and anyone else is welcome to join me by filing issues, submitting pull requests, ofering to maintain ports, etc.


Quote: Originally posted by saucjedi  

Is there any chance of releasing the DIV2 DOS source untouched for archival purposes?


Hmmm. Maybe, but realistically it's already in the git repo, just check the first commits.

Quote: Originally posted by willicab  


You should create a new development section in the forum, and subforums for each platform supported



yes I think this may be a good idea, but really github should be the forum for that.

Quote: Originally posted by TransDiv  


In the Windows enviroment, can you specify which compiler do u use? SDL version, Any additional SDL libraries?; I know all this can be deducted looking at the sources, but if you write a ReadMe about it, it would be more easy to begin playing with ;)


You will require SDL1.2 and SDL1,2_Mixer. DIV also compiles using SDL2 if you wish (SDL2 / SDL2_Mixer)

I have never used windows to compile or run DIV, and has only ever been cross compiled. Someone with more interest in the windows platform than me will be able to assist though.

If you use Cmake (and i recommend you do), it should tell you what libraries you need / are missing.


P.B. - 23-11-2016 at 08:54 PM

That's good news :-).

For me it has been over a decade ago that I did anything with C (and that was only scratching the surface of the programming language). So although I'm happy that I'm able to guess with uncertainty the intent of *(pointers->properties)<<bitshifts and such, I lack the skill (and time) to really be of service here. But I might try to at least build the project at some point, that would be fun :)

I'll be curious to see where this is going though..

saucjedi - 24-11-2016 at 04:04 PM

Quote: Originally posted by MikeDX  

Hmmm. Maybe, but realistically it's already in the git repo, just check the first commits.


That's just what I have been doing ;) but I don't know if anything was deleted before the first commits...

Any way, I have seen structs and some comments that make me think that the 3D mode from DIV2 is taken straight from the VPE (Virtual Presence Engine) lib.

I remember playing with this library back around the same time DIV2 was released and the feel of both 3D modes seemed familiar to me... finally I know why!

CicTec - 24-11-2016 at 04:32 PM

Quote: Originally posted by saucjedi  

Any way, I have seen structs and some comments that make me think that the 3D mode from DIV2 is taken straight from the VPE (Virtual Presence Engine) lib.

I remember playing with this library back around the same time DIV2 was released and the feel of both 3D modes seemed familiar to me... finally I know why!

Yes, the mode8 is based on VPE engine, but the latter has several features that were not included in the mode8, perhaps for lack of time.

saucjedi - 25-11-2016 at 07:01 AM

Quote: Originally posted by CicTec  

Yes, the mode8 is based on VPE engine, but the latter has several features that were not included in the mode8, perhaps for lack of time.


Or the particular VPE version used.

CicTec - 25-11-2016 at 08:16 AM

It has some changes to adapt the structure of DIV, yes.

BreadCaster - 25-11-2016 at 12:41 PM

Oh Wow, could some of those possibly be added into the newer versions of Mode8? I mean 3d models + VPE would basically do for making a commercial level indie game, provided that the 32 bit colour had been implemented :D

CicTec - 25-11-2016 at 12:55 PM

Quote: Originally posted by BreadCaster  
Oh Wow, could some of those possibly be added into the newer versions of Mode8? I mean 3d models + VPE would basically do for making a commercial level indie game, provided that the 32 bit colour had been implemented :D

I am currently refactoring the code to add the 16/32bits support etc, once obtained this should be possible to add other features.

josepgames - 30-11-2016 at 10:55 PM

Hi,

I'm trying to compile div source under Mac OSX. I've tried to compile using makefile but if I execute make osx.make I get an error:

$ make tools/osx.cmake
Makefile:1: *** missing separator. Stop.

Sorry, I'm not that into C.. but I'd like to make it work, could you help me?

MikeDX - 30-11-2016 at 11:13 PM

You should be able to compile the osx build as follows:

Code:
cmake . -DTARGETOS=OSX make


TransDiv - 8-12-2016 at 08:34 PM

CicTec; have you compiled Windows executables from a Windows enviroment, or the same like Mike have cross compiled them from a Linux Enviroment?

CicTec - 8-12-2016 at 08:41 PM

Hi TransDiv,

Yes, but i have my own version of cmakelists because the actual don't work with MSYS2 on Windows.

TransDiv - 9-12-2016 at 12:31 AM

Quote: Originally posted by CicTec  
Hi TransDiv,

Yes, but i have my own version of cmakelists because the actual don't work with MSYS2 on Windows.


Thx; Better i would left these things to the experts :smilegrin:

CicTec - 9-12-2016 at 01:35 AM

Quote: Originally posted by TransDiv  
Quote: Originally posted by CicTec  
Hi TransDiv,

Yes, but i have my own version of cmakelists because the actual don't work with MSYS2 on Windows.


Thx; Better i would left these things to the experts :smilegrin:

Currently the version I have is not complete, once I completed it will test with Mike to ensure that it is completely cross-platform and running in all environments, so we'll publish it.

TransDiv - 9-12-2016 at 01:46 AM

Oks

TransDiv - 10-12-2016 at 01:48 AM

CicTec; One last question, does SDL 2 works in all DIV platforms (like SDL 1.2)?, or only on some selected ones (Windows,OSX,Linux,....)?


[Edited on 10-12-2016 by TransDiv]

CicTec - 10-12-2016 at 09:26 AM

Works in all platforms that SDL2 and DIV supports currently, maybe with some limitations, but should works, considers, however, that currently SDL 1.2 is more stable/advanced for some platforms such as raspberry for example, so I recommend to build for both versions to test what works best in different platforms.

[Edited on 10-12-2016 by CicTec]

josepgames - 10-12-2016 at 10:22 AM

Hi,

I finally made it through visual CMAKE.
After building project I had to create system directory and run make in terminal.

I finally got files:

Code:
CMakeCache.txt Makefile d-OSX CMakeFiles cmake_install.cmake system


But when launching ./d-OSX program fails raising:

Code:
Process: div-OSX [1127] Path: /Users/USER/Downloads/*/div-OSX Identifier: div-OSX Version: 0 Code Type: X86-64 (Native) Parent Process: d-OSX [1126] Responsible: Terminal [532] User ID: 501 Date/Time: 2016-12-10 11:17:36.699 +0100 OS Version: Mac OS X 10.11.6 (15G31) Report Version: 11 Anonymous UUID: 9B61CD98-FD6B-02E2-E6EE-EDDD2D86B57C Time Awake Since Boot: 610 seconds System Integrity Protection: enabled 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 000000010c6c2000-000000010c781000 [ 764K] r-x/rwx SM=COW /Users/USER/Downloads/* Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 libsystem_c.dylib 0x00007fff9df9b132 strlen + 18 1 libsystem_c.dylib 0x00007fff9dfab410 stpcpy + 24 2 libsystem_c.dylib 0x00007fff9e01ebee __strcpy_chk + 24 3 div-OSX 0x000000010c6dd88e Load_Cfgbin + 1198 4 div-OSX 0x000000010c6d1b82 SDL_main + 1058 5 div-OSX 0x000000010c6c668a -[SDLMain applicationDidFinishLaunching:] + 49 6 com.apple.CoreFoundation 0x00007fff97ebcbbc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12 7 com.apple.CoreFoundation 0x00007fff97ebcb4f ___CFXRegistrationPost_block_invoke + 63 8 com.apple.CoreFoundation 0x00007fff97ebcac7 _CFXRegistrationPost + 407 9 com.apple.CoreFoundation 0x00007fff97ebc832 ___CFXNotificationPost_block_invoke + 50 10 com.apple.CoreFoundation 0x00007fff97e795e2 -[_CFXNotificationRegistrar find:object:observer:enumerator:] + 1922 11 com.apple.CoreFoundation 0x00007fff97e78835 _CFXNotificationPost + 693 12 com.apple.Foundation 0x00007fff8b58517a -[NSNotificationCenter postNotificationName:object:userInfo:] + 66 13 com.apple.AppKit 0x00007fff98ef9355 -[NSApplication _postDidFinishNotification] + 297 14 com.apple.AppKit 0x00007fff98ef90bf -[NSApplication _sendFinishLaunchingNotification] + 203 15 com.apple.AppKit 0x00007fff98db3d99 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 557 16 com.apple.AppKit 0x00007fff98db3843 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 250 17 com.apple.Foundation 0x00007fff8b5d372d -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290 18 com.apple.Foundation 0x00007fff8b5d35a7 _NSAppleEventManagerGenericHandler + 102 19 com.apple.AE 0x00007fff8ca05261 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 531 20 com.apple.AE 0x00007fff8ca04fe8 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31 21 com.apple.AE 0x00007fff8ca04f04 aeProcessAppleEvent + 288 22 com.apple.HIToolbox 0x00007fff969dfaf9 AEProcessAppleEvent + 55 23 com.apple.AppKit 0x00007fff98daf290 _DPSNextEvent + 2245 24 com.apple.AppKit 0x00007fff98dae226 -[NSApplication _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 454 25 com.apple.AppKit 0x00007fff98da2d80 -[NSApplication run] + 682 26 div-OSX 0x000000010c6c6c8e main + 1272 27 libdyld.dylib 0x00007fff9367c5ad start + 1 Thread 1: 0 libsystem_kernel.dylib 0x00007fff9478a5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff946c3578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff946c1341 start_wqthread + 13 Thread 2:: Dispatch queue: com.apple.libdispatch-manager 0 libsystem_kernel.dylib 0x00007fff9478aefa kevent_qos + 10 1 libdispatch.dylib 0x00007fff96433165 _dispatch_mgr_invoke + 216 2 libdispatch.dylib 0x00007fff96432dcd _dispatch_mgr_thread + 52 Thread 3: 0 libsystem_kernel.dylib 0x00007fff9478a5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff946c3578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff946c1341 start_wqthread + 13 Thread 4: 0 libsystem_kernel.dylib 0x00007fff9478a5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff946c3578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff946c1341 start_wqthread + 13 Thread 5: 0 libsystem_kernel.dylib 0x00007fff9478a5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff946c3578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff946c1341 start_wqthread + 13 Thread 6: 0 libsystem_kernel.dylib 0x00007fff9478a5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff946c3578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff946c1341 start_wqthread + 13 Thread 7: 0 libsystem_kernel.dylib 0x00007fff9478a5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff946c3578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff946c1341 start_wqthread + 13 Thread 8: 0 libsystem_kernel.dylib 0x00007fff9478a5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff946c3578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff946c1341 start_wqthread + 13 Thread 9: 0 libsystem_kernel.dylib 0x00007fff9478a5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff946c3578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff946c1341 start_wqthread + 13 Thread 10: 0 libsystem_kernel.dylib 0x00007fff9478a5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff946c3578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff946c1341 start_wqthread + 13 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x000000010c799560 rbx: 0x000000010c793d84 rcx: 0x0000000000000000 rdx: 0x0000000000000000 rdi: 0x0000000000000000 rsi: 0x0000000000000000 rbp: 0x00007fff5353c1f0 rsp: 0x00007fff5353c1f0 r8: 0x00000000fffffffc r9: 0x00007fff7d76ac10 r10: 0x00000000ffffffff r11: 0xffffffff00000000 r12: 0x000000010c7a16e0 r13: 0x00007fff5353c2d0 r14: 0x000000010c793d84 r15: 0x0000000000000000 rip: 0x00007fff9df9b132 rfl: 0x0000000000010246 cr2: 0x0000000000000000 Logical CPU: 2 Error Code: 0x00000004 Trap Number: 14 Binary Images: 0x10c6c2000 - 0x10c780fff +div-OSX (0) <11CD8A48-A0B0-3763-AA0A-AE768563C3A0> /Users/USER/Downloads/*/div-OSX 0x10c9b6000 - 0x10c9eeff7 +libSDL-1.2.0.dylib (0) <BC49A1A3-4C38-34F1-8A9F-3FE9D4666510> /usr/local/opt/sdl/lib/libSDL-1.2.0.dylib 0x10ca05000 - 0x10ca1bff7 +libSDL_mixer-1.2.0.dylib (0) <370B9FC1-3482-350F-94D9-C92EE76E115B> /usr/local/opt/sdl_mixer/lib/libSDL_mixer-1.2.0.dylib 0x110bb7000 - 0x110bb7fe7 +cl_kernels (???) <5F339CCB-F7B8-45C8-833C-F7A07D192BC3> cl_kernels 0x112068000 - 0x112073fff com.apple.iokit.IOHIDLib (2.0.0 - 2.0.0) <B46E04B4-EB85-3436-82C4-158DF1A2AB36> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Contents/MacOS/IOHIDLib 0x7fff61db7000 - 0x7fff61deea47 dyld (360.22) <DC81CC9D-651A-3A45-8809-928282052BD3> /usr/lib/dyld 0x7fff894a9000 - 0x7fff8966fff7 com.apple.ImageIO.framework (3.3.0 - 1459) <228306DC-0C7F-3D69-92FA-B2E46E47AA9F> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff896c3000 - 0x7fff896c5ff7 libquarantine.dylib (80) <0F4169F0-0C84-3A25-B3AE-E47B3586D908> /usr/lib/system/libquarantine.dylib 0x7fff897a2000 - 0x7fff89920fff com.apple.UIFoundation (1.0 - 436.1) <AABB5267-E7B7-3D75-B051-E665BDA8DEF4> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff89921000 - 0x7fff89972fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <EA7D4F3B-062B-3C81-A98C-C89264D00D48> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff89973000 - 0x7fff899cffff libTIFF.dylib (1459) <1E1839C3-2C99-38B8-A729-788459576858> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff899d0000 - 0x7fff89a3ffff com.apple.datadetectorscore (7.0 - 460) <E8616F01-90AC-3863-B18C-426E6DD1ACDE> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff8a18a000 - 0x7fff8a18efff libcache.dylib (75) <9548AAE9-2AB7-3525-9ECE-A2A7C4688447> /usr/lib/system/libcache.dylib 0x7fff8a1f3000 - 0x7fff8a1f4fff libsystem_blocks.dylib (65) <1244D9D5-F6AA-35BB-B307-86851C24B8E5> /usr/lib/system/libsystem_blocks.dylib 0x7fff8aa63000 - 0x7fff8ab03fff com.apple.Metadata (10.7.0 - 972.34) <A58195C5-5D5C-32D5-8BBB-F4D32201E5AA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff8ab4a000 - 0x7fff8ab4afff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <054DFE32-737D-3211-9A14-0FC5E1A880E3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff8ab6b000 - 0x7fff8ae11ff7 com.apple.CoreData (120 - 641.3) <A29A5491-6169-372B-828F-84EE0CFD4BC4> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff8b3d8000 - 0x7fff8b3dcfff libGIF.dylib (1459) <7C84B660-04BC-3D05-8C02-A7FBE51FD77B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff8b3fd000 - 0x7fff8b416fff com.apple.CFOpenDirectory (10.11 - 194) <11F95672-55E0-3F9D-9171-5E8C56AEE948> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff8b54d000 - 0x7fff8b576fff com.apple.ProtectedCloudStorage (1.0 - 1) <7436B2B3-943A-3500-B099-80F133B3E002> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage 0x7fff8b57e000 - 0x7fff8b8d2fff com.apple.Foundation (6.9 - 1259) <71A9D3A0-0B1F-3E3A-86F3-1486365A6EF2> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff8b8ef000 - 0x7fff8bb85fff libmecabra.dylib (696.5) <EF6C0BD4-5FE8-34FB-8ADF-69A53CEC97A9> /usr/lib/libmecabra.dylib 0x7fff8bb86000 - 0x7fff8bbafff7 libxslt.1.dylib (14.4) <72CD1CA4-1FBD-3672-ADCE-A89AB741689A> /usr/lib/libxslt.1.dylib 0x7fff8bc21000 - 0x7fff8bc22ff3 com.apple.print.framework.Print (10.0 - 266) <3E85F70C-D7D4-34E1-B88A-C1F503F99CDA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff8bc23000 - 0x7fff8bf08ffb com.apple.CoreServices.CarbonCore (1136.2 - 1136.2) <2DBAFC9A-6CD6-351D-B1F4-87D81AA6D640> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff8bf16000 - 0x7fff8bf45ffb libsystem_m.dylib (3105) <08E1A4B2-6448-3DFE-A58C-ACC7335BE7E4> /usr/lib/system/libsystem_m.dylib 0x7fff8bf46000 - 0x7fff8bf74ff7 com.apple.CoreServicesInternal (248.2 - 248.2) <6E111F0A-D7F1-3738-ADE7-CF983BD4EC8B> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff8bf75000 - 0x7fff8bf75fff com.apple.Carbon (154 - 157) <8F6ED602-5943-3E29-A793-BC331E2C183D> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff8bfc9000 - 0x7fff8bfcdfff com.apple.CommonPanels (1.2.6 - 96) <4AE7E5AE-55B3-37FA-9BDE-B23147ADA2E9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff8bfce000 - 0x7fff8c02cfff com.apple.CoreServices.OSServices (728.13 - 728.13) <27C12B92-7845-38DD-B82D-DC5B678352D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff8c02d000 - 0x7fff8c049fff com.apple.GenerationalStorage (2.0 - 239.1) <8C821448-4294-3736-9CEF-467C93785CB9> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff8c321000 - 0x7fff8c332ff7 libsystem_trace.dylib (201.10.3) <1DD0C1FD-74E2-3949-9C2C-B81D19C2CA5E> /usr/lib/system/libsystem_trace.dylib 0x7fff8c333000 - 0x7fff8c33aff7 libcompiler_rt.dylib (62) <A13ECF69-F59F-38AE-8609-7B731450FBCD> /usr/lib/system/libcompiler_rt.dylib 0x7fff8c349000 - 0x7fff8c399ff7 com.apple.Symbolication (1.4 - 58044) <F70BF765-FBE9-3F1E-85CA-BB2F8E53E8C2> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x7fff8c3f2000 - 0x7fff8c3f5fff com.apple.IOSurface (108.2.3 - 108.2.3) <52E51D16-42E9-3DDB-A16C-48225EF262C4> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff8c6a4000 - 0x7fff8c6affff libGL.dylib (12.1) <70D51643-04AC-3400-8F11-A6FC25985289> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff8c707000 - 0x7fff8c724ff7 com.apple.AppleVPAFramework (2.1.2 - 2.1.2) <41378C0B-B56A-3A73-9BD0-E06FA1F87B8C> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA 0x7fff8c725000 - 0x7fff8c9bfff3 com.apple.security (7.0 - 57337.60.2) <E2E553E7-28C4-3296-B3B6-BB1B3CA73943> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff8c9c3000 - 0x7fff8c9c9fff com.apple.IOAccelerator (205.11 - 205.11) <C51BF724-F8E8-3B9F-806E-A00C65056445> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff8c9fd000 - 0x7fff8ca52fff com.apple.AE (701 - 701) <AD492742-F884-386B-A450-FAC281B9FFA4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff8cb3d000 - 0x7fff8cb3fffb libutil.dylib (43) <4C9BFE8B-563B-3EEA-A323-8F4F14E0A46C> /usr/lib/libutil.dylib 0x7fff8cb40000 - 0x7fff8cb42fff libCGXType.A.dylib (960.3) <70FA6D91-53BC-3DA6-92F3-7FEB33C73948> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib 0x7fff8ce23000 - 0x7fff8ceb9fff com.apple.ColorSync (4.9.0 - 4.9.0) <8FC37E20-6579-3CB2-9D49-BC39FC38DF87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff8cf2c000 - 0x7fff8cf45fff com.apple.openscripting (1.7.1 - 169.1) <36EBF6A7-334A-3197-838F-E8C7B27FCDBB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff8cf4d000 - 0x7fff8cfb3ff7 libsystem_network.dylib (583.50.1) <B52DAB73-92DC-3DA7-B9F4-B899D66445C1> /usr/lib/system/libsystem_network.dylib 0x7fff8cfcb000 - 0x7fff8d252fff com.apple.CFNetwork (760.6.3 - 760.6.3) <8CB9CB2E-D0FB-31D4-A1AE-2A5FE028AD6B> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff8d253000 - 0x7fff8d253fff com.apple.CoreServices (728.13 - 728.13) <E3DFECD2-ECEA-3242-972D-95B9646B57B8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff8d254000 - 0x7fff8d26efff com.apple.Kerberos (3.0 - 1) <1B4744BF-E5AE-38E2-AA56-E22D3270F2E8> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff8d358000 - 0x7fff8d359fff libDiagnosticMessagesClient.dylib (100) <4243B6B4-21E9-355B-9C5A-95A216233B96> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff8d35a000 - 0x7fff8d440fef unorm8_bgra.dylib (2.7.3) <B315AE9C-9E09-3D9F-9513-EC2195908516> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib 0x7fff8d441000 - 0x7fff8d449ffb libsystem_dnssd.dylib (625.60.4) <80189998-32B0-316C-B5C5-53857486713D> /usr/lib/system/libsystem_dnssd.dylib 0x7fff8d44a000 - 0x7fff8d44dff7 libCoreFSCache.dylib (119.5) <2389D7DA-B8EF-3EB4-AAAF-FBEDE01CDECA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff8d44e000 - 0x7fff8d457fff com.apple.icloud.FindMyDevice (1.0 - 1) <B9C741F2-6FAC-3BA7-B6E0-9A910C6E8D4E> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice 0x7fff8d458000 - 0x7fff8d46fff7 libsystem_coretls.dylib (83.40.5) <C90DAE38-4082-381C-A185-2A6A8B677628> /usr/lib/system/libsystem_coretls.dylib 0x7fff8d470000 - 0x7fff8d4b1ff7 libGLU.dylib (12.1) <CD7A5916-3E3C-3EF3-A275-B281016B99CB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff8d4b2000 - 0x7fff8d4b2fff com.apple.ApplicationServices (48 - 48) <ADD57D3A-142F-3EF5-BFD8-EACD82164884> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff8d4b3000 - 0x7fff8d557fff com.apple.Bluetooth (4.4.6 - 4.4.6f1) <F8E54D34-DAAB-319F-8AE7-F3C55CA0CC68> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff8d5a3000 - 0x7fff8d5a4ffb libSystem.B.dylib (1226.10.1) <ECAA07BE-A114-3461-AA13-C57838775FC2> /usr/lib/libSystem.B.dylib 0x7fff8d786000 - 0x7fff8d7edfff com.apple.framework.CoreWiFi (11.0 - 1101.20) <993592F1-B3F1-3FAD-87BD-EA83C361BCCF> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff8d92a000 - 0x7fff8d998ff7 com.apple.ApplicationServices.ATS (377 - 394.4) <9779E916-0788-3CAC-B1EC-F68BCB12A2B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff8d9b4000 - 0x7fff8dd49fdb com.apple.vImage (8.0 - 8.0) <4BAC9B6F-7482-3580-8787-AB0A5B4D331B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff8dd4a000 - 0x7fff8ddfafff com.apple.backup.framework (1.7.4 - 1.7.4) <F304E9D1-991A-379E-9659-BF85C35B4808> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff8de7b000 - 0x7fff8de93fef libcompression.dylib (28) <E7601B62-1053-369D-8A9E-91CF86239220> /usr/lib/libcompression.dylib 0x7fff8de94000 - 0x7fff8deb8fff libJPEG.dylib (1459) <B274689A-56C5-3DBE-9E4E-049608BBD50B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff8deb9000 - 0x7fff8dec1fff com.apple.frameworks.CoreDaemon (1.3 - 1.3) <CC53DC12-9231-3C4F-921B-9A770D463323> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon 0x7fff8edce000 - 0x7fff8edd8fff com.apple.NetAuth (6.0 - 6.0) <D692B1EF-534F-3892-8E2F-2BBA7C8AFD74> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff8edd9000 - 0x7fff8ede1fff com.apple.NetFS (6.0 - 4.0) <842A5346-24C3-3F22-9ECF-E586A10EA1F2> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff8ede2000 - 0x7fff8edeafff libGFXShared.dylib (12.1) <5A0C2493-200C-30BE-97D5-8E8C0B8E604D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff8ef19000 - 0x7fff8ef28ffb com.apple.LangAnalysis (1.7.0 - 1.7.0) <18D21123-A3E7-3851-974A-08E5D4540475> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff8ef29000 - 0x7fff8ef6fff7 libauto.dylib (186) <999E610F-41FC-32A3-ADCA-5EC049B65DFB> /usr/lib/libauto.dylib 0x7fff8f2ec000 - 0x7fff8f315ff7 libxpc.dylib (765.50.8) <54D1328E-054E-3DAA-89E2-375722F9D18F> /usr/lib/system/libxpc.dylib 0x7fff8f316000 - 0x7fff8f316ff7 liblaunch.dylib (765.50.8) <834ED605-5114-3641-AA4D-ECF31B801C50> /usr/lib/system/liblaunch.dylib 0x7fff8f317000 - 0x7fff8f351fff com.apple.QD (3.12 - 302) <0FE53180-2895-3D14-A1E7-F82DE1D106E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff8f7ec000 - 0x7fff8f879dd7 com.apple.AppleJPEG (1.0 - 1) <BF7EDBDB-A52D-37F7-BDE4-EAD49310D7A9> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff8f87a000 - 0x7fff8f89cfff com.apple.IconServices (68.1 - 68.1) <CDEEDBE6-F53B-3BA1-82D4-23BCA3DD8949> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff8f89d000 - 0x7fff8f8a8ff7 libChineseTokenizer.dylib (16) <79B8C67A-3061-3C78-92CD-4650719E68D4> /usr/lib/libChineseTokenizer.dylib 0x7fff8f8a9000 - 0x7fff8f8b4fff libcsfde.dylib (517.50.1) <52F0DB6A-13B8-355E-ADFD-72834D3CA183> /usr/lib/libcsfde.dylib 0x7fff8f8b5000 - 0x7fff8f8b5ff7 libunc.dylib (29) <DDB1E947-C775-33B8-B461-63E5EB698F0E> /usr/lib/system/libunc.dylib 0x7fff8fc2a000 - 0x7fff8fc2bfff libsystem_secinit.dylib (20) <32B1A8C6-DC84-3F4F-B8CE-9A52B47C3E6B> /usr/lib/system/libsystem_secinit.dylib 0x7fff8fc65000 - 0x7fff8fc66fff liblangid.dylib (122) <9CC4F0D1-5C51-3B69-BC8F-EE3A51FD0822> /usr/lib/liblangid.dylib 0x7fff8fc67000 - 0x7fff8fc7dff7 libLinearAlgebra.dylib (1162.2) <FFE54EDF-F06F-3C0A-864A-4CA7BBFD4B2D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff8fc81000 - 0x7fff8fde8fff libBLAS.dylib (1162.2) <A1398FE0-39D2-33EA-9A0F-B2644EEA29A0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff8ffaf000 - 0x7fff8ffe7ff7 com.apple.RemoteViewServices (2.0 - 101) <B2881449-8CFE-3D1C-B4BF-155640392533> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff910d2000 - 0x7fff910eeff3 libresolv.9.dylib (60) <A650B5C8-1950-36A0-86D1-0B2465318BFA> /usr/lib/libresolv.9.dylib 0x7fff910ef000 - 0x7fff91102fff com.apple.CoreBluetooth (1.0 - 1) <E54CA9A2-A5C6-30C5-9D6E-8472DBA9371E> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff91a8a000 - 0x7fff91a8dfff libsystem_sandbox.dylib (460.60.2) <2A68B39C-B786-3A05-87A2-56E688469FB8> /usr/lib/system/libsystem_sandbox.dylib 0x7fff92168000 - 0x7fff921c6fff com.apple.SystemConfiguration (1.14 - 1.14) <D801FAD7-5A2D-3E5E-9F44-B6C9B8BEA747> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff921f8000 - 0x7fff9221ffff com.apple.ChunkingLibrary (167 - 167) <AD7F285C-005E-36BB-98A3-5826413533BE> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff92220000 - 0x7fff9224fff7 com.apple.DictionaryServices (1.2 - 250.3) <30250542-CBAA-39C1-91AA-B57A5DE17594> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff9229d000 - 0x7fff92383ff7 libcrypto.0.9.8.dylib (59.60.1) <D68067AD-D1E0-3196-9796-51BE9B969C8E> /usr/lib/libcrypto.0.9.8.dylib 0x7fff92387000 - 0x7fff923c5ff7 libGLImage.dylib (12.1) <BB1F1A93-5101-3906-AB17-8D83FCB200F9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff925ec000 - 0x7fff925ecff7 libkeymgr.dylib (28) <8371CE54-5FDD-3CE9-B3DF-E98C761B6FE0> /usr/lib/system/libkeymgr.dylib 0x7fff92e0c000 - 0x7fff92fb2ff7 com.apple.audio.toolbox.AudioToolbox (1.13 - 1.13) <370E95BC-956C-3962-86CC-0A14CF6A0389> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff92fb3000 - 0x7fff92fbcff7 com.apple.CommonAuth (4.0 - 2.0) <4B8673E1-3697-3FE2-8D30-AC7AC5D4F8BF> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff93308000 - 0x7fff93513fff libFosl_dynamic.dylib (16.24) <5F9DB82D-FD4B-3952-8531-CE020F93ED49> /usr/lib/libFosl_dynamic.dylib 0x7fff93521000 - 0x7fff9366bff7 com.apple.coreui (2.1 - 366.1) <8138636F-A0A7-31C7-896C-5F5747FA1B2A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff9366c000 - 0x7fff93678fff com.apple.SpeechRecognitionCore (2.2.7 - 2.2.7) <6BA06290-D4A3-351C-87F9-B61EF61FF055> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff93679000 - 0x7fff9367cffb libdyld.dylib (360.22) <1F9FCF2C-5E94-3F2D-B4A5-1238587AA5C6> /usr/lib/system/libdyld.dylib 0x7fff93750000 - 0x7fff9385ffe7 libvDSP.dylib (563.5) <9AB6CA3C-4F0E-35E6-9184-9DF86E7C3DAD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff93f35000 - 0x7fff94142fff libicucore.A.dylib (551.51.4) <3899B146-3840-3D4A-8C4A-FE391D5D25C7> /usr/lib/libicucore.A.dylib 0x7fff94143000 - 0x7fff9415fff7 libextension.dylib (78) <FD952DA6-BBEC-3CB6-98B3-E1D111C5C54E> /usr/lib/libextension.dylib 0x7fff942ba000 - 0x7fff942c3ff3 libsystem_notify.dylib (150.40.1) <D48BDE34-0F7E-34CA-A0FF-C578E39987CC> /usr/lib/system/libsystem_notify.dylib 0x7fff942c4000 - 0x7fff94339fff com.apple.framework.IOKit (2.0.2 - 1179.50.2) <A509D3AE-9D48-31B7-89C7-326A7A2007B2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff9433a000 - 0x7fff94371ff7 com.apple.LDAPFramework (2.4.28 - 194.5) <9AE33BF2-FB17-342D-8F1E-5F83C6E6EB69> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP 0x7fff94400000 - 0x7fff9440eff7 libbz2.1.0.dylib (38) <28E54258-C0FE-38D4-AB76-1734CACCB344> /usr/lib/libbz2.1.0.dylib 0x7fff9440f000 - 0x7fff9441bff7 com.apple.OpenDirectory (10.11 - 194) <31A67AD5-5CC2-350A-96D7-821DF4BC4196> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff944a1000 - 0x7fff944d5ff7 com.apple.CoreVideo (1.8 - 191.3) <1AA24A1B-CB84-3F6B-B6DE-11494542649C> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff946c0000 - 0x7fff946c9ff7 libsystem_pthread.dylib (138.10.4) <3DD1EF4C-1D1B-3ABF-8CC6-B3B1CEEE9559> /usr/lib/system/libsystem_pthread.dylib 0x7fff946d1000 - 0x7fff94722ff7 libcups.2.dylib (435.2) <91584A40-214D-33E8-A613-CE22289037C8> /usr/lib/libcups.2.dylib 0x7fff94773000 - 0x7fff94791ff7 libsystem_kernel.dylib (3248.60.10) <C1A6A0B9-1869-36AB-B4A2-D862EB09A4BE> /usr/lib/system/libsystem_kernel.dylib 0x7fff94ab3000 - 0x7fff94ba2ff7 libxml2.2.dylib (29.10) <B3B03292-7E1A-34AB-888C-3D49D63D60C6> /usr/lib/libxml2.2.dylib 0x7fff94ca0000 - 0x7fff94ca8fef libcldcpuengine.dylib (2.7.3) <385BE8CE-16D8-3FCB-8558-8EB744D3DFE6> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib 0x7fff94ca9000 - 0x7fff950d7fff com.apple.vision.FaceCore (3.3.1 - 3.3.1) <E54028EA-4217-3078-A2B1-C52E4214D59E> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff95df7000 - 0x7fff95e39ff7 com.apple.Metal (56.6 - 56.6) <30518711-8D00-3759-AA19-800D3C88E693> /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff95f57000 - 0x7fff95fa6ff7 com.apple.opencl (2.7.0 - 2.7.0) <39581F1A-04FE-3CCA-9118-E9BB9053F7A1> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff95fa7000 - 0x7fff95facfff com.apple.ImageCapture (9.0 - 9.0) <ACECF0B7-7D92-3A22-BF47-E8FADF4C5378> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff9613a000 - 0x7fff96156ff7 libsystem_malloc.dylib (67.40.1) <5748E8B2-F81C-34C6-8B13-456213127678> /usr/lib/system/libsystem_malloc.dylib 0x7fff96427000 - 0x7fff9642afff libCoreVMClient.dylib (119.5) <560D70FB-709F-3030-96C9-F249FCB7DA6D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff9642b000 - 0x7fff96458fff libdispatch.dylib (501.40.12) <C7499857-61A5-3D7D-A5EA-65DCC8C3DF92> /usr/lib/system/libdispatch.dylib 0x7fff96490000 - 0x7fff9649bfff libkxld.dylib (3248.60.10) <991CDFE9-AB87-321B-A4B2-5EFE64DDCF74> /usr/lib/system/libkxld.dylib 0x7fff96514000 - 0x7fff96876f3f libobjc.A.dylib (680) <7489D2D6-1EFD-3414-B18D-2AECCCC90286> /usr/lib/libobjc.A.dylib 0x7fff96877000 - 0x7fff968fffff com.apple.CoreSymbolication (3.1 - 58048.1) <4730422E-4178-34F9-8550-BB92F2A4F44B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff9699f000 - 0x7fff96c94fff com.apple.HIToolbox (2.1.1 - 807.2) <36413C45-36AF-34EF-9C0E-F18B31D1E565> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff96c95000 - 0x7fff96c97ff7 com.apple.xpc.ServiceManagement (1.0 - 1) <D96D7A6D-EDEB-35EE-B5D9-E33A3BF011B5> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff96e53000 - 0x7fff96ee8fff com.apple.ink.framework (10.9 - 214) <1F76CF36-3F79-36B8-BC37-C540AF34B338> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff96ee9000 - 0x7fff96f23ff7 com.apple.DebugSymbols (132 - 132) <23A42C53-B941-3871-9EE2-4C87A46005B5> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff97472000 - 0x7fff974e6ff3 com.apple.securityfoundation (6.0 - 55126) <DAA4FDD0-7F84-30AA-BE6F-96BB9F871F07> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff974e9000 - 0x7fff97535fff com.apple.print.framework.PrintCore (11.2 - 472.2) <5AE8AA6B-CE09-397D-B0D4-0F9CCBF1F77D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff97536000 - 0x7fff97704ff3 com.apple.QuartzCore (1.11 - 410.14) <076BDE58-8AED-3D47-84FD-548CF8E8EDB9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff97e1c000 - 0x7fff98292fff com.apple.CoreFoundation (6.9 - 1258.1) <943A1383-DA6A-3DC0-ABCD-D9AEB3D0D34D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff982a0000 - 0x7fff982a2ff7 libRadiance.dylib (1459) <43B09AB2-B747-3EA0-A0AF-9A33B3A449D2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff982dc000 - 0x7fff98301ff7 libPng.dylib (1459) <F3A3BCAD-244C-3014-9D44-5ED179BD391D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff98354000 - 0x7fff9837dffb libRIP.A.dylib (960.3) <702967FB-D16C-38C7-A3CC-0EC336740A69> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x7fff98392000 - 0x7fff983fdff7 com.apple.framework.CoreWLAN (11.0 - 1101.20) <3B35C543-7FCE-333F-80C1-432FA41DDCDE> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff9846f000 - 0x7fff9847afff com.apple.CrashReporterSupport (10.11 - 718) <05892B57-F2CD-3C84-B984-0417F6B361DB> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff98773000 - 0x7fff987a6ff7 com.apple.MediaKit (16 - 809) <BF8032FE-6645-37F6-A622-BC7EEE3EAABF> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit 0x7fff98c43000 - 0x7fff98c5afff libmarisa.dylib (4) <E4919B03-D9BD-3AF8-B436-C415C98E3F0A> /usr/lib/libmarisa.dylib 0x7fff98c7a000 - 0x7fff98c7afff com.apple.Accelerate (1.10 - Accelerate 1.10) <185EC96A-5AF0-3620-A4ED-4D3654D25B39> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff98c7b000 - 0x7fff98cc0ff7 com.apple.coreservices.SharedFileList (24.4 - 24.5) <1D2AD77B-778F-3253-A295-3D0A32A8121C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff98cc1000 - 0x7fff98ce5fff com.apple.MultitouchSupport.framework (304.12 - 304.12) <65CB7653-EACD-3ADB-ABB6-2E0671708301> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff98d0e000 - 0x7fff98d5cfff libcurl.4.dylib (90) <12E01E4B-24C9-394C-9D2C-85CF85D5F459> /usr/lib/libcurl.4.dylib 0x7fff98d66000 - 0x7fff9998fff7 com.apple.AppKit (6.9 - 1404.47) <F3411F6E-DD87-34D0-8C68-C69B2205E41D> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff99990000 - 0x7fff99998fff libcopyfile.dylib (127) <A48637BC-F3F2-34F2-BB68-4C65FD012832> /usr/lib/system/libcopyfile.dylib 0x7fff99b68000 - 0x7fff99c95ff3 com.apple.CoreText (352.0 - 494.12) <ADBE8355-D4F5-3316-A6C4-D641D615CEC4> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff99cc6000 - 0x7fff99ccafff libpam.2.dylib (20) <CFCD19BD-87BC-3F2B-BB1C-4C23E8E55F1A> /usr/lib/libpam.2.dylib 0x7fff99d49000 - 0x7fff99d57fff com.apple.opengl (12.1.0 - 12.1.0) <0718DB60-BA4F-3CF7-A117-10A2515D931F> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff99fc6000 - 0x7fff99fcefff libsystem_networkextension.dylib (385.40.36) <66095DC7-6539-38F2-95EE-458F15F6D014> /usr/lib/system/libsystem_networkextension.dylib 0x7fff99fcf000 - 0x7fff99ffaffb libarchive.2.dylib (33.20.2) <6C370A21-63FD-3A68-B4B3-5333F24B770B> /usr/lib/libarchive.2.dylib 0x7fff9a00b000 - 0x7fff9a025ff3 liblzma.5.dylib (10) <CC03591B-FA57-3CA5-AC81-0D76033AC0CE> /usr/lib/liblzma.5.dylib 0x7fff9a885000 - 0x7fff9a8fcfeb libcorecrypto.dylib (335.50.1) <B5C05FD7-A540-345A-87BF-8E41848A3C17> /usr/lib/system/libcorecrypto.dylib 0x7fff9a989000 - 0x7fff9a99aff7 libz.1.dylib (61.20.1) <B3EBB42F-48E3-3287-9F0D-308E04D407AC> /usr/lib/libz.1.dylib 0x7fff9aa8e000 - 0x7fff9aa90fff libsystem_coreservices.dylib (19.2) <1B3F5AFC-FFCD-3ECB-8B9A-5538366FB20D> /usr/lib/system/libsystem_coreservices.dylib 0x7fff9aa9e000 - 0x7fff9aaa0ff7 libsystem_configuration.dylib (802.40.13) <3DEB7DF9-6804-37E1-BC83-0166882FF0FF> /usr/lib/system/libsystem_configuration.dylib 0x7fff9aab1000 - 0x7fff9abd8fff com.apple.LaunchServices (728.13 - 728.13) <DF9A69C3-06AD-3062-A40A-50ED12CA18CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff9abd9000 - 0x7fff9acc9ff7 libJP2.dylib (1459) <5212E346-B7FC-31F4-B4F7-CF1DD9BBAFBB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff9acca000 - 0x7fff9ada0ffb com.apple.DiskImagesFramework (10.11.4 - 417.4) <B9525D22-6F0D-39C5-BA9B-9DF195FE1968> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages 0x7fff9ae3d000 - 0x7fff9aeccff7 libCoreStorage.dylib (517.50.1) <E6283FE9-B5AC-3110-8D4C-8E2BF185983E> /usr/lib/libCoreStorage.dylib 0x7fff9b141000 - 0x7fff9b143ff7 com.apple.securityhi (9.0 - 55006) <1E7BE52B-97EA-371A-AECA-1EE2AD246D8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff9b154000 - 0x7fff9b157ff7 com.apple.help (1.3.3 - 46) <35DA4D48-0BC2-35A1-8D7C-40905CDF4F64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff9b1f1000 - 0x7fff9b1f4ffb libScreenReader.dylib (426.42) <16FC79D1-4573-3E90-945F-CBA22D5185FD> /usr/lib/libScreenReader.dylib 0x7fff9b244000 - 0x7fff9b24cfff com.apple.CoreServices.FSEvents (1223.10.1 - 1223.10.1) <7F5B7A23-BC1D-3FA9-A9B8-D534F1E1979A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff9b44d000 - 0x7fff9b455fff com.apple.AppleSRP (5.0 - 1) <840A5C20-6452-36BB-ACF7-29BA6CBF7C48> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 0x7fff9b456000 - 0x7fff9b506fe7 libvMisc.dylib (563.5) <6D73C20D-D1C4-3BA5-809B-4B597C15AA86> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff9b573000 - 0x7fff9b573fff libenergytrace.dylib (10.40.1) <0A491CA7-3451-3FD5-999A-58AB4362682B> /usr/lib/libenergytrace.dylib 0x7fff9b595000 - 0x7fff9b5a0ff7 libcommonCrypto.dylib (60075.50.1) <93732261-34B4-3914-B7A2-90A81A182DBA> /usr/lib/system/libcommonCrypto.dylib 0x7fff9b61d000 - 0x7fff9b629fff com.apple.speech.synthesis.framework (5.4.12 - 5.4.12) <71DA00B8-5EA2-326B-8814-59DB25512F65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff9b6f8000 - 0x7fff9b76cff7 com.apple.Heimdal (4.0 - 2.0) <5D365381-8B5E-3259-8867-FC4A7D307BDE> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff9b76d000 - 0x7fff9b76ffff com.apple.EFILogin (2.0 - 2) <38150198-DD7F-3C73-BCAA-C74BB376393A> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin 0x7fff9b923000 - 0x7fff9b954fff com.apple.GSS (4.0 - 2.0) <B490333A-3B3E-397A-AD75-68846E9A9140> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff9bca6000 - 0x7fff9c0a2fff libLAPACK.dylib (1162.2) <987E42B0-5108-3065-87F0-9DF7616A8A06> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff9c1cc000 - 0x7fff9c1e0fe3 libCGInterfaces.dylib (317.9) <5079DE4F-3717-32FF-B76A-77F53236D17D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib 0x7fff9c5c8000 - 0x7fff9c5cdfff com.apple.DiskArbitration (2.7 - 2.7) <F55902AA-5316-3255-A701-FDED5B553065> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff9c5ce000 - 0x7fff9c5cfffb libremovefile.dylib (41) <552EF39E-14D7-363E-9059-4565AC2F894E> /usr/lib/system/libremovefile.dylib 0x7fff9c5d0000 - 0x7fff9c5e0fff libbsm.0.dylib (34) <7E14504C-A8B0-3574-B6EB-5D5FABC72926> /usr/lib/libbsm.0.dylib 0x7fff9c5fb000 - 0x7fff9c61dff7 com.apple.Sharing (442.13.6 - 442.13.6) <DDD2811C-6ECB-32F2-8EE1-69BF9657B4A8> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff9c61e000 - 0x7fff9c68dfff com.apple.SearchKit (1.4.0 - 1.4.0) <F159A888-34CA-36F1-AC8E-EB1B38C9DFB3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff9c68e000 - 0x7fff9c6b8ff7 libc++abi.dylib (307.2) <922EFB36-0E9E-315B-8270-E81AC43472C0> /usr/lib/libc++abi.dylib 0x7fff9c6d0000 - 0x7fff9c6e7ff7 libsystem_asl.dylib (323.50.1) <41F8E11F-1BD0-3F1D-BA3A-AA1577ED98A9> /usr/lib/system/libsystem_asl.dylib 0x7fff9c6fe000 - 0x7fff9c743ff3 libFontRegistry.dylib (155.2) <A70DD497-35F3-34DA-9C19-F4B90080E961> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff9c74e000 - 0x7fff9c7d7ff7 com.apple.PerformanceAnalysis (1.0 - 1) <1BC106BB-3C7F-37C9-8496-43F584A6F304> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff9c7d8000 - 0x7fff9c8e6ff3 com.apple.desktopservices (1.10.3 - 1.10.3) <3A6906D4-C0B8-30D1-B589-0466E5E42B69> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff9c8e9000 - 0x7fff9cb0aff7 com.apple.CoreImage (11.4.0 - 366.4.19) <F5B7B115-E43A-3C61-A6AD-EFCDE7FC43A1> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff9cc7e000 - 0x7fff9cc8ffff libSparseBLAS.dylib (1162.2) <EBEB3848-3468-342A-91A6-5C47F2369CD9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff9cc90000 - 0x7fff9cd8cff7 libFontParser.dylib (158.6) <267A9AE4-4138-3112-8D73-BDFDC96568FF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff9ce20000 - 0x7fff9ce25ff7 libheimdal-asn1.dylib (453.40.10) <981DE40B-FA16-36F7-BE92-8C8A115D6CD9> /usr/lib/libheimdal-asn1.dylib 0x7fff9cecd000 - 0x7fff9ceecff7 com.apple.framework.Apple80211 (11.0 - 1121.34.2) <90477FAE-B835-3931-80FB-FDFF02B21D9D> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff9d194000 - 0x7fff9d194fff libmetal_timestamp.dylib (600.0.44.2) <DEEA1127-7A5D-3EF2-A4B2-AE125CBA5DB5> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib 0x7fff9d195000 - 0x7fff9d1a3fff libxar.1.dylib (302) <03207F66-2C4A-3DBD-8D81-70F4C85903C4> /usr/lib/libxar.1.dylib 0x7fff9d1e4000 - 0x7fff9d1e9fff com.apple.TCC (1.0 - 1) <F5EEB2D3-9517-3975-97BE-22CB8E11B8A3> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff9d1ea000 - 0x7fff9d1fcfff libsasl2.2.dylib (209) <11C7D200-0CA5-30F4-A19A-178CA81D48FE> /usr/lib/libsasl2.2.dylib 0x7fff9dc91000 - 0x7fff9dcacff7 libCRFSuite.dylib (34) <078B4CD8-6A8C-3067-B2BA-0C2A0BAB8AC3> /usr/lib/libCRFSuite.dylib 0x7fff9dcad000 - 0x7fff9dd9fff7 libiconv.2.dylib (44) <F05A0A5A-92A9-3668-8F20-F27CBDA26BE9> /usr/lib/libiconv.2.dylib 0x7fff9de41000 - 0x7fff9de47ff7 com.apple.speech.recognition.framework (5.1.1 - 5.1.1) <9E5A980A-F455-32D5-BBEE-3BD6018CC45E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff9de4b000 - 0x7fff9df6ffff libsqlite3.dylib (216.4) <280D67B8-F93D-3587-A146-19F36C817548> /usr/lib/libsqlite3.dylib 0x7fff9df70000 - 0x7fff9df99fff libsystem_info.dylib (477.50.4) <FAA9226D-64DE-3769-A6D8-6CABA4B7FF4D> /usr/lib/system/libsystem_info.dylib 0x7fff9df9a000 - 0x7fff9e027fef libsystem_c.dylib (1082.60.1) <28733D22-553E-3CBC-8D2C-EDCEB46E46AF> /usr/lib/system/libsystem_c.dylib 0x7fff9e028000 - 0x7fff9f273feb com.apple.CoreGraphics (1.600.0 - 960.3) <407FA367-204F-389E-8E33-0435E3B56D40> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff9f274000 - 0x7fff9f285fff libcmph.dylib (6) <BA4BF2C6-7F4E-33B8-9DD7-619C9EB83ECF> /usr/lib/libcmph.dylib 0x7fff9f439000 - 0x7fff9f48cff7 libc++.1.dylib (120.1) <8FC3D139-8055-3498-9AC5-6467CB7F4D14> /usr/lib/libc++.1.dylib 0x7fff9f48d000 - 0x7fff9f48dfff com.apple.Cocoa (6.11 - 22) <807787AB-D231-3F51-A99B-A9314623C571> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff9f4e5000 - 0x7fff9f4e7fff com.apple.loginsupport (1.0 - 1) <9B2F5F9B-ED38-313F-B798-D2B667BCD6B5> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff9f673000 - 0x7fff9f675fff libCVMSPluginSupport.dylib (12.1) <D81B3D8D-B83F-3918-BD4B-6C794A30AF9F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff9f6d6000 - 0x7fff9f77dfff com.apple.LanguageModeling (1.0 - 1) <58C18A47-BDE7-3CBE-81C0-797029D170A1> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff9f7cb000 - 0x7fff9f7d0ff3 libunwind.dylib (35.3) <F6EB48E5-4D12-359A-AB54-C937FBBE9043> /usr/lib/system/libunwind.dylib 0x7fff9f7d1000 - 0x7fff9f7d1fff libOpenScriptingUtil.dylib (169.1) <AD0DAC8A-9849-3077-999F-9AEC6112BDAB> /usr/lib/libOpenScriptingUtil.dylib 0x7fff9f88c000 - 0x7fff9f894fef libsystem_platform.dylib (74.40.2) <29A905EF-6777-3C33-82B0-6C3A88C4BA15> /usr/lib/system/libsystem_platform.dylib 0x7fff9f8be000 - 0x7fff9f978fff com.apple.DiscRecording (9.0.1 - 9010.4.3) <540853B2-B123-3560-8023-C92EE229051A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording 0x7fff9f9f0000 - 0x7fff9fad0ff7 unorm8_rgba.dylib (2.7.3) <9EB6C346-CFF6-32D7-B4A1-2409DFBCB216> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgba.dylib 0x7fff9fad1000 - 0x7fff9fad2fff com.apple.TrustEvaluationAgent (2.0 - 25) <0239494E-FEFE-39BC-9FC7-E251BA5128F1> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x7fff9fad3000 - 0x7fff9fb1fffb com.apple.HIServices (1.22 - 550) <6B76B41C-CF5A-34C4-89F4-EFD7CA3D1C9D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff9fc4b000 - 0x7fff9fc4bfff com.apple.audio.units.AudioUnit (1.13 - 1.13) <378B5292-F216-32AB-B628-8C33A72D7052> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff9fc4e000 - 0x7fff9fc53ff7 libmacho.dylib (875.1) <318264FA-58F1-39D8-8285-1F6254EE410E> /usr/lib/system/libmacho.dylib 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: 435 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=217.7M resident=0K(0%) swapped_out_or_unallocated=217.7M(100%) Writable regions: Total=128.8M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=128.8M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate.framework 128K 2 Activity Tracing 2048K 2 CG backing stores 1320K 3 CG image 28K 4 CG shared images 208K 6 CoreUI image data 156K 2 CoreUI image file 192K 4 Dispatch continuations 16.0M 2 IOKit 8K 3 Kernel Alloc Once 8K 3 MALLOC 78.0M 18 MALLOC guard page 32K 7 Memory Tag 242 12K 2 OpenCL 8K 2 STACK GUARD 56.0M 12 Stack 12.6M 12 VM_ALLOCATE 48K 7 __DATA 19.5M 212 __IMAGE 528K 2 __LINKEDIT 91.7M 8 __TEXT 126.0M 213 __UNICODE 552K 2 mapped file 44.4M 14 shared memory 16.3M 10 =========== ======= ======= TOTAL 465.8M 528 Model: MacBookPro11,4, BootROM MBP114.0172.B09, 4 processors, Intel Core i7, 2,2 GHz, 16 GB, SMC 2.29f24 Graphics: Intel Iris Pro, Intel Iris Pro, Built-In Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x802C, 0x31364B544631473634485A2D314736453120 Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x802C, 0x31364B544631473634485A2D314736453120 AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x152), Broadcom BCM43xx 1.0 (7.21.95.175.1a6) Bluetooth: Version 4.4.6f1 17910, 3 services, 27 devices, 1 incoming serial ports Network Service: Wi-Fi, AirPort, en0 Serial ATA Device: APPLE SSD SM0256G, 251 GB USB Device: USB 3.0 Bus USB Device: Apple Internal Keyboard / Trackpad USB Device: Bluetooth USB Host Controller Thunderbolt Bus: MacBook Pro, Apple Inc., 27.1


And if I run

system/div-OSX

O get error:
Code:
Segmentation fault: 11


Any clue? Thanks!





MikeDX - 10-12-2016 at 03:07 PM

You need to copy the system and help dirs from source to your build folder

josepgames - 10-12-2016 at 11:31 PM

Hi,

I copied both directories at build folder but I get the same error.

Code:
ls CMakeCache.txt cmake_install.cmake system CMakeFiles d-OSX Makefile help


And result:

Code:
Process: div-OSX [782] Path: /Users/USER/Downloads/*/div-OSX Identifier: div-OSX Version: 0 Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: div-OSX [782] User ID: 501 Date/Time: 2016-12-11 00:29:54.901 +0100 OS Version: Mac OS X 10.11.6 (15G31) Report Version: 11 Anonymous UUID: 9B61CD98-FD6B-02E2-E6EE-EDDD2D86B57C Time Awake Since Boot: 6500 seconds System Integrity Protection: enabled Crashed Thread: 1 Exception Type: EXC_CRASH (SIGSEGV) Exception Codes: 0x0000000000000000, 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY Thread 0:: Dispatch queue: com.apple.main-thread 0 div-OSX 0x000000010d7fb1f0 detectar_vesa + 224 1 div-OSX 0x000000010d7fbff3 inicializacion + 19 2 div-OSX 0x000000010d7fbc47 SDL_main + 1255 3 div-OSX 0x000000010d7f068a -[SDLMain applicationDidFinishLaunching:] + 49 4 com.apple.CoreFoundation 0x00007fff965a0bbc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12 5 com.apple.CoreFoundation 0x00007fff965a0b4f ___CFXRegistrationPost_block_invoke + 63 6 com.apple.CoreFoundation 0x00007fff965a0ac7 _CFXRegistrationPost + 407 7 com.apple.CoreFoundation 0x00007fff965a0832 ___CFXNotificationPost_block_invoke + 50 8 com.apple.CoreFoundation 0x00007fff9655d5e2 -[_CFXNotificationRegistrar find:object:observer:enumerator:] + 1922 9 com.apple.CoreFoundation 0x00007fff9655c835 _CFXNotificationPost + 693 10 com.apple.Foundation 0x00007fff89c6917a -[NSNotificationCenter postNotificationName:object:userInfo:] + 66 11 com.apple.AppKit 0x00007fff975dd355 -[NSApplication _postDidFinishNotification] + 297 12 com.apple.AppKit 0x00007fff975dd0bf -[NSApplication _sendFinishLaunchingNotification] + 203 13 com.apple.AppKit 0x00007fff97497d99 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 557 14 com.apple.AppKit 0x00007fff97497843 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 250 15 com.apple.Foundation 0x00007fff89cb772d -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290 16 com.apple.Foundation 0x00007fff89cb75a7 _NSAppleEventManagerGenericHandler + 102 17 com.apple.AE 0x00007fff8b0e9261 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 531 18 com.apple.AE 0x00007fff8b0e8fe8 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31 19 com.apple.AE 0x00007fff8b0e8f04 aeProcessAppleEvent + 288 20 com.apple.HIToolbox 0x00007fff950c3af9 AEProcessAppleEvent + 55 21 com.apple.AppKit 0x00007fff97493290 _DPSNextEvent + 2245 22 com.apple.AppKit 0x00007fff97492226 -[NSApplication _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 454 23 com.apple.AppKit 0x00007fff97486d80 -[NSApplication run] + 682 24 div-OSX 0x000000010d7f0c8e main + 1272 25 libdyld.dylib 0x00007fff91d605ad start + 1 Thread 1 Crashed: 0 libsystem_kernel.dylib 0x00007fff92e6e5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff92da7578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff92da5341 start_wqthread + 13 Thread 2:: Dispatch queue: com.apple.libdispatch-manager 0 libsystem_kernel.dylib 0x00007fff92e6eefa kevent_qos + 10 1 libdispatch.dylib 0x00007fff94b17165 _dispatch_mgr_invoke + 216 2 libdispatch.dylib 0x00007fff94b16dcd _dispatch_mgr_thread + 52 Thread 3: 0 libsystem_kernel.dylib 0x00007fff92e6e5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff92da7578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff92da5341 start_wqthread + 13 Thread 4: 0 libsystem_kernel.dylib 0x00007fff92e6e5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff92da7578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff92da5341 start_wqthread + 13 Thread 5: 0 libsystem_kernel.dylib 0x00007fff92e6e5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff92da7578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff92da5341 start_wqthread + 13 Thread 6: 0 libsystem_kernel.dylib 0x00007fff92e6e5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff92da7578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff92da5341 start_wqthread + 13 Thread 7: 0 libsystem_kernel.dylib 0x00007fff92e6e5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff92da7578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff92da5341 start_wqthread + 13 Thread 8: 0 libsystem_kernel.dylib 0x00007fff92e6e5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff92da7578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff92da5341 start_wqthread + 13 Thread 9: 0 libsystem_kernel.dylib 0x00007fff92e6e5e2 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff92da7578 _pthread_wqthread + 1283 2 libsystem_pthread.dylib 0x00007fff92da5341 start_wqthread + 13 Thread 1 crashed with X86 Thread State (64-bit): rax: 0x0000000000000000 rbx: 0x0000000080000000 rcx: 0x0000700000080f08 rdx: 0x0000000000000000 rdi: 0x0000000000000004 rsi: 0x0000000000000000 rbp: 0x0000700000080f50 rsp: 0x0000700000080f08 r8: 0x00000000000010ff r9: 0x0000000000000001 r10: 0x0000000000000000 r11: 0x0000000000000246 r12: 0x0000700000081000 r13: 0x00000000800008ff r14: 0x0000000000000a0b r15: 0x0000000000000015 rip: 0x00007fff92e6e5e2 rfl: 0x0000000000000246 cr2: 0x00007ffe198743fe Logical CPU: 0 Error Code: 0x02000170 Trap Number: 133 Binary Images: 0x10d7ec000 - 0x10d8aafff +div-OSX (0) <11CD8A48-A0B0-3763-AA0A-AE768563C3A0> /Users/USER/Downloads/*/div-OSX 0x10dadc000 - 0x10db14ff7 +libSDL-1.2.0.dylib (0) <BC49A1A3-4C38-34F1-8A9F-3FE9D4666510> /usr/local/opt/sdl/lib/libSDL-1.2.0.dylib 0x10db2a000 - 0x10db40ff7 +libSDL_mixer-1.2.0.dylib (0) <370B9FC1-3482-350F-94D9-C92EE76E115B> /usr/local/opt/sdl_mixer/lib/libSDL_mixer-1.2.0.dylib 0x111ce0000 - 0x111ce0fe7 +cl_kernels (???) <0F940191-635C-4881-90E6-7BD2922172C3> cl_kernels 0x113192000 - 0x11319dfff com.apple.iokit.IOHIDLib (2.0.0 - 2.0.0) <B46E04B4-EB85-3436-82C4-158DF1A2AB36> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Contents/MacOS/IOHIDLib 0x7fff68674000 - 0x7fff686aba47 dyld (360.22) <DC81CC9D-651A-3A45-8809-928282052BD3> /usr/lib/dyld 0x7fff87b8d000 - 0x7fff87d53ff7 com.apple.ImageIO.framework (3.3.0 - 1459) <228306DC-0C7F-3D69-92FA-B2E46E47AA9F> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff87da7000 - 0x7fff87da9ff7 libquarantine.dylib (80) <0F4169F0-0C84-3A25-B3AE-E47B3586D908> /usr/lib/system/libquarantine.dylib 0x7fff87e86000 - 0x7fff88004fff com.apple.UIFoundation (1.0 - 436.1) <AABB5267-E7B7-3D75-B051-E665BDA8DEF4> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff88005000 - 0x7fff88056fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <EA7D4F3B-062B-3C81-A98C-C89264D00D48> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff88057000 - 0x7fff880b3fff libTIFF.dylib (1459) <1E1839C3-2C99-38B8-A729-788459576858> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff880b4000 - 0x7fff88123fff com.apple.datadetectorscore (7.0 - 460) <E8616F01-90AC-3863-B18C-426E6DD1ACDE> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff8886e000 - 0x7fff88872fff libcache.dylib (75) <9548AAE9-2AB7-3525-9ECE-A2A7C4688447> /usr/lib/system/libcache.dylib 0x7fff888d7000 - 0x7fff888d8fff libsystem_blocks.dylib (65) <1244D9D5-F6AA-35BB-B307-86851C24B8E5> /usr/lib/system/libsystem_blocks.dylib 0x7fff89147000 - 0x7fff891e7fff com.apple.Metadata (10.7.0 - 972.34) <A58195C5-5D5C-32D5-8BBB-F4D32201E5AA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff8922e000 - 0x7fff8922efff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <054DFE32-737D-3211-9A14-0FC5E1A880E3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff8924f000 - 0x7fff894f5ff7 com.apple.CoreData (120 - 641.3) <A29A5491-6169-372B-828F-84EE0CFD4BC4> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff89abc000 - 0x7fff89ac0fff libGIF.dylib (1459) <7C84B660-04BC-3D05-8C02-A7FBE51FD77B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff89ae1000 - 0x7fff89afafff com.apple.CFOpenDirectory (10.11 - 194) <11F95672-55E0-3F9D-9171-5E8C56AEE948> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff89c31000 - 0x7fff89c5afff com.apple.ProtectedCloudStorage (1.0 - 1) <7436B2B3-943A-3500-B099-80F133B3E002> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage 0x7fff89c62000 - 0x7fff89fb6fff com.apple.Foundation (6.9 - 1259) <71A9D3A0-0B1F-3E3A-86F3-1486365A6EF2> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff89fd3000 - 0x7fff8a269fff libmecabra.dylib (696.5) <EF6C0BD4-5FE8-34FB-8ADF-69A53CEC97A9> /usr/lib/libmecabra.dylib 0x7fff8a26a000 - 0x7fff8a293ff7 libxslt.1.dylib (14.4) <72CD1CA4-1FBD-3672-ADCE-A89AB741689A> /usr/lib/libxslt.1.dylib 0x7fff8a305000 - 0x7fff8a306ff3 com.apple.print.framework.Print (10.0 - 266) <3E85F70C-D7D4-34E1-B88A-C1F503F99CDA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff8a307000 - 0x7fff8a5ecffb com.apple.CoreServices.CarbonCore (1136.2 - 1136.2) <2DBAFC9A-6CD6-351D-B1F4-87D81AA6D640> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff8a5fa000 - 0x7fff8a629ffb libsystem_m.dylib (3105) <08E1A4B2-6448-3DFE-A58C-ACC7335BE7E4> /usr/lib/system/libsystem_m.dylib 0x7fff8a62a000 - 0x7fff8a658ff7 com.apple.CoreServicesInternal (248.2 - 248.2) <6E111F0A-D7F1-3738-ADE7-CF983BD4EC8B> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff8a659000 - 0x7fff8a659fff com.apple.Carbon (154 - 157) <8F6ED602-5943-3E29-A793-BC331E2C183D> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff8a6ad000 - 0x7fff8a6b1fff com.apple.CommonPanels (1.2.6 - 96) <4AE7E5AE-55B3-37FA-9BDE-B23147ADA2E9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff8a6b2000 - 0x7fff8a710fff com.apple.CoreServices.OSServices (728.13 - 728.13) <27C12B92-7845-38DD-B82D-DC5B678352D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff8a711000 - 0x7fff8a72dfff com.apple.GenerationalStorage (2.0 - 239.1) <8C821448-4294-3736-9CEF-467C93785CB9> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff8aa05000 - 0x7fff8aa16ff7 libsystem_trace.dylib (201.10.3) <1DD0C1FD-74E2-3949-9C2C-B81D19C2CA5E> /usr/lib/system/libsystem_trace.dylib 0x7fff8aa17000 - 0x7fff8aa1eff7 libcompiler_rt.dylib (62) <A13ECF69-F59F-38AE-8609-7B731450FBCD> /usr/lib/system/libcompiler_rt.dylib 0x7fff8aa2d000 - 0x7fff8aa7dff7 com.apple.Symbolication (1.4 - 58044) <F70BF765-FBE9-3F1E-85CA-BB2F8E53E8C2> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x7fff8aad6000 - 0x7fff8aad9fff com.apple.IOSurface (108.2.3 - 108.2.3) <52E51D16-42E9-3DDB-A16C-48225EF262C4> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff8ad88000 - 0x7fff8ad93fff libGL.dylib (12.1) <70D51643-04AC-3400-8F11-A6FC25985289> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff8adeb000 - 0x7fff8ae08ff7 com.apple.AppleVPAFramework (2.1.2 - 2.1.2) <41378C0B-B56A-3A73-9BD0-E06FA1F87B8C> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA 0x7fff8ae09000 - 0x7fff8b0a3ff3 com.apple.security (7.0 - 57337.60.2) <E2E553E7-28C4-3296-B3B6-BB1B3CA73943> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff8b0a7000 - 0x7fff8b0adfff com.apple.IOAccelerator (205.11 - 205.11) <C51BF724-F8E8-3B9F-806E-A00C65056445> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff8b0e1000 - 0x7fff8b136fff com.apple.AE (701 - 701) <AD492742-F884-386B-A450-FAC281B9FFA4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff8b221000 - 0x7fff8b223ffb libutil.dylib (43) <4C9BFE8B-563B-3EEA-A323-8F4F14E0A46C> /usr/lib/libutil.dylib 0x7fff8b224000 - 0x7fff8b226fff libCGXType.A.dylib (960.3) <70FA6D91-53BC-3DA6-92F3-7FEB33C73948> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib 0x7fff8b507000 - 0x7fff8b59dfff com.apple.ColorSync (4.9.0 - 4.9.0) <8FC37E20-6579-3CB2-9D49-BC39FC38DF87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff8b610000 - 0x7fff8b629fff com.apple.openscripting (1.7.1 - 169.1) <36EBF6A7-334A-3197-838F-E8C7B27FCDBB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff8b631000 - 0x7fff8b697ff7 libsystem_network.dylib (583.50.1) <B52DAB73-92DC-3DA7-B9F4-B899D66445C1> /usr/lib/system/libsystem_network.dylib 0x7fff8b6af000 - 0x7fff8b936fff com.apple.CFNetwork (760.6.3 - 760.6.3) <8CB9CB2E-D0FB-31D4-A1AE-2A5FE028AD6B> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff8b937000 - 0x7fff8b937fff com.apple.CoreServices (728.13 - 728.13) <E3DFECD2-ECEA-3242-972D-95B9646B57B8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff8b938000 - 0x7fff8b952fff com.apple.Kerberos (3.0 - 1) <1B4744BF-E5AE-38E2-AA56-E22D3270F2E8> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff8ba3c000 - 0x7fff8ba3dfff libDiagnosticMessagesClient.dylib (100) <4243B6B4-21E9-355B-9C5A-95A216233B96> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff8ba3e000 - 0x7fff8bb24fef unorm8_bgra.dylib (2.7.3) <B315AE9C-9E09-3D9F-9513-EC2195908516> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib 0x7fff8bb25000 - 0x7fff8bb2dffb libsystem_dnssd.dylib (625.60.4) <80189998-32B0-316C-B5C5-53857486713D> /usr/lib/system/libsystem_dnssd.dylib 0x7fff8bb2e000 - 0x7fff8bb31ff7 libCoreFSCache.dylib (119.5) <2389D7DA-B8EF-3EB4-AAAF-FBEDE01CDECA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff8bb32000 - 0x7fff8bb3bfff com.apple.icloud.FindMyDevice (1.0 - 1) <B9C741F2-6FAC-3BA7-B6E0-9A910C6E8D4E> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice 0x7fff8bb3c000 - 0x7fff8bb53ff7 libsystem_coretls.dylib (83.40.5) <C90DAE38-4082-381C-A185-2A6A8B677628> /usr/lib/system/libsystem_coretls.dylib 0x7fff8bb54000 - 0x7fff8bb95ff7 libGLU.dylib (12.1) <CD7A5916-3E3C-3EF3-A275-B281016B99CB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff8bb96000 - 0x7fff8bb96fff com.apple.ApplicationServices (48 - 48) <ADD57D3A-142F-3EF5-BFD8-EACD82164884> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff8bb97000 - 0x7fff8bc3bfff com.apple.Bluetooth (4.4.6 - 4.4.6f1) <F8E54D34-DAAB-319F-8AE7-F3C55CA0CC68> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff8bc87000 - 0x7fff8bc88ffb libSystem.B.dylib (1226.10.1) <ECAA07BE-A114-3461-AA13-C57838775FC2> /usr/lib/libSystem.B.dylib 0x7fff8be6a000 - 0x7fff8bed1fff com.apple.framework.CoreWiFi (11.0 - 1101.20) <993592F1-B3F1-3FAD-87BD-EA83C361BCCF> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff8c00e000 - 0x7fff8c07cff7 com.apple.ApplicationServices.ATS (377 - 394.4) <9779E916-0788-3CAC-B1EC-F68BCB12A2B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff8c098000 - 0x7fff8c42dfdb com.apple.vImage (8.0 - 8.0) <4BAC9B6F-7482-3580-8787-AB0A5B4D331B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff8c42e000 - 0x7fff8c4defff com.apple.backup.framework (1.7.4 - 1.7.4) <F304E9D1-991A-379E-9659-BF85C35B4808> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff8c55f000 - 0x7fff8c577fef libcompression.dylib (28) <E7601B62-1053-369D-8A9E-91CF86239220> /usr/lib/libcompression.dylib 0x7fff8c578000 - 0x7fff8c59cfff libJPEG.dylib (1459) <B274689A-56C5-3DBE-9E4E-049608BBD50B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff8c59d000 - 0x7fff8c5a5fff com.apple.frameworks.CoreDaemon (1.3 - 1.3) <CC53DC12-9231-3C4F-921B-9A770D463323> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon 0x7fff8d4b2000 - 0x7fff8d4bcfff com.apple.NetAuth (6.0 - 6.0) <D692B1EF-534F-3892-8E2F-2BBA7C8AFD74> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff8d4bd000 - 0x7fff8d4c5fff com.apple.NetFS (6.0 - 4.0) <842A5346-24C3-3F22-9ECF-E586A10EA1F2> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff8d4c6000 - 0x7fff8d4cefff libGFXShared.dylib (12.1) <5A0C2493-200C-30BE-97D5-8E8C0B8E604D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff8d5fd000 - 0x7fff8d60cffb com.apple.LangAnalysis (1.7.0 - 1.7.0) <18D21123-A3E7-3851-974A-08E5D4540475> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff8d60d000 - 0x7fff8d653ff7 libauto.dylib (186) <999E610F-41FC-32A3-ADCA-5EC049B65DFB> /usr/lib/libauto.dylib 0x7fff8d9d0000 - 0x7fff8d9f9ff7 libxpc.dylib (765.50.8) <54D1328E-054E-3DAA-89E2-375722F9D18F> /usr/lib/system/libxpc.dylib 0x7fff8d9fa000 - 0x7fff8d9faff7 liblaunch.dylib (765.50.8) <834ED605-5114-3641-AA4D-ECF31B801C50> /usr/lib/system/liblaunch.dylib 0x7fff8d9fb000 - 0x7fff8da35fff com.apple.QD (3.12 - 302) <0FE53180-2895-3D14-A1E7-F82DE1D106E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff8ded0000 - 0x7fff8df5ddd7 com.apple.AppleJPEG (1.0 - 1) <BF7EDBDB-A52D-37F7-BDE4-EAD49310D7A9> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff8df5e000 - 0x7fff8df80fff com.apple.IconServices (68.1 - 68.1) <CDEEDBE6-F53B-3BA1-82D4-23BCA3DD8949> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff8df81000 - 0x7fff8df8cff7 libChineseTokenizer.dylib (16) <79B8C67A-3061-3C78-92CD-4650719E68D4> /usr/lib/libChineseTokenizer.dylib 0x7fff8df8d000 - 0x7fff8df98fff libcsfde.dylib (517.50.1) <52F0DB6A-13B8-355E-ADFD-72834D3CA183> /usr/lib/libcsfde.dylib 0x7fff8df99000 - 0x7fff8df99ff7 libunc.dylib (29) <DDB1E947-C775-33B8-B461-63E5EB698F0E> /usr/lib/system/libunc.dylib 0x7fff8e30e000 - 0x7fff8e30ffff libsystem_secinit.dylib (20) <32B1A8C6-DC84-3F4F-B8CE-9A52B47C3E6B> /usr/lib/system/libsystem_secinit.dylib 0x7fff8e349000 - 0x7fff8e34afff liblangid.dylib (122) <9CC4F0D1-5C51-3B69-BC8F-EE3A51FD0822> /usr/lib/liblangid.dylib 0x7fff8e34b000 - 0x7fff8e361ff7 libLinearAlgebra.dylib (1162.2) <FFE54EDF-F06F-3C0A-864A-4CA7BBFD4B2D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff8e365000 - 0x7fff8e4ccfff libBLAS.dylib (1162.2) <A1398FE0-39D2-33EA-9A0F-B2644EEA29A0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff8e693000 - 0x7fff8e6cbff7 com.apple.RemoteViewServices (2.0 - 101) <B2881449-8CFE-3D1C-B4BF-155640392533> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff8f7b6000 - 0x7fff8f7d2ff3 libresolv.9.dylib (60) <A650B5C8-1950-36A0-86D1-0B2465318BFA> /usr/lib/libresolv.9.dylib 0x7fff8f7d3000 - 0x7fff8f7e6fff com.apple.CoreBluetooth (1.0 - 1) <E54CA9A2-A5C6-30C5-9D6E-8472DBA9371E> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff9016e000 - 0x7fff90171fff libsystem_sandbox.dylib (460.60.2) <2A68B39C-B786-3A05-87A2-56E688469FB8> /usr/lib/system/libsystem_sandbox.dylib 0x7fff9084c000 - 0x7fff908aafff com.apple.SystemConfiguration (1.14 - 1.14) <D801FAD7-5A2D-3E5E-9F44-B6C9B8BEA747> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff908dc000 - 0x7fff90903fff com.apple.ChunkingLibrary (167 - 167) <AD7F285C-005E-36BB-98A3-5826413533BE> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff90904000 - 0x7fff90933ff7 com.apple.DictionaryServices (1.2 - 250.3) <30250542-CBAA-39C1-91AA-B57A5DE17594> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff90981000 - 0x7fff90a67ff7 libcrypto.0.9.8.dylib (59.60.1) <D68067AD-D1E0-3196-9796-51BE9B969C8E> /usr/lib/libcrypto.0.9.8.dylib 0x7fff90a6b000 - 0x7fff90aa9ff7 libGLImage.dylib (12.1) <BB1F1A93-5101-3906-AB17-8D83FCB200F9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff90cd0000 - 0x7fff90cd0ff7 libkeymgr.dylib (28) <8371CE54-5FDD-3CE9-B3DF-E98C761B6FE0> /usr/lib/system/libkeymgr.dylib 0x7fff914f0000 - 0x7fff91696ff7 com.apple.audio.toolbox.AudioToolbox (1.13 - 1.13) <370E95BC-956C-3962-86CC-0A14CF6A0389> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff91697000 - 0x7fff916a0ff7 com.apple.CommonAuth (4.0 - 2.0) <4B8673E1-3697-3FE2-8D30-AC7AC5D4F8BF> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff919ec000 - 0x7fff91bf7fff libFosl_dynamic.dylib (16.24) <5F9DB82D-FD4B-3952-8531-CE020F93ED49> /usr/lib/libFosl_dynamic.dylib 0x7fff91c05000 - 0x7fff91d4fff7 com.apple.coreui (2.1 - 366.1) <8138636F-A0A7-31C7-896C-5F5747FA1B2A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff91d50000 - 0x7fff91d5cfff com.apple.SpeechRecognitionCore (2.2.7 - 2.2.7) <6BA06290-D4A3-351C-87F9-B61EF61FF055> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff91d5d000 - 0x7fff91d60ffb libdyld.dylib (360.22) <1F9FCF2C-5E94-3F2D-B4A5-1238587AA5C6> /usr/lib/system/libdyld.dylib 0x7fff91e34000 - 0x7fff91f43fe7 libvDSP.dylib (563.5) <9AB6CA3C-4F0E-35E6-9184-9DF86E7C3DAD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff92619000 - 0x7fff92826fff libicucore.A.dylib (551.51.4) <3899B146-3840-3D4A-8C4A-FE391D5D25C7> /usr/lib/libicucore.A.dylib 0x7fff92827000 - 0x7fff92843ff7 libextension.dylib (78) <FD952DA6-BBEC-3CB6-98B3-E1D111C5C54E> /usr/lib/libextension.dylib 0x7fff9299e000 - 0x7fff929a7ff3 libsystem_notify.dylib (150.40.1) <D48BDE34-0F7E-34CA-A0FF-C578E39987CC> /usr/lib/system/libsystem_notify.dylib 0x7fff929a8000 - 0x7fff92a1dfff com.apple.framework.IOKit (2.0.2 - 1179.50.2) <A509D3AE-9D48-31B7-89C7-326A7A2007B2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff92a1e000 - 0x7fff92a55ff7 com.apple.LDAPFramework (2.4.28 - 194.5) <9AE33BF2-FB17-342D-8F1E-5F83C6E6EB69> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP 0x7fff92ae4000 - 0x7fff92af2ff7 libbz2.1.0.dylib (38) <28E54258-C0FE-38D4-AB76-1734CACCB344> /usr/lib/libbz2.1.0.dylib 0x7fff92af3000 - 0x7fff92affff7 com.apple.OpenDirectory (10.11 - 194) <31A67AD5-5CC2-350A-96D7-821DF4BC4196> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff92b85000 - 0x7fff92bb9ff7 com.apple.CoreVideo (1.8 - 191.3) <1AA24A1B-CB84-3F6B-B6DE-11494542649C> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff92da4000 - 0x7fff92dadff7 libsystem_pthread.dylib (138.10.4) <3DD1EF4C-1D1B-3ABF-8CC6-B3B1CEEE9559> /usr/lib/system/libsystem_pthread.dylib 0x7fff92db5000 - 0x7fff92e06ff7 libcups.2.dylib (435.2) <91584A40-214D-33E8-A613-CE22289037C8> /usr/lib/libcups.2.dylib 0x7fff92e57000 - 0x7fff92e75ff7 libsystem_kernel.dylib (3248.60.10) <C1A6A0B9-1869-36AB-B4A2-D862EB09A4BE> /usr/lib/system/libsystem_kernel.dylib 0x7fff93197000 - 0x7fff93286ff7 libxml2.2.dylib (29.10) <B3B03292-7E1A-34AB-888C-3D49D63D60C6> /usr/lib/libxml2.2.dylib 0x7fff93384000 - 0x7fff9338cfef libcldcpuengine.dylib (2.7.3) <385BE8CE-16D8-3FCB-8558-8EB744D3DFE6> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib 0x7fff9338d000 - 0x7fff937bbfff com.apple.vision.FaceCore (3.3.1 - 3.3.1) <E54028EA-4217-3078-A2B1-C52E4214D59E> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff944db000 - 0x7fff9451dff7 com.apple.Metal (56.6 - 56.6) <30518711-8D00-3759-AA19-800D3C88E693> /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff9463b000 - 0x7fff9468aff7 com.apple.opencl (2.7.0 - 2.7.0) <39581F1A-04FE-3CCA-9118-E9BB9053F7A1> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff9468b000 - 0x7fff94690fff com.apple.ImageCapture (9.0 - 9.0) <ACECF0B7-7D92-3A22-BF47-E8FADF4C5378> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff9481e000 - 0x7fff9483aff7 libsystem_malloc.dylib (67.40.1) <5748E8B2-F81C-34C6-8B13-456213127678> /usr/lib/system/libsystem_malloc.dylib 0x7fff94b0b000 - 0x7fff94b0efff libCoreVMClient.dylib (119.5) <560D70FB-709F-3030-96C9-F249FCB7DA6D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff94b0f000 - 0x7fff94b3cfff libdispatch.dylib (501.40.12) <C7499857-61A5-3D7D-A5EA-65DCC8C3DF92> /usr/lib/system/libdispatch.dylib 0x7fff94b74000 - 0x7fff94b7ffff libkxld.dylib (3248.60.10) <991CDFE9-AB87-321B-A4B2-5EFE64DDCF74> /usr/lib/system/libkxld.dylib 0x7fff94bf8000 - 0x7fff94f5af3f libobjc.A.dylib (680) <7489D2D6-1EFD-3414-B18D-2AECCCC90286> /usr/lib/libobjc.A.dylib 0x7fff94f5b000 - 0x7fff94fe3fff com.apple.CoreSymbolication (3.1 - 58048.1) <4730422E-4178-34F9-8550-BB92F2A4F44B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff95083000 - 0x7fff95378fff com.apple.HIToolbox (2.1.1 - 807.2) <36413C45-36AF-34EF-9C0E-F18B31D1E565> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff95379000 - 0x7fff9537bff7 com.apple.xpc.ServiceManagement (1.0 - 1) <D96D7A6D-EDEB-35EE-B5D9-E33A3BF011B5> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff95537000 - 0x7fff955ccfff com.apple.ink.framework (10.9 - 214) <1F76CF36-3F79-36B8-BC37-C540AF34B338> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff955cd000 - 0x7fff95607ff7 com.apple.DebugSymbols (132 - 132) <23A42C53-B941-3871-9EE2-4C87A46005B5> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff95b56000 - 0x7fff95bcaff3 com.apple.securityfoundation (6.0 - 55126) <DAA4FDD0-7F84-30AA-BE6F-96BB9F871F07> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff95bcd000 - 0x7fff95c19fff com.apple.print.framework.PrintCore (11.2 - 472.2) <5AE8AA6B-CE09-397D-B0D4-0F9CCBF1F77D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff95c1a000 - 0x7fff95de8ff3 com.apple.QuartzCore (1.11 - 410.14) <076BDE58-8AED-3D47-84FD-548CF8E8EDB9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff96500000 - 0x7fff96976fff com.apple.CoreFoundation (6.9 - 1258.1) <943A1383-DA6A-3DC0-ABCD-D9AEB3D0D34D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff96984000 - 0x7fff96986ff7 libRadiance.dylib (1459) <43B09AB2-B747-3EA0-A0AF-9A33B3A449D2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff969c0000 - 0x7fff969e5ff7 libPng.dylib (1459) <F3A3BCAD-244C-3014-9D44-5ED179BD391D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff96a38000 - 0x7fff96a61ffb libRIP.A.dylib (960.3) <702967FB-D16C-38C7-A3CC-0EC336740A69> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x7fff96a76000 - 0x7fff96ae1ff7 com.apple.framework.CoreWLAN (11.0 - 1101.20) <3B35C543-7FCE-333F-80C1-432FA41DDCDE> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff96b53000 - 0x7fff96b5efff com.apple.CrashReporterSupport (10.11 - 718) <05892B57-F2CD-3C84-B984-0417F6B361DB> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff96e57000 - 0x7fff96e8aff7 com.apple.MediaKit (16 - 809) <BF8032FE-6645-37F6-A622-BC7EEE3EAABF> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit 0x7fff97327000 - 0x7fff9733efff libmarisa.dylib (4) <E4919B03-D9BD-3AF8-B436-C415C98E3F0A> /usr/lib/libmarisa.dylib 0x7fff9735e000 - 0x7fff9735efff com.apple.Accelerate (1.10 - Accelerate 1.10) <185EC96A-5AF0-3620-A4ED-4D3654D25B39> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff9735f000 - 0x7fff973a4ff7 com.apple.coreservices.SharedFileList (24.4 - 24.5) <1D2AD77B-778F-3253-A295-3D0A32A8121C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff973a5000 - 0x7fff973c9fff com.apple.MultitouchSupport.framework (304.12 - 304.12) <65CB7653-EACD-3ADB-ABB6-2E0671708301> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff973f2000 - 0x7fff97440fff libcurl.4.dylib (90) <12E01E4B-24C9-394C-9D2C-85CF85D5F459> /usr/lib/libcurl.4.dylib 0x7fff9744a000 - 0x7fff98073ff7 com.apple.AppKit (6.9 - 1404.47) <F3411F6E-DD87-34D0-8C68-C69B2205E41D> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff98074000 - 0x7fff9807cfff libcopyfile.dylib (127) <A48637BC-F3F2-34F2-BB68-4C65FD012832> /usr/lib/system/libcopyfile.dylib 0x7fff9824c000 - 0x7fff98379ff3 com.apple.CoreText (352.0 - 494.12) <ADBE8355-D4F5-3316-A6C4-D641D615CEC4> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff983aa000 - 0x7fff983aefff libpam.2.dylib (20) <CFCD19BD-87BC-3F2B-BB1C-4C23E8E55F1A> /usr/lib/libpam.2.dylib 0x7fff9842d000 - 0x7fff9843bfff com.apple.opengl (12.1.0 - 12.1.0) <0718DB60-BA4F-3CF7-A117-10A2515D931F> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff986aa000 - 0x7fff986b2fff libsystem_networkextension.dylib (385.40.36) <66095DC7-6539-38F2-95EE-458F15F6D014> /usr/lib/system/libsystem_networkextension.dylib 0x7fff986b3000 - 0x7fff986deffb libarchive.2.dylib (33.20.2) <6C370A21-63FD-3A68-B4B3-5333F24B770B> /usr/lib/libarchive.2.dylib 0x7fff986ef000 - 0x7fff98709ff3 liblzma.5.dylib (10) <CC03591B-FA57-3CA5-AC81-0D76033AC0CE> /usr/lib/liblzma.5.dylib 0x7fff98f69000 - 0x7fff98fe0feb libcorecrypto.dylib (335.50.1) <B5C05FD7-A540-345A-87BF-8E41848A3C17> /usr/lib/system/libcorecrypto.dylib 0x7fff9906d000 - 0x7fff9907eff7 libz.1.dylib (61.20.1) <B3EBB42F-48E3-3287-9F0D-308E04D407AC> /usr/lib/libz.1.dylib 0x7fff99172000 - 0x7fff99174fff libsystem_coreservices.dylib (19.2) <1B3F5AFC-FFCD-3ECB-8B9A-5538366FB20D> /usr/lib/system/libsystem_coreservices.dylib 0x7fff99182000 - 0x7fff99184ff7 libsystem_configuration.dylib (802.40.13) <3DEB7DF9-6804-37E1-BC83-0166882FF0FF> /usr/lib/system/libsystem_configuration.dylib 0x7fff99195000 - 0x7fff992bcfff com.apple.LaunchServices (728.13 - 728.13) <DF9A69C3-06AD-3062-A40A-50ED12CA18CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff992bd000 - 0x7fff993adff7 libJP2.dylib (1459) <5212E346-B7FC-31F4-B4F7-CF1DD9BBAFBB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff993ae000 - 0x7fff99484ffb com.apple.DiskImagesFramework (10.11.4 - 417.4) <B9525D22-6F0D-39C5-BA9B-9DF195FE1968> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages 0x7fff99521000 - 0x7fff995b0ff7 libCoreStorage.dylib (517.50.1) <E6283FE9-B5AC-3110-8D4C-8E2BF185983E> /usr/lib/libCoreStorage.dylib 0x7fff99825000 - 0x7fff99827ff7 com.apple.securityhi (9.0 - 55006) <1E7BE52B-97EA-371A-AECA-1EE2AD246D8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff99838000 - 0x7fff9983bff7 com.apple.help (1.3.3 - 46) <35DA4D48-0BC2-35A1-8D7C-40905CDF4F64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff998d5000 - 0x7fff998d8ffb libScreenReader.dylib (426.42) <16FC79D1-4573-3E90-945F-CBA22D5185FD> /usr/lib/libScreenReader.dylib 0x7fff99928000 - 0x7fff99930fff com.apple.CoreServices.FSEvents (1223.10.1 - 1223.10.1) <7F5B7A23-BC1D-3FA9-A9B8-D534F1E1979A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff99b31000 - 0x7fff99b39fff com.apple.AppleSRP (5.0 - 1) <840A5C20-6452-36BB-ACF7-29BA6CBF7C48> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 0x7fff99b3a000 - 0x7fff99beafe7 libvMisc.dylib (563.5) <6D73C20D-D1C4-3BA5-809B-4B597C15AA86> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff99c57000 - 0x7fff99c57fff libenergytrace.dylib (10.40.1) <0A491CA7-3451-3FD5-999A-58AB4362682B> /usr/lib/libenergytrace.dylib 0x7fff99c79000 - 0x7fff99c84ff7 libcommonCrypto.dylib (60075.50.1) <93732261-34B4-3914-B7A2-90A81A182DBA> /usr/lib/system/libcommonCrypto.dylib 0x7fff99d01000 - 0x7fff99d0dfff com.apple.speech.synthesis.framework (5.4.12 - 5.4.12) <71DA00B8-5EA2-326B-8814-59DB25512F65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff99ddc000 - 0x7fff99e50ff7 com.apple.Heimdal (4.0 - 2.0) <5D365381-8B5E-3259-8867-FC4A7D307BDE> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff99e51000 - 0x7fff99e53fff com.apple.EFILogin (2.0 - 2) <38150198-DD7F-3C73-BCAA-C74BB376393A> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin 0x7fff9a007000 - 0x7fff9a038fff com.apple.GSS (4.0 - 2.0) <B490333A-3B3E-397A-AD75-68846E9A9140> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff9a38a000 - 0x7fff9a786fff libLAPACK.dylib (1162.2) <987E42B0-5108-3065-87F0-9DF7616A8A06> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff9a8b0000 - 0x7fff9a8c4fe3 libCGInterfaces.dylib (317.9) <5079DE4F-3717-32FF-B76A-77F53236D17D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib 0x7fff9acac000 - 0x7fff9acb1fff com.apple.DiskArbitration (2.7 - 2.7) <F55902AA-5316-3255-A701-FDED5B553065> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff9acb2000 - 0x7fff9acb3ffb libremovefile.dylib (41) <552EF39E-14D7-363E-9059-4565AC2F894E> /usr/lib/system/libremovefile.dylib 0x7fff9acb4000 - 0x7fff9acc4fff libbsm.0.dylib (34) <7E14504C-A8B0-3574-B6EB-5D5FABC72926> /usr/lib/libbsm.0.dylib 0x7fff9acdf000 - 0x7fff9ad01ff7 com.apple.Sharing (442.13.6 - 442.13.6) <DDD2811C-6ECB-32F2-8EE1-69BF9657B4A8> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff9ad02000 - 0x7fff9ad71fff com.apple.SearchKit (1.4.0 - 1.4.0) <F159A888-34CA-36F1-AC8E-EB1B38C9DFB3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff9ad72000 - 0x7fff9ad9cff7 libc++abi.dylib (307.2) <922EFB36-0E9E-315B-8270-E81AC43472C0> /usr/lib/libc++abi.dylib 0x7fff9adb4000 - 0x7fff9adcbff7 libsystem_asl.dylib (323.50.1) <41F8E11F-1BD0-3F1D-BA3A-AA1577ED98A9> /usr/lib/system/libsystem_asl.dylib 0x7fff9ade2000 - 0x7fff9ae27ff3 libFontRegistry.dylib (155.2) <A70DD497-35F3-34DA-9C19-F4B90080E961> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff9ae32000 - 0x7fff9aebbff7 com.apple.PerformanceAnalysis (1.0 - 1) <1BC106BB-3C7F-37C9-8496-43F584A6F304> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff9aebc000 - 0x7fff9afcaff3 com.apple.desktopservices (1.10.3 - 1.10.3) <3A6906D4-C0B8-30D1-B589-0466E5E42B69> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff9afcd000 - 0x7fff9b1eeff7 com.apple.CoreImage (11.4.0 - 366.4.19) <F5B7B115-E43A-3C61-A6AD-EFCDE7FC43A1> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff9b362000 - 0x7fff9b373fff libSparseBLAS.dylib (1162.2) <EBEB3848-3468-342A-91A6-5C47F2369CD9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff9b374000 - 0x7fff9b470ff7 libFontParser.dylib (158.6) <267A9AE4-4138-3112-8D73-BDFDC96568FF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff9b504000 - 0x7fff9b509ff7 libheimdal-asn1.dylib (453.40.10) <981DE40B-FA16-36F7-BE92-8C8A115D6CD9> /usr/lib/libheimdal-asn1.dylib 0x7fff9b5b1000 - 0x7fff9b5d0ff7 com.apple.framework.Apple80211 (11.0 - 1121.34.2) <90477FAE-B835-3931-80FB-FDFF02B21D9D> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff9b878000 - 0x7fff9b878fff libmetal_timestamp.dylib (600.0.44.2) <DEEA1127-7A5D-3EF2-A4B2-AE125CBA5DB5> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib 0x7fff9b879000 - 0x7fff9b887fff libxar.1.dylib (302) <03207F66-2C4A-3DBD-8D81-70F4C85903C4> /usr/lib/libxar.1.dylib 0x7fff9b8c8000 - 0x7fff9b8cdfff com.apple.TCC (1.0 - 1) <F5EEB2D3-9517-3975-97BE-22CB8E11B8A3> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff9b8ce000 - 0x7fff9b8e0fff libsasl2.2.dylib (209) <11C7D200-0CA5-30F4-A19A-178CA81D48FE> /usr/lib/libsasl2.2.dylib 0x7fff9c375000 - 0x7fff9c390ff7 libCRFSuite.dylib (34) <078B4CD8-6A8C-3067-B2BA-0C2A0BAB8AC3> /usr/lib/libCRFSuite.dylib 0x7fff9c391000 - 0x7fff9c483ff7 libiconv.2.dylib (44) <F05A0A5A-92A9-3668-8F20-F27CBDA26BE9> /usr/lib/libiconv.2.dylib 0x7fff9c525000 - 0x7fff9c52bff7 com.apple.speech.recognition.framework (5.1.1 - 5.1.1) <9E5A980A-F455-32D5-BBEE-3BD6018CC45E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff9c52f000 - 0x7fff9c653fff libsqlite3.dylib (216.4) <280D67B8-F93D-3587-A146-19F36C817548> /usr/lib/libsqlite3.dylib 0x7fff9c654000 - 0x7fff9c67dfff libsystem_info.dylib (477.50.4) <FAA9226D-64DE-3769-A6D8-6CABA4B7FF4D> /usr/lib/system/libsystem_info.dylib 0x7fff9c67e000 - 0x7fff9c70bfef libsystem_c.dylib (1082.60.1) <28733D22-553E-3CBC-8D2C-EDCEB46E46AF> /usr/lib/system/libsystem_c.dylib 0x7fff9c70c000 - 0x7fff9d957feb com.apple.CoreGraphics (1.600.0 - 960.3) <407FA367-204F-389E-8E33-0435E3B56D40> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff9d958000 - 0x7fff9d969fff libcmph.dylib (6) <BA4BF2C6-7F4E-33B8-9DD7-619C9EB83ECF> /usr/lib/libcmph.dylib 0x7fff9db1d000 - 0x7fff9db70ff7 libc++.1.dylib (120.1) <8FC3D139-8055-3498-9AC5-6467CB7F4D14> /usr/lib/libc++.1.dylib 0x7fff9db71000 - 0x7fff9db71fff com.apple.Cocoa (6.11 - 22) <807787AB-D231-3F51-A99B-A9314623C571> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff9dbc9000 - 0x7fff9dbcbfff com.apple.loginsupport (1.0 - 1) <9B2F5F9B-ED38-313F-B798-D2B667BCD6B5> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff9dd57000 - 0x7fff9dd59fff libCVMSPluginSupport.dylib (12.1) <D81B3D8D-B83F-3918-BD4B-6C794A30AF9F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff9ddba000 - 0x7fff9de61fff com.apple.LanguageModeling (1.0 - 1) <58C18A47-BDE7-3CBE-81C0-797029D170A1> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff9deaf000 - 0x7fff9deb4ff3 libunwind.dylib (35.3) <F6EB48E5-4D12-359A-AB54-C937FBBE9043> /usr/lib/system/libunwind.dylib 0x7fff9deb5000 - 0x7fff9deb5fff libOpenScriptingUtil.dylib (169.1) <AD0DAC8A-9849-3077-999F-9AEC6112BDAB> /usr/lib/libOpenScriptingUtil.dylib 0x7fff9df70000 - 0x7fff9df78fef libsystem_platform.dylib (74.40.2) <29A905EF-6777-3C33-82B0-6C3A88C4BA15> /usr/lib/system/libsystem_platform.dylib 0x7fff9dfa2000 - 0x7fff9e05cfff com.apple.DiscRecording (9.0.1 - 9010.4.3) <540853B2-B123-3560-8023-C92EE229051A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording 0x7fff9e0d4000 - 0x7fff9e1b4ff7 unorm8_rgba.dylib (2.7.3) <9EB6C346-CFF6-32D7-B4A1-2409DFBCB216> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgba.dylib 0x7fff9e1b5000 - 0x7fff9e1b6fff com.apple.TrustEvaluationAgent (2.0 - 25) <0239494E-FEFE-39BC-9FC7-E251BA5128F1> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x7fff9e1b7000 - 0x7fff9e203ffb com.apple.HIServices (1.22 - 550) <6B76B41C-CF5A-34C4-89F4-EFD7CA3D1C9D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff9e32f000 - 0x7fff9e32ffff com.apple.audio.units.AudioUnit (1.13 - 1.13) <378B5292-F216-32AB-B628-8C33A72D7052> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff9e332000 - 0x7fff9e337ff7 libmacho.dylib (875.1) <318264FA-58F1-39D8-8285-1F6254EE410E> /usr/lib/system/libmacho.dylib 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: 2578 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=217.7M resident=0K(0%) swapped_out_or_unallocated=217.7M(100%) Writable regions: Total=130.2M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=130.2M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate.framework 128K 2 Activity Tracing 2048K 2 CG backing stores 1320K 3 CG image 28K 4 CG shared images 208K 6 CoreUI image data 156K 2 CoreUI image file 192K 4 Dispatch continuations 16.0M 2 Kernel Alloc Once 8K 3 MALLOC 78.0M 20 MALLOC guard page 32K 7 Memory Tag 242 12K 2 OpenCL 8K 2 Process Corpse Info 2048K 2 STACK GUARD 56.0M 11 Stack 12.1M 11 VM_ALLOCATE 52K 8 __DATA 19.5M 208 __IMAGE 528K 2 __LINKEDIT 91.7M 8 __TEXT 126.0M 213 __UNICODE 552K 2 mapped file 44.4M 11 shared memory 16.3M 10 =========== ======= ======= TOTAL 467.3M 521


Any idea? Thanks!

MikeDX - 11-12-2016 at 12:01 AM

That's a different error now, or at least a different stacktrace.

Not sure of a fix at the moment :(

CicTec - 7-2-2017 at 08:47 PM

Quote: Originally posted by TransDiv  
Quote: Originally posted by CicTec  
Hi TransDiv,

Yes, but i have my own version of cmakelists because the actual don't work with MSYS2 on Windows.


Thx; Better i would left these things to the experts :smilegrin:

Hello again,

The WIP cmakelists for MSYS2 (windows) is in the repo now, you can try to compile DIV if you want (except DIV1RUN that not work at moment).

screenshotrydberg - 11-10-2018 at 08:50 AM

Quote: Originally posted by MikeDX  
The full source code to DIV, including the IDE, compiler and runtime for all platforms has been uploaded to github and shared for everyone. Hopefully this will attract some new talent to help us make DIV the best it can be. I shall continue to update the code as time goes on, at least until we move to the next version.

https://github.com/MikeDX/DIV-Games-Studio/


Thanks for the link.