Allegro.cc - Online Community

Allegro.cc Forums » Installation, Setup & Configuration » Allegro crashing since system update

This thread is locked; no one can reply to it. rss feed Print
Allegro crashing since system update
Mark Oates
Member #1,146
March 2001
avatar

I recently updated my MacOS to 10.15 and now all newly compiled allegro programs are crashing on run. When running the program in the terminal, I get the error message "illegal hardware instruction". Note this only occurs on freshly compiled programs, as older programs previously compiled before the update are able to run without issues.

I tried:

1. uninstalling and re-installing allegro through homebrew
2. re-installing xcode and then re-installing allegro through homebrew

Given a simple program (main.cpp):

#include <allegro5/allegro.h>

int main(int argc, char **argv)
{
   al_init();
   ALLEGRO_DISPLAY *display = al_create_display(800, 600); // < crashes with this line

   return 0;
}

Makefile:

main: main.cpp
  g++ main.cpp -lallegro -lallegro_main -o main

Here's the problem report:

Process:               main [4370]
Path:                  /Users/USER/*/main
Identifier:            main
Version:               0
Code Type:             X86-64 (Native)
Parent Process:        zsh [1649]
Responsible:           iTerm2 [1645]
User ID:               501

Date/Time:             2019-10-26 14:18:49.375 -0400
OS Version:            Mac OS X 10.15 (19A602)
Report Version:        12
Bridge OS Version:     4.0 (17P572)
Anonymous UUID:        1426A5E2-9AFD-ACDB-78B3-7D81FAAB8761

Sleep/Wake UUID:       09847CA1-51A0-4819-80B3-B6BE55C9C5F9

Time Awake Since Boot: 3800 seconds
Time Since Wake:       760 seconds

System Integrity Protection: enabled

Crashed Thread:        3

Exception Type:        EXC_BAD_INSTRUCTION (SIGILL)
Exception Codes:       0x0000000000000001, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Termination Signal:    Illegal instruction: 4
Termination Reason:    Namespace SIGNAL, Code 0x4
Terminating Process:   exc handler [4370]

Application Specific Information:
-[NSOpenGLContext update] must be called from the main thread if the context has a view.

Thread 0:: Dispatch queue: com.apple.main-thread
0   libobjc.A.dylib               	0x00007fff6f227abb objc_opt::objc_stringhash_t::getIndex(char const*) const + 81
1   libobjc.A.dylib               	0x00007fff6f22cf3e getPreoptimizedClass + 159
2   libobjc.A.dylib               	0x00007fff6f23d424 getClassExceptSomeSwift(char const*) + 15
3   libobjc.A.dylib               	0x00007fff6f22cd19 look_up_class + 70
4   com.apple.UIFoundation        	0x00007fff69cc9362 initNSGraphicsContext + 25
5   com.apple.UIFoundation        	0x00007fff69db0c81 +[_NSStandardTextGraphicsContextProvider graphicsContextForApplicationFrameworkContext:] + 42
6   com.apple.UIFoundation        	0x00007fff69cdcb89 _NSStringDrawingCore + 113
7   com.apple.AppKit              	0x00007fff36791a6e _NSDrawTextCell + 3700
8   com.apple.AppKit              	0x00007fff365c0c80 -[NSTextFieldCell _drawForegroundOfTextLayer] + 222
9   com.apple.AppKit              	0x00007fff364e2315 +[NSAppearance _performWithCurrentAppearance:usingBlock:] + 66
10  com.apple.AppKit              	0x00007fff36f87bbf __NSTextLayerDrawForeground_block_invoke + 113
11  com.apple.AppKit              	0x00007fff3654462e -[NSFocusStack performWithFocusView:inWindow:usingBlock:] + 92
12  com.apple.AppKit              	0x00007fff36f87ae7 NSTextLayerDrawForeground + 262
13  com.apple.QuartzCore          	0x00007fff44aaa9a4 CABackingStoreUpdate_ + 577
14  com.apple.QuartzCore          	0x00007fff44b010b5 invocation function for block in CA::Layer::display_() + 53
15  com.apple.QuartzCore          	0x00007fff44aa9c7a -[CALayer _display] + 2092
16  com.apple.AppKit              	0x00007fff36f877a3 __22-[NSTextLayer display]_block_invoke_2 + 690
17  com.apple.AppKit              	0x00007fff364e2315 +[NSAppearance _performWithCurrentAppearance:usingBlock:] + 66
18  com.apple.AppKit              	0x00007fff365c03ba __22-[NSTextLayer display]_block_invoke + 145
19  com.apple.AppKit              	0x00007fff3654462e -[NSFocusStack performWithFocusView:inWindow:usingBlock:] + 92
20  com.apple.AppKit              	0x00007fff365bff0a -[NSTextLayer display] + 372
21  com.apple.QuartzCore          	0x00007fff44aa90c1 CA::Layer::display_if_needed(CA::Transaction*) + 739
22  com.apple.QuartzCore          	0x00007fff44bcd821 CA::Context::commit_transaction(CA::Transaction*, double) + 341
23  com.apple.QuartzCore          	0x00007fff44a97ec6 CA::Transaction::commit() + 638
24  com.apple.AppKit              	0x00007fff36d77e2a __62+[CATransaction(NSCATransaction) NS_setFlushesWithDisplayLink]_block_invoke + 266
25  com.apple.AppKit              	0x00007fff36d78252 ___NSRunLoopObserverCreateWithHandler_block_invoke + 41
26  com.apple.CoreFoundation      	0x00007fff392f34be __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
27  com.apple.CoreFoundation      	0x00007fff392f33e4 __CFRunLoopDoObservers + 457
28  com.apple.CoreFoundation      	0x00007fff3929655b __CFRunLoopRun + 1219
29  com.apple.CoreFoundation      	0x00007fff39295e13 CFRunLoopRunSpecific + 499
30  com.apple.HIToolbox           	0x00007fff37e22b2d RunCurrentEventLoopInMode + 292
31  com.apple.HIToolbox           	0x00007fff37e22779 ReceiveNextEventCommon + 356
32  com.apple.HIToolbox           	0x00007fff37e225f7 _BlockUntilNextEventMatchingListInModeWithFilter + 64
33  com.apple.AppKit              	0x00007fff364b8ac4 _DPSNextEvent + 990
34  com.apple.AppKit              	0x00007fff364b7834 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1352
35  com.apple.AppKit              	0x00007fff364b1fd4 -[NSApplication run] + 658
36  liballegro.5.2.dylib          	0x00000001041f21e9 _al_osx_run_main + 1166
37  liballegro_main.5.2.dylib     	0x000000010426bf92 main + 16
38  libdyld.dylib                 	0x00007fff70595405 start + 1

Thread 1:
0   libsystem_pthread.dylib       	0x00007fff7079e5b4 start_wqthread + 0

Thread 2:
0   libsystem_pthread.dylib       	0x00007fff7079e5b4 start_wqthread + 0

Thread 3 Crashed:
0   com.apple.AppKit              	0x00007fff368238a1 -[NSOpenGLContext update] + 520
1   liballegro.5.2.dylib          	0x00000001041ef943 create_display_win + 1079
2   liballegro.5.2.dylib          	0x00000001041b43d4 al_create_display + 40
3   main                          	0x0000000104193f65 _al_mangled_main + 53
4   liballegro.5.2.dylib          	0x00000001041f1d47 call_user_main + 23
5   liballegro.5.2.dylib          	0x00000001041f1d30 +[AllegroAppDelegate app_main:] + 9
6   com.apple.Foundation          	0x00007fff3b928ef2 __NSThread__start__ + 1064
7   libsystem_pthread.dylib       	0x00007fff707a1d76 _pthread_start + 125
8   libsystem_pthread.dylib       	0x00007fff7079e5d7 thread_start + 15

Thread 4:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	0x00007fff706de146 mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff706de6ac mach_msg + 60
2   com.apple.CoreFoundation      	0x00007fff3929719b __CFRunLoopServiceMachPort + 322
3   com.apple.CoreFoundation      	0x00007fff39296737 __CFRunLoopRun + 1695
4   com.apple.CoreFoundation      	0x00007fff39295e13 CFRunLoopRunSpecific + 499
5   com.apple.AppKit              	0x00007fff364c0026 _NSEventThread + 132
6   libsystem_pthread.dylib       	0x00007fff707a1d76 _pthread_start + 125
7   libsystem_pthread.dylib       	0x00007fff7079e5d7 thread_start + 15

Thread 5:
0   libsystem_pthread.dylib       	0x00007fff7079e5b4 start_wqthread + 0

Thread 6:
0   libsystem_pthread.dylib       	0x00007fff7079e5b4 start_wqthread + 0

Thread 7:
0   libsystem_pthread.dylib       	0x00007fff7079e5b4 start_wqthread + 0

Thread 3 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x00007fc9f2809000  rcx: 0x0000000000000000  rdx: 0x0000000000000000
  rdi: 0x0000000000000000  rsi: 0x000000001f08000c  rbp: 0x0000700002a34c20  rsp: 0x0000700002a34be0
   r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
  r12: 0x00007fc9f291b500  r13: 0x0000700002a34c80  r14: 0x00007fc9f1f46260  r15: 0x0000000104220940
  rip: 0x00007fff368238a1  rfl: 0x0000000000010202  cr2: 0x00000001091c9000
  
Logical CPU:     0
Error Code:      0x00000000
Trap Number:     6


Binary Images:
       0x104193000 -        0x104193fff +main (0) <65F249A6-95FA-30ED-AD10-AA6A7E5D511B> /Users/USER/*/main
       0x10419c000 -        0x10421bff3 +liballegro.5.2.dylib (0) <06ACC683-B261-307C-A084-8217B6F55DDE> /usr/local/opt/allegro/lib/liballegro.5.2.dylib
       0x10426a000 -        0x10426bfff +liballegro_main.5.2.dylib (0) <F5767641-0060-31E1-B994-9CD93C18BBC0> /usr/local/opt/allegro/lib/liballegro_main.5.2.dylib
       0x108d53000 -        0x108d56047  libobjc-trampolines.dylib (779.1) <F68D1952-845D-34A4-858E-B195DBF4805D> /usr/lib/libobjc-trampolines.dylib
       0x10acc7000 -        0x10ad5593f  dyld (732.8) <42C11B81-6928-369F-B03E-D57355572700> /usr/lib/dyld
    0x7fff311c3000 -     0x7fff31febff7  com.apple.driver.AppleIntelKBLGraphicsGLDriver (14.0.69 - 14.0.0) <21D95D9C-EC49-3DF7-995F-1FB5F2197736> /System/Library/Extensions/AppleIntelKBLGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsGLDriver
    0x7fff31fec000 -     0x7fff323bfff6  com.apple.driver.AppleIntelKBLGraphicsMTLDriver (14.0.69 - 14.0.0) <B35FE2EB-B349-3709-8440-3A3E15AACEE6> /System/Library/Extensions/AppleIntelKBLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsMTLDriver
    0x7fff35042000 -     0x7fff35042fff  com.apple.Accelerate (1.11 - Accelerate 1.11) <956D070C-B522-3A08-891A-CAD6BA4082D1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff35043000 -     0x7fff35059ff7  libCGInterfaces.dylib (524.2) <7F08322A-4AA0-3677-91CD-9D1588BDBE39> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff3505a000 -     0x7fff356c5fdf  com.apple.vImage (8.1 - 524.2) <45A48EA9-49AA-33A0-B830-AF754BD01009> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff356c6000 -     0x7fff3592efff  libBLAS.dylib (1303) <112B19CC-925A-3E28-8B32-2002D30A37FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff3592f000 -     0x7fff35c1efdf  libBNNS.dylib (144.11.2) <A806AED9-837B-3C6C-AB0B-A41983C1CD07> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff35c20000 -     0x7fff35fc5fff  libLAPACK.dylib (1303) <5C248B39-F233-3074-A3A5-AF8F436FBF87> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff35fc6000 -     0x7fff35fdbff8  libLinearAlgebra.dylib (1303) <C21931B4-F6BD-324D-A2D9-F13EE8AFB29E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff35fdc000 -     0x7fff35fe1ff3  libQuadrature.dylib (7) <826897ED-B7AD-33DC-B9CB-F9787784F312> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff35fe2000 -     0x7fff36052fff  libSparse.dylib (103) <55467C29-2096-36AB-8A6D-5231A342809D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff36053000 -     0x7fff36065fef  libSparseBLAS.dylib (1303) <3244FCAF-A1FE-3248-AF22-BFB3E9D12555> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff36066000 -     0x7fff3623fffb  libvDSP.dylib (735) <E849AEB0-2995-38A4-B0C3-4ACEAF434D12> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff36240000 -     0x7fff362fbfd3  libvMisc.dylib (735) <D6248EC4-7772-37BB-87F7-9BAB7F5D31A0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff362fc000 -     0x7fff362fcfff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <79C1A1C7-E97A-3B7A-8737-444B402A7AA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff362fd000 -     0x7fff3635bffc  com.apple.Accounts (113 - 113) <33BCDB9E-2E27-3D12-B895-826145D156BC> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff364a1000 -     0x7fff3724dff9  com.apple.AppKit (6.9 - 1894) <1F4FBEF8-F3AC-31C2-BF04-381BC72E36D1> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff3729d000 -     0x7fff3729dfff  com.apple.ApplicationServices (48 - 50) <E6AA41A2-C79F-3304-9A61-5500561D876D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff3729e000 -     0x7fff37309fff  com.apple.ApplicationServices.ATS (377 - 493) <0EB214FD-E4D6-3045-A0A6-DCBCAE5F4165> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff373a2000 -     0x7fff373e0ffa  libFontRegistry.dylib (274) <1A3CE39E-14E7-338E-B1E5-7FA79B9B0065> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff3743b000 -     0x7fff3746aff7  com.apple.ATSUI (1.0 - 1) <9391C527-15CE-3108-8922-CF0C2A50C082> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
    0x7fff3746b000 -     0x7fff3746fff3  com.apple.ColorSyncLegacy (4.13.0 - 1) <EBA4F56C-3C82-3788-A168-3E77E116724B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff3750a000 -     0x7fff37560ffa  com.apple.HIServices (1.22 - 672) <C07B87F9-1D7B-3EC9-AC11-E97003ACDCD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff37561000 -     0x7fff3756ffff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <C808B42C-C139-34C1-997F-032992D89762> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff37570000 -     0x7fff375b5ff2  com.apple.print.framework.PrintCore (15 - 516) <43213BE5-C5E1-3AA8-8AFD-949AFF9FB2C5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff375b6000 -     0x7fff375c0fff  com.apple.QD (4.0 - 413) <EFC01D3C-9012-3FCF-9149-457F530A43F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff375c1000 -     0x7fff375ceff0  com.apple.speech.synthesis.framework (9.0.22 - 9.0.22) <CEA12143-A5DB-369B-B623-601CB9C9973B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff375cf000 -     0x7fff376afffa  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <83A9998E-0669-326F-BA80-350FC70912E6> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff376b1000 -     0x7fff376b1fff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <AF1C9FB7-8A3C-367A-B9AB-8BF267DF79A7> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff37a27000 -     0x7fff37d9dffe  com.apple.CFNetwork (1111 - 1111) <642753C5-5D26-3794-9A4C-4F63F226C01A> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff37e18000 -     0x7fff3810cff9  com.apple.HIToolbox (2.1.1 - 992.1) <0EA6CBC4-33C5-3BA7-B37A-1C9D5F103796> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff38157000 -     0x7fff3815dff7  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <819268CF-2A9D-3321-A826-535CB1F1E694> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff38305000 -     0x7fff384f0ff7  com.apple.ColorSync (4.13.0 - 3394.1.4.1) <32A1AEE9-C3AA-3535-9C72-D89955D2DE85> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff387dc000 -     0x7fff38cebffa  com.apple.audio.CoreAudio (5.0 - 5.0) <88827CE9-4055-3E5F-B7C1-4E9314E6D05C> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff38d3e000 -     0x7fff38d75ff2  com.apple.CoreBluetooth (1.0 - 1) <7FBF1402-074C-3192-95AD-5F25FE5ECD8A> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff38d76000 -     0x7fff39150fe8  com.apple.CoreData (120 - 969.3) <7E7B66BF-2A83-3D66-8674-7F58C369B61D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff39151000 -     0x7fff3925bff6  com.apple.CoreDisplay (1.0 - 107) <722EBF44-A989-3079-A03C-8421B10E441F> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff3925c000 -     0x7fff396dbff7  com.apple.CoreFoundation (6.9 - 1671.15) <BF8A8279-9C5E-37C6-8426-90C8182EFBDD> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff396dd000 -     0x7fff39d56ff8  com.apple.CoreGraphics (2.0 - 1348.4.4.7) <5790BE2E-049E-39BA-B191-611CF7ECD017> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff39d64000 -     0x7fff3a0c0ff2  com.apple.CoreImage (15.0.0 - 900.6) <12E02841-0FB0-30F5-8444-FD925B0DE49E> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff3a643000 -     0x7fff3a643fff  com.apple.CoreServices (1069.2 - 1069.2) <C5F7AABC-BADC-3331-A7D6-9B0A82A23E58> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff3a644000 -     0x7fff3a6c9ff7  com.apple.AE (838 - 838) <7295ED82-7087-3602-9DCA-4FE205F6499C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff3a6ca000 -     0x7fff3a9abfff  com.apple.CoreServices.CarbonCore (1217 - 1217) <7AA0ECB3-0993-3081-A9EC-0365EF72B24D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff3a9ac000 -     0x7fff3a9f9ff1  com.apple.DictionaryServices (1.2 - 321) <3D0FFBDE-E425-37C7-B780-39A3D024462A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff3a9fa000 -     0x7fff3aa02ff7  com.apple.CoreServices.FSEvents (1268.0.6 - 1268.0.6) <78D2AB1A-9053-3D32-8C18-C1DD31FF9400> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff3aa03000 -     0x7fff3ac3bff1  com.apple.LaunchServices (1069.2 - 1069.2) <68B4C10C-D536-33E9-9719-E7BA5B753F2B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff3ac3c000 -     0x7fff3acd4ff1  com.apple.Metadata (10.7.0 - 2066.12) <249EA615-8446-3A36-B6B7-ED613C8B8148> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff3acd5000 -     0x7fff3ad02ff7  com.apple.CoreServices.OSServices (1069.2 - 1069.2) <2FECF3BA-B785-35E2-85E9-2A2267801AA4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff3ad03000 -     0x7fff3ad6afff  com.apple.SearchKit (1.4.1 - 1.4.1) <0068BD72-CF2B-34E4-B461-002D5E56C31C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff3ad6b000 -     0x7fff3ad8fffd  com.apple.coreservices.SharedFileList (131 - 131) <61F62948-4109-38F0-BB91-5EBB6BEEAB10> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff3b0b7000 -     0x7fff3b26bffe  com.apple.CoreText (643.1.0.2 - 643.1.0.2) <83B0B75B-7B4A-315D-BC8B-8CB2E5D16EB8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff3b26c000 -     0x7fff3b2b0fff  com.apple.CoreVideo (1.8 - 334.0) <54CC4AD8-7F5C-37D5-A26D-9C8C8A72BD41> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff3b2b1000 -     0x7fff3b33eff1  com.apple.framework.CoreWLAN (13.0 - 1448) <ACDBCA1F-3B08-3FC7-94CC-0EBC442AD0C9> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff3b5e4000 -     0x7fff3b5eaff7  com.apple.DiskArbitration (2.7 - 2.7) <23104F29-F120-354B-97BE-4514A675BB14> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff3b7dd000 -     0x7fff3b8fffff  com.apple.FileProvider (253 - 253) <A87AADFF-4F14-3AD8-826B-98652EAC99AD> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
    0x7fff3b917000 -     0x7fff3bcdeff3  com.apple.Foundation (6.9 - 1671.15) <4BEAB72D-10AA-3009-B0F5-B82B4FE1C441> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff3bd4b000 -     0x7fff3bd7aff3  com.apple.GSS (4.0 - 2.0) <9520F096-C643-36D7-B8CB-3922B6E6D7EC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff3beb4000 -     0x7fff3bfccffd  com.apple.Bluetooth (7.0.0 - 7.0.0f8) <A80D68E6-051D-3C23-BF71-74F61CF98DD5> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff3c030000 -     0x7fff3c0d3ffb  com.apple.framework.IOKit (2.0.2 - 1726.11.1) <9E81E92C-7EC2-330F-B0AF-BBFD9D3E46F6> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff3c0d5000 -     0x7fff3c0e5ff4  com.apple.IOSurface (269.6 - 269.6) <1E49AD7D-6067-3599-B015-765047D58C13> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff3c158000 -     0x7fff3c2b3ffe  com.apple.ImageIO.framework (3.3.0 - 1972.3.4.5) <5A42B908-2C44-3E65-A465-C6A219264F01> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff3c2b4000 -     0x7fff3c2b7fff  libGIF.dylib (1972.3.4.5) <70153F11-6934-32DE-952B-290C6DDC5F1C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff3c2b8000 -     0x7fff3c372fe7  libJP2.dylib (1972.3.4.5) <A354ED67-BECA-3368-AA2A-4643BBDF6425> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff3c373000 -     0x7fff3c397fef  libJPEG.dylib (1972.3.4.5) <3DC331DE-874D-3347-94F6-DDBF2D793C9A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff3c615000 -     0x7fff3c62ffe7  libPng.dylib (1972.3.4.5) <23E2F503-7300-3C99-BD21-A6449610AD50> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff3c630000 -     0x7fff3c631fff  libRadiance.dylib (1972.3.4.5) <CB962B42-BBDB-3CE2-A120-BF9208FB0A13> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff3c632000 -     0x7fff3c67bfef  libTIFF.dylib (1972.3.4.5) <8E68D57C-6C0D-358E-9AF3-FD80D3378720> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff3da96000 -     0x7fff3daa8ff3  com.apple.Kerberos (3.0 - 1) <91DF5D16-E721-39F0-A77B-87DA6032F870> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff3daa9000 -     0x7fff3daa9fff  libHeimdalProxy.dylib (77) <51DB9CFB-808F-32E8-BB34-39F6702DBDED> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
    0x7fff3e64f000 -     0x7fff3e711ff1  com.apple.Metal (211.53 - 211.53) <A4C00DD5-73DD-3CFA-A515-EE9955CAD651> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff3e72e000 -     0x7fff3e76aff3  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <54EC6486-7A3E-39D3-B213-EFCC4110E511> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff3e76b000 -     0x7fff3e7f1fe6  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <144A9994-9AD3-340D-A890-C7F10DDEF489> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff3e7f2000 -     0x7fff3e817ff0  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <6F07D520-B36C-38D5-810B-A95BA5F79B04> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff3e818000 -     0x7fff3e82dffc  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <73DBE1D5-89C4-3410-95DA-A384BF9C2C1E> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
    0x7fff3e82e000 -     0x7fff3e98dff4  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <24338B34-481D-3564-917C-CD1DB243FD12> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff3e98e000 -     0x7fff3e9dcff7  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <75ABA9EB-752E-3E7E-BFBA-19806FB65924> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff3e9dd000 -     0x7fff3e9deff5  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <5EA47648-76E9-37CD-A2FC-A0083A769665> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff3f924000 -     0x7fff3f930ffe  com.apple.NetFS (6.0 - 4.0) <10ECF7E4-98A5-3751-B7AC-0AAAF0050777> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff3f931000 -     0x7fff3fa74ff6  com.apple.Network (1.0 - 1) <5C29B0D5-3811-32A8-9FF4-CA112F9526F4> /System/Library/Frameworks/Network.framework/Versions/A/Network
    0x7fff42492000 -     0x7fff4249afff  libcldcpuengine.dylib (2.12.7) <A9ECDF96-4888-35CB-9BEF-96D8A84E5106> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
    0x7fff4249b000 -     0x7fff424f3ff7  com.apple.opencl (3.5 - 3.5) <1874ACB3-DBF4-309A-A15D-ADB0C786C5B8> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff424f4000 -     0x7fff42510fff  com.apple.CFOpenDirectory (10.15 - 220.11.1) <6F4D018B-FA8B-35B2-8120-F8215DDA01CB> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff42511000 -     0x7fff4251cfff  com.apple.OpenDirectory (10.15 - 220.11.1) <170173C2-DF22-3D11-914F-465AA7C4760A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff42e77000 -     0x7fff42e79fff  libCVMSPluginSupport.dylib (17.10.22) <4527BE3A-74F4-3BEB-963F-A4C29B31CF4F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff42e7a000 -     0x7fff42e7ffff  libCoreFSCache.dylib (176.7) <BBD5A68D-2A0D-39C3-B103-12ABCD09CEE4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff42e80000 -     0x7fff42e84fff  libCoreVMClient.dylib (176.7) <E789527C-4043-3B2A-A64C-D0B3FA74586F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff42e85000 -     0x7fff42e8dff7  libGFXShared.dylib (17.10.22) <659DDDE1-B688-3B05-A317-56D81B537BD4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff42e8e000 -     0x7fff42e98fff  libGL.dylib (17.10.22) <FBF0CD8F-0052-3F47-A35B-74367687BD41> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff42e99000 -     0x7fff42ecefff  libGLImage.dylib (17.10.22) <A8F955E3-73CF-3C14-9DD7-AAB95233D569> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff42ecf000 -     0x7fff43061ff7  libGLProgrammability.dylib (17.10.22) <CA5ACCCC-4AF7-3D09-9C62-3D3045D1A4D2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fff43062000 -     0x7fff4309efff  libGLU.dylib (17.10.22) <674FC095-D986-3646-9E64-560075762B8D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff43ace000 -     0x7fff43addff7  com.apple.opengl (17.10.22 - 17.10.22) <3A6122C9-58FC-30F5-9591-C11C118EEE6B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff43ade000 -     0x7fff43c57ff7  GLEngine (17.10.22) <4C876C96-1ABF-3FD5-A430-3AB8CF7E61D2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
    0x7fff43c58000 -     0x7fff43c80fff  GLRendererFloat (17.10.22) <71A5712C-DAF3-3E9E-B3A9-A37E37A62247> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
    0x7fff44a96000 -     0x7fff44d13ff2  com.apple.QuartzCore (1.11 - 815.6.4.4) <F3F17EB9-8C1D-397F-A04E-33FB9633EA26> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff4589e000 -     0x7fff45be2ff9  com.apple.security (7.0 - 59306.11.20) <1B0AE660-0EC5-3497-ACE8-1AF2BB772BAB> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff45be3000 -     0x7fff45c6bff7  com.apple.securityfoundation (6.0 - 55236) <903B8365-1F35-3EB2-9821-9D2C440BE2DD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff45cc4000 -     0x7fff45cc8ff8  com.apple.xpc.ServiceManagement (1.0 - 1) <EF42F840-AF78-38A4-B6E1-FDF445CA3477> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff46ab2000 -     0x7fff46b1cff7  com.apple.SystemConfiguration (1.19 - 1.19) <C0C089C3-FC64-3107-B23E-4073E800C5D2> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff4a870000 -     0x7fff4a934ff7  com.apple.APFS (1412.11.7 - 1412.11.7) <71DAB6CE-FF14-373D-A183-F388C5D9FE84> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff4b94f000 -     0x7fff4b950ff1  com.apple.AggregateDictionary (1.0 - 1) <92777CAE-3C90-39A4-A8AE-0273A262F875> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff4be5d000 -     0x7fff4be7affc  com.apple.AppContainer (4.0 - 448.0.5) <D1A3FE36-30E9-3525-9856-AC442F6DA6B1> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x7fff4bece000 -     0x7fff4bedcff7  com.apple.AppSandbox (4.0 - 448.0.5) <2C9917BA-F75F-3C54-BC50-F41409E49C47> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff4c360000 -     0x7fff4c384ff3  com.apple.framework.Apple80211 (13.0 - 1453) <21BC8E1E-5642-3C65-B65B-2ABEFF1F5F61> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff4c4b8000 -     0x7fff4c4c7fdf  com.apple.AppleFSCompression (119 - 1.0) <725908C4-7585-3AB6-8A1A-691B8A9074B8> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff4c5c6000 -     0x7fff4c5d1ff7  com.apple.AppleIDAuthSupport (1.0 - 1) <6BD125A5-9820-3176-AB79-8B612CCD6956> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff4c613000 -     0x7fff4c65bfff  com.apple.AppleJPEG (1.0 - 1) <8051B4A3-7658-3003-82D1-41CA5C83CBEC> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff4ca34000 -     0x7fff4ca56ffb  com.apple.applesauce (1.0 - 16.22) <88BFDA72-8D13-3481-B4FA-62215F6E2E43> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff4cb16000 -     0x7fff4cb19ffb  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <7BFAE3D7-0ABE-3AC2-8B4D-B658CE5E8770> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff4cbb3000 -     0x7fff4cbc2ffd  com.apple.AssertionServices (1.0 - 223.11.1) <8A45663E-E9C8-3611-BD4C-710700920F14> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff4d749000 -     0x7fff4d984fff  com.apple.audio.AudioToolboxCore (1.0 - 1104.15.1) <3CD3860B-F736-3ED8-B32E-B8E1C3E3DD5D> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
    0x7fff4d985000 -     0x7fff4da9dff8  com.apple.AuthKit (1.0 - 1) <2650CED9-1F9F-3C76-A6B9-B0589F986830> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff4dc53000 -     0x7fff4dc5cff3  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <156CFAE3-07D0-332C-90BE-BB2E4C893C99> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff4dc5d000 -     0x7fff4dcfeff8  com.apple.backup.framework (1.11 - 1298.0.12) <5F4E8950-52AA-3B1F-B17C-69FBA940CD76> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff4dcff000 -     0x7fff4dd7efff  com.apple.BaseBoard (460 - 460) <E2B2C09D-7CA3-3BCF-AE84-E636CBC139CB> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff4de7e000 -     0x7fff4debaff7  com.apple.bom (14.0 - 219.1) <86A0EE62-9906-3085-B9B7-93C196526360> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff4ea25000 -     0x7fff4ea74fff  com.apple.ChunkingLibrary (302 - 302) <157DF88D-CCA1-3431-AB8F-E8B7A62D652C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff4f8fa000 -     0x7fff4f903ff7  com.apple.CommonAuth (4.0 - 2.0) <BDE39131-6389-3243-9C4A-DBA165B8A2F9> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff4f917000 -     0x7fff4f92eff1  com.apple.commonutilities (8.0 - 900) <A64C20B3-6860-3CCA-BB89-E8B9B589282A> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff50434000 -     0x7fff50453ff4  com.apple.analyticsd (1.0 - 1) <3C14ACAE-0E19-3589-8229-944F376C3E44> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
    0x7fff5099d000 -     0x7fff509adff3  com.apple.CoreEmoji (1.0 - 100) <9AB89183-635C-3859-9DC6-7BCE3A94D15E> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff50ff9000 -     0x7fff51063ff8  com.apple.CoreNLP (1.0 - 211) <8F08AEF6-A380-3811-BAF0-D80E7C84B5AD> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff514c9000 -     0x7fff514d1ff8  com.apple.CorePhoneNumbers (1.0 - 1) <0C242322-DB33-3764-9B44-74FA00AA3702> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff51c1b000 -     0x7fff51c3efff  com.apple.CoreSVG (1.0 - 129) <1716AD1F-A94F-309D-9598-C7B65F5965A0> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
    0x7fff51c3f000 -     0x7fff51c72fff  com.apple.CoreServicesInternal (446.4 - 446.4) <516D3C82-1CC5-3056-B56F-A8FD2FE662EC> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff51c73000 -     0x7fff51ca1ff7  com.apple.CSStore (1069.2 - 1069.2) <5E3C50AB-9C00-36F3-A986-CE033480CA8B> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
    0x7fff5219c000 -     0x7fff52223fff  com.apple.CoreSymbolication (11.0 - 64509.98.1) <38F1073A-4F61-3E6C-B207-9D7986BBF28E> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff522bb000 -     0x7fff523e7ff4  com.apple.coreui (2.1 - 606) <08A21870-C3C2-3442-A579-F12EC67D7449> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff523e8000 -     0x7fff52586ffd  com.apple.CoreUtils (6.0 - 600.30) <5D8E96F2-5EDB-33E3-92E9-EDC11F279A64> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff526ba000 -     0x7fff526cdff1  com.apple.CrashReporterSupport (10.13 - 15010) <94F94549-D6F8-35A5-8FEE-026E079C3B2C> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff52939000 -     0x7fff5294affa  com.apple.framework.DFRFoundation (1.0 - 244.3) <5D98DA1C-1A1F-306B-B5D3-47D61974613A> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff5294b000 -     0x7fff52950fff  com.apple.DSExternalDisplay (3.1 - 380) <B4AF8876-4037-3F07-BA7D-443AD3A4E680> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff529b9000 -     0x7fff52a34ff8  com.apple.datadetectorscore (8.0 - 659) <01C69537-D345-34D1-8893-94F3AAA6B739> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff52a80000 -     0x7fff52abeff0  com.apple.DebugSymbols (194 - 194) <C7DD2D58-B36F-3D74-8DA2-28493072DB31> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff52abf000 -     0x7fff52c1afff  com.apple.desktopservices (1.14 - 1281.0.2) <F89D1D78-6226-32D6-9CBC-1695A3B457EE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff5440d000 -     0x7fff54828ff9  com.apple.vision.FaceCore (4.3.0 - 4.3.0) <298DA6CC-F74E-3EA7-9FCF-EC9E71E51859> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff54e8b000 -     0x7fff54fc2ff4  libFontParser.dylib (277.2) <91E3DD75-1591-381C-BA72-F5023BA19955> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x7fff54fc3000 -     0x7fff54ff7fff  libTrueTypeScaler.dylib (277.2) <600A9E46-1BC4-3C7C-9710-4A17B1D56FEF> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
    0x7fff5505c000 -     0x7fff5506cff6  libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <BC77CDFE-7137-3700-81AB-ED812743F5D8> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
    0x7fff58530000 -     0x7fff58531fff  libmetal_timestamp.dylib (902.9.64) <0702E3D3-C6B3-3A66-A68F-3DB7CD2BB101> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib
    0x7fff59bcc000 -     0x7fff59bd7ff7  libGPUSupportMercury.dylib (17.10.22) <4E4E26EE-1612-37BD-B111-C96B05442282> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
    0x7fff59bd8000 -     0x7fff59bdefff  com.apple.GPUWrangler (4.1.46 - 4.1.46) <A003EAB8-8E5D-3078-9358-4C51412532B3> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff59ef8000 -     0x7fff59f1effb  com.apple.GenerationalStorage (2.0 - 311) <5344C508-95C9-31C1-8CB3-8A094C78B299> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff5afc5000 -     0x7fff5afd3ffb  com.apple.GraphVisualizer (1.0 - 100.1) <6E7B93E6-6B1F-3198-B3F8-E4F61632E1F5> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff5b166000 -     0x7fff5b1d9ffc  com.apple.Heimdal (4.0 - 2.0) <169702C2-B210-3258-947C-F8EE6B361C26> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff5d2e2000 -     0x7fff5d2eaff5  com.apple.IOAccelerator (438.1.23 - 438.1.23) <16F79A0A-5CE0-36A0-9053-5BBB96B1DAB3> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff5d2ed000 -     0x7fff5d303ff7  com.apple.IOPresentment (1.0 - 37) <C04FA14E-9FF0-3561-9ECA-B028E531885F> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff5d68a000 -     0x7fff5d6d4fff  com.apple.IconServices (436.1 - 436.1) <D109C662-7CAF-355D-8A45-65797DA293D9> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff5d890000 -     0x7fff5d896ffc  com.apple.InternationalSupport (1.0 - 44) <9BABC726-622F-3E35-A8C5-E722677A308C> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff5dad8000 -     0x7fff5daf8ff6  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <07895544-3389-3680-8BC1-F32DDA676FF3> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff5dc4f000 -     0x7fff5dd1cffd  com.apple.LanguageModeling (1.0 - 212) <A9F41C84-E574-3624-8C00-60F228E0FF97> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff5dd1d000 -     0x7fff5dd65ff7  com.apple.Lexicon-framework (1.0 - 70) <BEADF30C-37D3-3112-90DA-18A85406DBF3> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff5dd6c000 -     0x7fff5dd70ff6  com.apple.LinguisticData (1.0 - 349) <A392AD13-9AEB-31BB-A9ED-F29437CFBDB4> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff5f1a1000 -     0x7fff5f1edff7  com.apple.spotlight.metadata.utilities (1.0 - 2066.12) <989018A3-4BD0-3FD1-9A2D-88FD3A521452> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff5f1ee000 -     0x7fff5f2bcff5  com.apple.gpusw.MetalTools (1.0 - 1) <5ADCCE88-B380-3B73-957B-12983017E979> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff5f4ec000 -     0x7fff5f509ffc  com.apple.MobileKeyBag (2.0 - 1.0) <6B7EFE6E-5DBC-33B4-8F3E-12BC31A2EA2D> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff5f770000 -     0x7fff5f79eff7  com.apple.MultitouchSupport.framework (3400.35 - 3400.35) <C73D6E66-5FE9-3113-96DB-AF12AAC6B77E> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff5fc10000 -     0x7fff5fc1afff  com.apple.NetAuth (6.2 - 6.2) <90F9ADF4-8A9C-3603-8F55-24F8C472430B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff60606000 -     0x7fff60652ff7  com.apple.OTSVG (1.0 - 643.1.0.2) <315F5289-6294-3B4E-83D1-56C502F564F8> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff617c5000 -     0x7fff617d0ffe  com.apple.PerformanceAnalysis (1.243 - 243) <304B1D73-9BD4-3CED-A241-0458C4AF7062> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff617d1000 -     0x7fff617f9fff  com.apple.persistentconnection (1.0 - 1.0) <DBD9FD74-9F17-358B-A7E9-58B965A6E16C> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
    0x7fff640eb000 -     0x7fff64104fff  com.apple.ProtocolBuffer (1 - 274.20.7.15.1) <9CD0E8B7-F38D-35F3-B68B-C18AA5CDB993> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff64552000 -     0x7fff6457bff9  com.apple.RemoteViewServices (2.0 - 148) <C5D8E2F3-646D-37C8-B250-C97B5058E260> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff646de000 -     0x7fff64719ff7  com.apple.RunningBoardServices (1.0 - 223.11.1) <E9784D23-1EA5-3820-99C4-3B4474C803C5> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
    0x7fff6601c000 -     0x7fff6601fff9  com.apple.SecCodeWrapper (4.0 - 448.0.5) <1AD17827-6FC3-386F-BB05-CF43FA86050C> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x7fff66167000 -     0x7fff66288ff5  com.apple.Sharing (1476 - 1476) <AD1D84E5-6728-3B38-AC15-2C3822F4747C> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff67282000 -     0x7fff67579ff6  com.apple.SkyLight (1.600.0 - 440.7.10) <DF3DDAE0-4F75-3D6C-8BC9-52903CB668B2> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff67dc1000 -     0x7fff67dcefff  com.apple.SpeechRecognitionCore (6.0.85 - 6.0.85) <95F62538-2541-3D92-8171-D49D4071A4BB> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff685ee000 -     0x7fff685f7fff  com.apple.SymptomDiagnosticReporter (1.0 - 1238.0.2) <BE499ACD-18B5-3D45-95B3-BE9A98FB099D> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
    0x7fff688ab000 -     0x7fff688bbff3  com.apple.TCC (1.0 - 1) <DCE1D8C7-7BEB-3201-A0E5-38F012E6B1BC> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff68da5000 -     0x7fff68e6cff4  com.apple.TextureIO (3.10.9 - 3.10.9) <733D396B-AFB1-37F3-80E4-95F63A879849> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff68fda000 -     0x7fff68fdbfff  com.apple.TrustEvaluationAgent (2.0 - 33) <B691985E-2E58-37C3-B336-8882DE4BF19A> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff69cb2000 -     0x7fff69f0bff8  com.apple.UIFoundation (1.0 - 658.1) <603A4D49-EEEC-3FE1-9F65-49ACA14DC188> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff6aafa000 -     0x7fff6ab1afff  com.apple.UserManagement (1.0 - 1) <8A3367D2-C5E3-380E-BEE4-BA61A177DF92> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
    0x7fff6b8c8000 -     0x7fff6b9b2ff6  com.apple.ViewBridge (461 - 461) <96493EB6-90E4-3A30-BD97-401345AF67B2> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff6bb56000 -     0x7fff6bb57fff  com.apple.WatchdogClient.framework (1.0 - 67.11.1) <7B858D02-459E-3307-BCF3-7E18771BA4D9> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
    0x7fff6c732000 -     0x7fff6c735ffe  com.apple.dt.XCTTargetBootstrap (1.0 - 14805.2) <ED72AEE6-99F5-3A44-BDF9-50A5BD7B6719> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff6c7ae000 -     0x7fff6c7bcffd  com.apple.audio.caulk (1.0 - 32.3) <7FBF3E20-D360-348B-8FC5-77A90444B552> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
    0x7fff6cafb000 -     0x7fff6cafdff3  com.apple.loginsupport (1.0 - 1) <40974390-AFD7-3CEF-8B8D-6219BF916A4E> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff6cafe000 -     0x7fff6cb11ffd  com.apple.login (3.0 - 3.0) <F3105290-D037-3D94-B12F-37D4E0338FE4> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff6ce2f000 -     0x7fff6ce64ff2  libAudioToolboxUtility.dylib (1104.15.1) <221386C3-366B-37A7-8A75-4176678F97AA> /usr/lib/libAudioToolboxUtility.dylib
    0x7fff6ce6b000 -     0x7fff6cea0ff7  libCRFSuite.dylib (48) <45ADF347-A43F-3E95-BF26-94DC525DCC81> /usr/lib/libCRFSuite.dylib
    0x7fff6cea3000 -     0x7fff6ceadff3  libChineseTokenizer.dylib (34) <94E822B6-F850-33C5-888C-D5C8AE12122C> /usr/lib/libChineseTokenizer.dylib
    0x7fff6cf3a000 -     0x7fff6cf3cfff  libDiagnosticMessagesClient.dylib (112) <418D550B-C748-3D55-A6D5-0398E032F9F3> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff6cf80000 -     0x7fff6d137ff3  libFosl_dynamic.dylib (100.4) <F5583DFD-E3A1-3D6A-8698-613F7FA119A0> /usr/lib/libFosl_dynamic.dylib
    0x7fff6d15e000 -     0x7fff6d164ff3  libIOReport.dylib (54) <491518A9-84B3-3066-905F-BFF5D21EB760> /usr/lib/libIOReport.dylib
    0x7fff6d244000 -     0x7fff6d24bfff  libMatch.1.dylib (36) <AA3A44D7-268D-3B0A-AAD5-15090FF127D9> /usr/lib/libMatch.1.dylib
    0x7fff6d27b000 -     0x7fff6d29aff7  libMobileGestalt.dylib (826.1.1) <74BEEAE6-2825-33F7-B63B-4C2A27974F30> /usr/lib/libMobileGestalt.dylib
    0x7fff6d401000 -     0x7fff6d402ff3  libSystem.B.dylib (1281) <66742D2E-591A-32B2-8E92-4A54BEE843F6> /usr/lib/libSystem.B.dylib
    0x7fff6d492000 -     0x7fff6d493fff  libThaiTokenizer.dylib (3) <D2A89215-5281-310F-8C75-47F1E6A14F62> /usr/lib/libThaiTokenizer.dylib
    0x7fff6d4ab000 -     0x7fff6d4c1fff  libapple_nghttp2.dylib (1.39.2) <0A685DAA-9FC6-3C87-83F1-1D11FC87C1F4> /usr/lib/libapple_nghttp2.dylib
    0x7fff6d4f6000 -     0x7fff6d568ff7  libarchive.2.dylib (72.11.2) <8636AE5A-0CBB-306C-8A4B-2E612D2D6B13> /usr/lib/libarchive.2.dylib
    0x7fff6d569000 -     0x7fff6d5fffc5  libate.dylib (2.0.9) <9AE62394-6ED6-3B26-B53A-75FEA0389EB5> /usr/lib/libate.dylib
    0x7fff6d603000 -     0x7fff6d603ff3  libauto.dylib (187) <AACF68BC-9A05-36F8-8F60-78951422E090> /usr/lib/libauto.dylib
    0x7fff6d6c1000 -     0x7fff6d6d1fff  libbsm.0.dylib (60) <F03FA480-0B22-3300-833F-03E88F43C504> /usr/lib/libbsm.0.dylib
    0x7fff6d6d2000 -     0x7fff6d6defff  libbz2.1.0.dylib (44) <8B522880-BEF8-3668-B785-F2AB4DE8F366> /usr/lib/libbz2.1.0.dylib
    0x7fff6d6df000 -     0x7fff6d732fff  libc++.1.dylib (800.6) <328FB687-2363-38B1-AC11-11736925C775> /usr/lib/libc++.1.dylib
    0x7fff6d733000 -     0x7fff6d747fff  libc++abi.dylib (800.7) <02753D3D-91C6-3670-8B5D-EBE040B516FC> /usr/lib/libc++abi.dylib
    0x7fff6d748000 -     0x7fff6d748ffb  libcharset.1.dylib (59) <12D52FA5-EBCA-3F3C-A269-1095F268F92F> /usr/lib/libcharset.1.dylib
    0x7fff6d749000 -     0x7fff6d75affb  libcmph.dylib (8) <7DD1F726-F3E3-341A-AFAC-83E9A470883C> /usr/lib/libcmph.dylib
    0x7fff6d75b000 -     0x7fff6d772fe7  libcompression.dylib (87) <10B82884-BE1A-3A36-9B38-3C92AF566D3E> /usr/lib/libcompression.dylib
    0x7fff6da34000 -     0x7fff6da4afff  libcoretls.dylib (167) <1C64EA6F-8E0D-319D-99D4-026150EEB2B2> /usr/lib/libcoretls.dylib
    0x7fff6da4b000 -     0x7fff6da4cffb  libcoretls_cfhelpers.dylib (167) <724B0181-4D9E-3D2F-B1AB-B4FD6A7BAB2C> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff6dbef000 -     0x7fff6dce9fff  libcrypto.35.dylib (47.11.1) <DAE379C6-E19A-3E15-B243-D4610C8E9B47> /usr/lib/libcrypto.35.dylib
    0x7fff6e00a000 -     0x7fff6e069fff  libcups.2.dylib (483) <0C9BCEA5-628B-31E5-8609-00F811CAF505> /usr/lib/libcups.2.dylib
    0x7fff6e175000 -     0x7fff6e175ff3  libenergytrace.dylib (21) <E42B4AFF-3FAC-3CE4-A7BF-48621458B356> /usr/lib/libenergytrace.dylib
    0x7fff6e176000 -     0x7fff6e18fff7  libexpat.1.dylib (19) <A0E2F6F3-BFFA-3D59-872F-F093487F0B42> /usr/lib/libexpat.1.dylib
    0x7fff6e19d000 -     0x7fff6e19fff7  libfakelink.dylib (149) <FC5712CB-2188-3DAD-8DD4-CC3ECCA3F9A8> /usr/lib/libfakelink.dylib
    0x7fff6e1ae000 -     0x7fff6e1b3fff  libgermantok.dylib (24) <93E95178-E436-3611-A4A3-CB1D42CF4064> /usr/lib/libgermantok.dylib
    0x7fff6e1b4000 -     0x7fff6e1b8ff7  libheimdal-asn1.dylib (564.0.3) <51551E63-5AC6-30D3-B178-8BDA782C80EA> /usr/lib/libheimdal-asn1.dylib
    0x7fff6e1b9000 -     0x7fff6e2a9ff7  libiconv.2.dylib (59) <1A648E74-25D4-3F9B-94C4-10B58AD091B7> /usr/lib/libiconv.2.dylib
    0x7fff6e2aa000 -     0x7fff6e502ff7  libicucore.A.dylib (64232.0.1) <88E47471-605C-3C86-871B-5D2F4628A936> /usr/lib/libicucore.A.dylib
    0x7fff6e51c000 -     0x7fff6e51dfff  liblangid.dylib (133) <78DF87EE-CDCE-3628-B239-56743169BC93> /usr/lib/liblangid.dylib
    0x7fff6e51e000 -     0x7fff6e536ffb  liblzma.5.dylib (16) <D416FC97-76EC-38B5-A134-85DDFEA9D297> /usr/lib/liblzma.5.dylib
    0x7fff6e54e000 -     0x7fff6e5f5fff  libmecab.dylib (879) <DD60E6AA-154E-3294-B2C0-3277B754F3BC> /usr/lib/libmecab.dylib
    0x7fff6e5f6000 -     0x7fff6e855fe9  libmecabra.dylib (879) <B5BE574C-DD3A-336D-87A3-202CE7803A45> /usr/lib/libmecabra.dylib
    0x7fff6ebb6000 -     0x7fff6ebe5ff7  libncurses.5.4.dylib (57) <2AD2FDD9-846A-3A79-ADCC-008E8B227BD6> /usr/lib/libncurses.5.4.dylib
    0x7fff6ed14000 -     0x7fff6f186ff6  libnetwork.dylib (1880.11.2) <CC02BF51-A056-3656-B735-E8CD0F4B7B15> /usr/lib/libnetwork.dylib
    0x7fff6f224000 -     0x7fff6f255fe6  libobjc.A.dylib (779.1) <722C0959-69B8-3843-B5EA-CDD8FAA91D5E> /usr/lib/libobjc.A.dylib
    0x7fff6f268000 -     0x7fff6f26cfff  libpam.2.dylib (25) <86317F48-E926-30AC-AE9F-ABB33543FBC8> /usr/lib/libpam.2.dylib
    0x7fff6f26f000 -     0x7fff6f2a2ff7  libpcap.A.dylib (89.11.2) <65A8EBD2-F059-353B-9538-20D1314EFD89> /usr/lib/libpcap.A.dylib
    0x7fff6f324000 -     0x7fff6f33cff7  libresolv.9.dylib (67) <06480BFC-6372-3225-B77A-F5AC9969DB64> /usr/lib/libresolv.9.dylib
    0x7fff6f33e000 -     0x7fff6f381ff7  libsandbox.1.dylib (1217.11.16) <B0829BE0-60A4-3AE0-AF9D-50EED4675AF6> /usr/lib/libsandbox.1.dylib
    0x7fff6f397000 -     0x7fff6f584ff7  libsqlite3.dylib (308.1) <7033723E-DD65-3AA3-ADCA-8746F7BAD75D> /usr/lib/libsqlite3.dylib
    0x7fff6f7d3000 -     0x7fff6f7d6ffb  libutil.dylib (57) <844B7887-09B3-3D12-ACDE-C4EB8F53DC62> /usr/lib/libutil.dylib
    0x7fff6f7d7000 -     0x7fff6f7e4fff  libxar.1.dylib (420) <E0D7C0A6-76EC-3682-A393-6596D4986269> /usr/lib/libxar.1.dylib
    0x7fff6f7ea000 -     0x7fff6f8ccff7  libxml2.2.dylib (32.12) <C0A87484-D334-3B50-8F8A-A9C63295F49E> /usr/lib/libxml2.2.dylib
    0x7fff6f8d0000 -     0x7fff6f8f8fff  libxslt.1.dylib (16.6) <CD9E79B0-159A-3055-B62A-57AB2B445912> /usr/lib/libxslt.1.dylib
    0x7fff6f8f9000 -     0x7fff6f90bfff  libz.1.dylib (76) <3FC3FC3E-ABF3-3167-9078-B54C952608B4> /usr/lib/libz.1.dylib
    0x7fff70370000 -     0x7fff70375ff7  libcache.dylib (83) <8EC69760-6DAA-3068-9372-F1D554C548E5> /usr/lib/system/libcache.dylib
    0x7fff70376000 -     0x7fff70381ff7  libcommonCrypto.dylib (60165) <698BE754-137D-361D-B826-57B8DD969E4A> /usr/lib/system/libcommonCrypto.dylib
    0x7fff70382000 -     0x7fff70389fff  libcompiler_rt.dylib (101.2) <0BE7F119-C9C2-3612-A3F4-2336D4444476> /usr/lib/system/libcompiler_rt.dylib
    0x7fff7038a000 -     0x7fff70393ff7  libcopyfile.dylib (166) <B5E73B1C-0BCF-33FE-80A1-D9E3BA3033D4> /usr/lib/system/libcopyfile.dylib
    0x7fff70394000 -     0x7fff7042bfc3  libcorecrypto.dylib (866.0.10) <58344B13-CD10-3697-A516-6F5B06DD1EB7> /usr/lib/system/libcorecrypto.dylib
    0x7fff70542000 -     0x7fff70583ff0  libdispatch.dylib (1173.0.3) <F4260D89-F67D-30CB-AF61-7ED25CB687DB> /usr/lib/system/libdispatch.dylib
    0x7fff70584000 -     0x7fff705b9fff  libdyld.dylib (732.8) <98960E27-A08B-36DA-A5CB-8538B2D6757E> /usr/lib/system/libdyld.dylib
    0x7fff705ba000 -     0x7fff705baffb  libkeymgr.dylib (30) <682B41BC-BDC2-38D5-8820-87099606FA12> /usr/lib/system/libkeymgr.dylib
    0x7fff705bb000 -     0x7fff705c7ff7  libkxld.dylib (6153.11.26) <53BE9630-BDC8-3649-8709-7A4F86777B1A> /usr/lib/system/libkxld.dylib
    0x7fff705c8000 -     0x7fff705c8ff7  liblaunch.dylib (1738.11.1) <7FE11F0D-65BC-3726-B1DD-E84F329193E0> /usr/lib/system/liblaunch.dylib
    0x7fff705c9000 -     0x7fff705ceff7  libmacho.dylib (949.0.1) <163DFE06-2FAD-3CBC-80EF-C38EED6AEA52> /usr/lib/system/libmacho.dylib
    0x7fff705cf000 -     0x7fff705d1ff3  libquarantine.dylib (110.0.4) <C8F39330-8CB5-30B0-8564-96453DCEFAD7> /usr/lib/system/libquarantine.dylib
    0x7fff705d2000 -     0x7fff705d3ff7  libremovefile.dylib (48) <FB280185-B5ED-3F08-B08A-A378865C1398> /usr/lib/system/libremovefile.dylib
    0x7fff705d4000 -     0x7fff705ebfff  libsystem_asl.dylib (377.0.1) <30CE9DAF-B1FA-3510-832B-F1CE19933ED7> /usr/lib/system/libsystem_asl.dylib
    0x7fff705ec000 -     0x7fff705ecfff  libsystem_blocks.dylib (74) <E0B8C825-E62B-357E-A2A0-13776F0A0F8C> /usr/lib/system/libsystem_blocks.dylib
    0x7fff705ed000 -     0x7fff70674ff7  libsystem_c.dylib (1353.11.2) <2A5BFAFE-8214-3B35-AD46-C07A1A8B8941> /usr/lib/system/libsystem_c.dylib
    0x7fff70675000 -     0x7fff70678fff  libsystem_configuration.dylib (1061.0.2) <56174463-22ED-337F-B0D4-94995DCDB9B7> /usr/lib/system/libsystem_configuration.dylib
    0x7fff70679000 -     0x7fff7067cff7  libsystem_coreservices.dylib (114) <01695913-028E-3AE1-8D4E-2B2769109811> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff7067d000 -     0x7fff70684fff  libsystem_darwin.dylib (1353.11.2) <4CE52C63-87AA-3C6D-899F-8C983E5FC061> /usr/lib/system/libsystem_darwin.dylib
    0x7fff70685000 -     0x7fff7068cffb  libsystem_dnssd.dylib (1096.0.2) <DC7381E8-F09F-3441-8267-9B8F50A0EBA9> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff7068d000 -     0x7fff7068effb  libsystem_featureflags.dylib (17) <DBCA4AA2-CA05-38D5-AB4B-BE0F3E09BB8B> /usr/lib/system/libsystem_featureflags.dylib
    0x7fff7068f000 -     0x7fff706dcff7  libsystem_info.dylib (538) <9F9D6368-A11E-32F1-9BB5-C153F42EFED8> /usr/lib/system/libsystem_info.dylib
    0x7fff706dd000 -     0x7fff70709fff  libsystem_kernel.dylib (6153.11.26) <4CE9D54A-A975-348E-B878-EE74EDFC956B> /usr/lib/system/libsystem_kernel.dylib
    0x7fff7070a000 -     0x7fff70751ff7  libsystem_m.dylib (3178) <4F516261-0C0E-3105-AF35-EF39D6347B50> /usr/lib/system/libsystem_m.dylib
    0x7fff70752000 -     0x7fff70779fff  libsystem_malloc.dylib (283) <02925539-3CBA-39EB-BA6B-9A936CFA0BF8> /usr/lib/system/libsystem_malloc.dylib
    0x7fff7077a000 -     0x7fff70787ff3  libsystem_networkextension.dylib (1095.11.9) <8B5EE189-E3D1-31FD-878F-50286B6E7047> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff70788000 -     0x7fff70791fff  libsystem_notify.dylib (241) <89381127-2A07-3F07-B865-358FACCF9102> /usr/lib/system/libsystem_notify.dylib
    0x7fff70792000 -     0x7fff7079bfe7  libsystem_platform.dylib (220) <90E508E4-46D8-33FF-8552-DDAA079977A0> /usr/lib/system/libsystem_platform.dylib
    0x7fff7079c000 -     0x7fff707a6fff  libsystem_pthread.dylib (416.11.1) <2EA6F95F-F264-30B6-8AF2-24197B5AED84> /usr/lib/system/libsystem_pthread.dylib
    0x7fff707a7000 -     0x7fff707abffb  libsystem_sandbox.dylib (1217.11.16) <51129CBB-BC46-37F1-A1B5-ECFA9530704D> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff707ac000 -     0x7fff707aefff  libsystem_secinit.dylib (62.0.4) <A48D9AF3-75F2-3331-A0C8-0A23771F4AC7> /usr/lib/system/libsystem_secinit.dylib
    0x7fff707af000 -     0x7fff707b6ffb  libsystem_symptoms.dylib (1238.0.2) <08E8CF75-5F77-3475-A48E-A01CBDF09173> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff707b7000 -     0x7fff707cdff2  libsystem_trace.dylib (1147.0.3) <5836645E-9862-326D-AB3B-A19E76BE29B9> /usr/lib/system/libsystem_trace.dylib
    0x7fff707cf000 -     0x7fff707d4ffb  libunwind.dylib (35.4) <F5AE1D43-7C5F-3BA2-94D3-E769F82C0F61> /usr/lib/system/libunwind.dylib
    0x7fff707d5000 -     0x7fff70809ff6  libxpc.dylib (1738.11.1) <2E9076CD-6C0E-38B6-8403-B2DDCE125FBF> /usr/lib/system/libxpc.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 2353
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=528.2M resident=0K(0%) swapped_out_or_unallocated=528.2M(100%)
Writable regions: Total=102.4M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=102.4M(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               128K        1 
Activity Tracing                   256K        1 
CG backing stores                 1760K        2 
CG image                            36K        3 
CoreAnimation                       16K        2 
CoreImage                           24K        2 
CoreUI image data                  536K        4 
Dispatch continuations            12.0M        1 
Foundation                           4K        1 
Kernel Alloc Once                    8K        1 
MALLOC                            76.4M       48 
MALLOC guard page                   32K        7 
Memory Tag 242                      12K        1 
STACK GUARD                       56.0M        8 
Stack                             11.6M        8 
VM_ALLOCATE                         88K       10 
__DATA                            24.7M      270 
__DATA_CONST                        32K        4 
__FONT_DATA                          4K        1 
__GLSLBUILTINS                    5176K        1 
__LINKEDIT                       348.4M        6 
__OBJC_RO                         31.8M        1 
__OBJC_RW                         1764K        2 
__TEXT                           179.8M      269 
__UNICODE                          564K        1 
mapped file                       57.2M       19 
shared memory                      640K       15 
===========                     =======  ======= 
TOTAL                            808.7M      689 

Model: Macmini8,1, BootROM 1037.0.78.0.0 (iBridge: 17.16.10572.0.0,0), 6 processors, 6-Core Intel Core i5, 3 GHz, 8 GB, SMC 
Graphics: kHW_IntelUHDGraphics630Item, Intel UHD Graphics 630, spdisplays_builtin
Memory Module: BANK 0/ChannelA-DIMM0, 4 GB, DDR4, 2667 MHz, SK Hynix, HMA851S6CJR6N-VK
Memory Module: BANK 2/ChannelB-DIMM0, 4 GB, DDR4, 2667 MHz, SK Hynix, HMA851S6CJR6N-VK
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x7BF), wl0: Jul 24 2019 00:02:16 version 9.30.357.3.32.5.33 FWID 01-22b80374
Bluetooth: Version 7.0.0f8, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en1
PCI Card: pci1b73,1100, sppci_usbxhci, Thunderbolt@71,0,0
USB Device: Pegasus
USB Device: Rugged RAID Pro
USB Device: Rugged RAID Pro
USB Device: USB 3.1 Bus
USB Device: Scarlett 2i2 USB
USB Device: Pegasus
USB Device: RaidConfig
USB Device: eLicenser
USB Device: USB 3.0 Bus
USB Device: USB3.1 Hub
USB Device: Hub
USB Device: LG UltraFine Display Camera
USB Device: USB2.1 Hub
USB Device: Hub
USB Device: USB Controls
USB Device: USB Audio
USB Device: Apple T2 Bus
USB Device: Headset
USB Device: Apple T2 Controller
Thunderbolt Bus: Mac mini, Apple Inc., 47.1
Thunderbolt Device: UltraFine 5K, LG Electronics, 1, 9.4
Thunderbolt Bus: Mac mini, Apple Inc., 47.1

--
Visit CLUBCATT.com for cat shirts, cat mugs, puzzles, art and more <-- coupon code ALLEGRO4LIFE at checkout and get $3 off any order of 3 or more items!

AllegroFlareAllegroFlare DocsAllegroFlare GitHub

MiquelFire
Member #3,110
January 2003
avatar

I don't have a Mac so I can't help, but from what you're saying, I wonder if some random library Allegro uses was updated and is broken (at least with how Allegro uses it)

---
Febreze (and other air fresheners actually) is just below perfumes/colognes, and that's just below dead skunks in terms of smells that offend my nose.
MiquelFire.red
If anyone is of the opinion that there is no systemic racism in America, they're either blind, stupid, or racist too. ~Edgar Reynaldo

MikiZX
Member #17,092
June 2019

From what I've heard and for what is worth, though possibly not even remotely connected but, OSX Catalina upgrade is apparently breaking a lot of DAW software at the moment - not sure which is the reason though (would it be audio processing, threads, graphics, etc...).
From the net, OSX Catalina apparently "dramatically tightens security and removes 32-bit compatibility".
With a checklist of things that might be an issue: https://cdm.link/2019/09/macos-catalina-will-be-incompatible-with-much-of-your-music-software-heres-what-to-know/

Elias
Member #358
May 2000

--
"Either help out or stop whining" - Evert

Mark Oates
Member #1,146
March 2001
avatar

Wow. :o

Elias, do you need money.

Can I pay you money?

_____

I pulled down the branch locally and it works in my simplest example.

I'm running into a more amateur problem and am not sure how to get the headers to make during build. Specifically, include/allegro5/color.h exists, but allegro_color.h does not appear to have been created. Should it have been created in build/include/allegro5/allegro_color.h as part of that process or should it be in include/allegro5/allegro_color.h? I seem to have missed a step.

--
Visit CLUBCATT.com for cat shirts, cat mugs, puzzles, art and more <-- coupon code ALLEGRO4LIFE at checkout and get $3 off any order of 3 or more items!

AllegroFlareAllegroFlare DocsAllegroFlare GitHub

Elias
Member #358
May 2000

Did you run make install? Or if you are using Xcode, the install target? Not on OSX right now so can't check the exact name.

Basically the build process will leave any addon headers in their respective folders, so you'd need to add a -I option for each addon (I think we do that when building the examples). The install target is what copies them all into a single folder.

--
"Either help out or stop whining" - Evert

Mark Oates
Member #1,146
March 2001
avatar

make install, Ok I missed that step. That works!

Binaries work! 🎉🐘🐘🐘

In my mind, the reason I didn't do the make install is because I didn't want to "install" that allegro version on my system. I wanted to have that build contaminated to that specific folder.

Is there an preferred step or process to set the build/install target so that it doesn't install into system directories?

--
Visit CLUBCATT.com for cat shirts, cat mugs, puzzles, art and more <-- coupon code ALLEGRO4LIFE at checkout and get $3 off any order of 3 or more items!

AllegroFlareAllegroFlare DocsAllegroFlare GitHub

Edgar Reynaldo
Major Reynaldo
May 2007
avatar

Go to: