kmkolasinski / AwesomeBump

AwesomeBump is a free program written using Qt library designed to generate normal, height, specular or ambient occlusion textures from a single image. Since the image processing is done in 99% on GPU the program runs very fast and all the parameters can be changed in real time. AB was made to be a new alternative to known gimp plugin called Insane Bump.
GNU General Public License v3.0
1.67k stars 179 forks source link

Mac OS issues #140

Closed bgulanowski closed 5 years ago

bgulanowski commented 6 years ago

I am running on Mac and experiencing previously reported problems.

I initially had a problem building the project, but fixed it by making a change to PEG.pri in QtnProperty:

-peg.commands = $$PEG_TOOL ${QMAKE_FILE_IN}
+peg.commands = DYLD_FRAMEWORK_PATH=/Applications/Qt/5.5/clang_64/lib $$PEG_TOOL ${QMAKE_FILE_IN}

This fixes a linker error when attempting to run QtnPEG. The linker doesn't know where the clang OS X frameworks are. Perhaps there is a better way to communicate this information to the build tools?

Anyway, there are many many OpenGL errors when trying to run the app.

I made a couple of changes to make progress, but I got stuck here:

        scr_tex_id = glWidget_ptr->bindTexture(image,GL_TEXTURE_2D);

in FBOImageProporties.init(QImage& image) line 469.

Error:

[23/02/2018 17:48:59] {Debug}        OpenGL error "INVALID_ENUM" 500 at glBindTexture(GL_TEXTURE_2D, 0) called from static void FBOImages::create(QGLFramebufferObject *&, int, int, GLuint) in file /Users/Shared/Code/Github/AwesomeBump/Sources/CommonObjects.h line 341 

(Note that the line of code is not actually to blame; it's the first line following that checks the error explicitly. I called glGetError() from the debugger to determine the specific line.)

This happens 8 times when setting default images in MainWindow::initializeApp(), lines 431 to 438. And then once more from somewhere else. The actual images look OK. Not sure why binding a texture would fail.

bgulanowski commented 6 years ago

The next failure is:

[23/02/2018 18:06:13] {Debug}        OpenGL error "INVALID_OPERATION" 502 at glEnableVertexAttribArray(0) called from void GLImage::makeScreenQuad() in file /Users/Shared/Code/Github/AwesomeBump/Sources/glimageeditor.cpp line 2813 
bgulanowski commented 6 years ago

The second failure, according to the OpenGL reference for GL4, says that the error is because no vertex array object is bound. I definitely could not find any explicit invocation of glBindVertexArray() (or glGenVertexArrays()). Adding

    if (vao == 0) {
        GLCHK(glGenVertexArrays(1, &vao));
    }
    GLCHK(glBindVertexArray(vao));

seems to make that error go away.

Still no idea why binding a texture is failing.

eljeffeg commented 5 years ago

@bgulanowski you have a fork with your changes? I'm having the same issues with building AwesomeBump.

bgulanowski commented 5 years ago

@jeffg2k sorry, no. I gave up without solving the issues.

kmkolasinski commented 5 years ago

Guys did you try to build on branch: https://github.com/kmkolasinski/AwesomeBump/tree/switch_to_core_profile

In this branch I have managed to switch to openGL core profile.

eljeffeg commented 5 years ago

@kmkolasinski I just gave that branch a try, but the trick @bgulanowski mentioned above by editing PEG.pri no longer works on that one.

dyld: Library not loaded: @rpath/QtCore.framework/Versions/5/QtCore

I used brew to install qt, so my path is /usr/local/opt/qt/lib and I put that in the PEG.pri but it's still not working. The master branch does compile if I make that change, but that branch just crashes when I launch the app. Would love to try this branch, but can't get it built. Also, in the new branch the unixBuildScript.sh should check to see if a path was set in MY_QT_PATH before overwriting it with the Darwin setup.

Also, I tried deleting the QtnProperty directory so that it would download and rebuild it, but it extracts into the current directory, not /Sources/utils/QtnProperty. I tried to navigate there and run, but it still doesn't find it.

./unixBuildScript.sh: line 48: popd: directory stack empty ./unixBuildScript.sh: line 51: Sources/utils/QtnProperty/bin-osx/QtnPEG: No such file or directory

kmkolasinski commented 5 years ago

Can you enter the QtnProperty folder and try to compile the sources inside? Firstly change the Property.pro file to:

TEMPLATE   = subdirs
SUBDIRS   += Core\
             PEG\
             PropertyWidget

PEG.depends = Core
Tests.depends = Core
PropertyWidget.depends = Core
Demo.depends = Core
Demo.depends = PropertyWidget

and Config.pri:

macx:BIN_DIR = ../bin-osx
win32:BIN_DIR = ../bin-win
linux:BIN_DIR = ../bin-linux

isEmpty(BIN_DIR):MESSAGE(CRITICAL, "Only mac/win32/linux supported")
else:DESTDIR = $$BIN_DIR

debug: DBG = dgb-
else: DBG = rel-

CONFIG += c++11

Then install flex and bison (on Ubuntu it is just apt-get install flex bison), then run:

qmake
make

This is first thing we should fix in order to build AB from source in your case. If everything went ok, you should have generated libraries in bin-osx folder.

eljeffeg commented 5 years ago

@kmkolasinski I was able to rebuild QtnProperty following your instructions. After that, ./unixBuildScript.sh ran and completed. However, after clicking on the AwesomeBump.app, the application crashed. Here is the dump report - maybe it will be of use.

Process: AwesomeBump [9614] Path: /Users/USER/Documents/*/AwesomeBump.app/Contents/MacOS/AwesomeBump Identifier: com.domain.AwesomeBump Version: 0 Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: AwesomeBump [9614] User ID: 503

Date/Time: 2019-01-26 15:27:17.598 -0500 OS Version: Mac OS X 10.14.2 (18C54) Report Version: 12 Anonymous UUID: 1394A1C3-CA29-54DE-9D8E-0FCE4BEAFD17

Sleep/Wake UUID: A1D6A5E1-1B86-491A-9694-A2D55E6E23DE

Time Awake Since Boot: 360000 seconds Time Since Wake: 33000 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 Exception Note: EXC_CORPSE_NOTIFY

Termination Signal: Segmentation fault: 11 Termination Reason: Namespace SIGNAL, Code 0xb Terminating Process: exc handler [9614]

VM Regions Near 0: --> __TEXT 0000000101031000-000000010142f000 [ 4088K] r-x/rwx SM=COW /Users/USER/Documents/*/AwesomeBump.app/Contents/MacOS/AwesomeBump

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 com.domain.AwesomeBump 0x0000000101036129 GLWidget::initializeGL() + 2537 1 org.qt-project.QtOpenGL 0x0000000101550bc8 QGLWidget::glInit() + 120 2 org.qt-project.QtOpenGL 0x000000010155073e QGLWidget::resizeEvent(QResizeEvent) + 158 3 org.qt-project.QtWidgets 0x00000001015e6caf QWidget::event(QEvent) + 1135 4 org.qt-project.QtWidgets 0x00000001015aaf8d QApplicationPrivate::notify_helper(QObject, QEvent) + 269 5 org.qt-project.QtWidgets 0x00000001015ac392 QApplication::notify(QObject, QEvent) + 594 6 org.qt-project.QtCore 0x000000010226bfb4 QCoreApplication::notifyInternal2(QObject, QEvent) + 212 7 org.qt-project.QtWidgets 0x0000000101606b57 0x10159b000 + 441175 8 org.qt-project.QtWidgets 0x0000000101604e42 0x10159b000 + 433730 9 org.qt-project.QtWidgets 0x00000001015aaf8d QApplicationPrivate::notify_helper(QObject, QEvent) + 269 10 org.qt-project.QtWidgets 0x00000001015ac392 QApplication::notify(QObject, QEvent) + 594 11 org.qt-project.QtCore 0x000000010226bfb4 QCoreApplication::notifyInternal2(QObject, QEvent) + 212 12 org.qt-project.QtGui 0x0000000101b7635c QGuiApplicationPrivate::processExposeEvent(QWindowSystemInterfacePrivate::ExposeEvent) + 236 13 org.qt-project.QtGui 0x0000000101b54f03 bool QWindowSystemInterfacePrivate::handleWindowSystemEvent(QWindowSystemInterfacePrivate::WindowSystemEvent) + 115 14 org.qt-project.QtGui 0x0000000101b5bb12 void QWindowSystemInterface::handleExposeEvent(QWindow, QRegion const&) + 178 15 libqcocoa.dylib 0x000000010454f84c 0x104536000 + 104524 16 libqcocoa.dylib 0x0000000104556af0 0x104536000 + 133872 17 com.apple.QuartzCore 0x00007fff4d1e28f4 -[CALayer display] + 175 18 com.apple.AppKit 0x00007fff3f89617a _NSBackingLayerDisplay + 531 19 com.apple.AppKit 0x00007fff3f87a6e3 -[_NSViewBackingLayer display] + 811 20 com.apple.QuartzCore 0x00007fff4d1e2568 CA::Layer::display_if_needed(CA::Transaction) + 634 21 com.apple.QuartzCore 0x00007fff4d1d07b7 CA::Context::commit_transaction(CA::Transaction) + 319 22 com.apple.QuartzCore 0x00007fff4d1d0088 CA::Transaction::commit() + 576 23 com.apple.AppKit 0x00007fff3f871305 __65+[CATransaction(NSCATransaction) NS_setFlushesWithDisplayRefresh]_block_invoke + 274 24 com.apple.CoreFoundation 0x00007fff4227a9cd CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION + 23 25 com.apple.CoreFoundation 0x00007fff4227a902 CFRunLoopDoObservers + 452 26 com.apple.CoreFoundation 0x00007fff4221c429 CFRunLoopRun + 1166 27 com.apple.CoreFoundation 0x00007fff4221bd48 CFRunLoopRunSpecific + 463 28 com.apple.HIToolbox 0x00007fff414b2ab5 RunCurrentEventLoopInMode + 293 29 com.apple.HIToolbox 0x00007fff414b26f4 ReceiveNextEventCommon + 371 30 com.apple.HIToolbox 0x00007fff414b2568 _BlockUntilNextEventMatchingListInModeWithFilter + 64 31 com.apple.AppKit 0x00007fff3f76d363 _DPSNextEvent + 997 32 com.apple.AppKit 0x00007fff3f76c102 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1362 33 libqcocoa.dylib 0x0000000104562d27 0x104536000 + 183591 34 org.qt-project.QtCore 0x000000010226c4a7 QCoreApplication::processEvents(QFlags) + 39 35 org.qt-project.QtCore 0x000000010229d10c QMetaObject::activate(QObject, int, int, void**) + 3132 36 com.domain.AwesomeBump 0x0000000101127d4b MainWindow::initProgress(int) + 59 37 com.domain.AwesomeBump 0x00000001010556ba MainWindow::initializeApp() + 170 38 com.domain.AwesomeBump 0x000000010104565e main + 3422 39 libdyld.dylib 0x00007fff6f45ded9 start + 1

Thread 1: 0 libsystem_pthread.dylib 0x00007fff6f6503f8 start_wqthread + 0 1 ??? 0x0000000054485244 0 + 1414025796

Thread 2: 0 libsystem_pthread.dylib 0x00007fff6f6503f8 start_wqthread + 0 1 ??? 0x0000000054485244 0 + 1414025796

Thread 3: 0 libsystem_pthread.dylib 0x00007fff6f6503f8 start_wqthread + 0 1 ??? 0x0000000054485244 0 + 1414025796

Thread 4: 0 libsystem_pthread.dylib 0x00007fff6f6503f8 start_wqthread + 0 1 ??? 0x0000000054485244 0 + 1414025796

Thread 5: 0 libsystem_pthread.dylib 0x00007fff6f6503f8 start_wqthread + 0 1 ??? 0x0000000054485244 0 + 1414025796

Thread 6: 0 libsystem_pthread.dylib 0x00007fff6f6503f8 start_wqthread + 0 1 ??? 0x0000000054485244 0 + 1414025796

Thread 7: 0 libsystem_pthread.dylib 0x00007fff6f6503f8 start_wqthread + 0 1 ??? 0x0000000054485244 0 + 1414025796

Thread 8: 0 libsystem_pthread.dylib 0x00007fff6f6503f8 start_wqthread + 0

Thread 9:: com.apple.NSEventThread 0 libsystem_kernel.dylib 0x00007fff6f59717a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6f5976d0 mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff4221d0c2 CFRunLoopServiceMachPort + 337 3 com.apple.CoreFoundation 0x00007fff4221c611 CFRunLoopRun + 1654 4 com.apple.CoreFoundation 0x00007fff4221bd48 CFRunLoopRunSpecific + 463 5 com.apple.AppKit 0x00007fff3f775f89 _NSEventThread + 160 6 libsystem_pthread.dylib 0x00007fff6f651305 _pthread_body + 126 7 libsystem_pthread.dylib 0x00007fff6f65426f _pthread_start + 70 8 libsystem_pthread.dylib 0x00007fff6f650415 thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit): rax: 0x00000000b36337fb rbx: 0x0000000000000000 rcx: 0x00000000b36337fb rdx: 0x00000000b3833865 rdi: 0x00000000000007fb rsi: 0x0000600001141f40 rbp: 0x00007ffeeebcab40 rsp: 0x00007ffeeebca850 r8: 0x00000000000000cb r9: 0x00000000000007fb r10: 0x0000000000001f40 r11: 0x0000000000000050 r12: 0x0000000101447fe0 r13: 0x0000000101447fe8 r14: 0x00000001014153ac r15: 0x0000000000000000 rip: 0x0000000101036129 rfl: 0x0000000000010206 cr2: 0x0000000000000000

Logical CPU: 4 Error Code: 0x00000004 Trap Number: 14

Binary Images: 0x101031000 - 0x10142efff +com.domain.AwesomeBump (0) /Users/USER/Documents/*/AwesomeBump.app/Contents/MacOS/AwesomeBump 0x101545000 - 0x101579fff +org.qt-project.QtOpenGL (5.12 - 5.12.0) /usr/local/opt/qt/lib/QtOpenGL.framework/Versions/5/QtOpenGL 0x10159b000 - 0x1019d7ff7 +org.qt-project.QtWidgets (5.12 - 5.12.0) <75936810-FE79-3F53-9013-A0C94ACF28F0> /usr/local/opt/qt/lib/QtWidgets.framework/Versions/5/QtWidgets 0x101b3f000 - 0x101f7dff7 +org.qt-project.QtGui (5.12 - 5.12.0) <3217263A-A322-3A1E-9C45-879E8FF90ABD> /usr/local/opt/qt/lib/QtGui.framework/Versions/5/QtGui 0x102083000 - 0x1025b1ff7 +org.qt-project.QtCore (5.12 - 5.12.0) <56C531B9-76EF-3D6A-B181-32AF86E8E067> /usr/local/opt/qt/lib/QtCore.framework/Versions/5/QtCore 0x10266f000 - 0x10282aff7 +org.qt-project.QtScript (5.12 - 5.12.0) <79E2C299-CBF1-3CB2-9B8E-43A7205118D8> /usr/local/opt/qt/lib/QtScript.framework/Versions/5/QtScript 0x104536000 - 0x10468ffff +libqcocoa.dylib (0) <325894FF-021E-339C-AE13-B56B1E0BABBA> /usr/local/Cellar/qt/5.12.0/plugins/platforms/libqcocoa.dylib 0x1046d8000 - 0x104736ff3 +org.qt-project.QtDBus (5.12 - 5.12.0) <773D6959-60AB-30E0-8042-8CC13038A2E3> /usr/local/Cellar/qt/5.12.0/lib/QtDBus.framework/Versions/5/QtDBus 0x10474f000 - 0x104778ff7 +org.qt-project.QtPrintSupport (5.12 - 5.12.0) /usr/local/Cellar/qt/5.12.0/lib/QtPrintSupport.framework/Versions/5/QtPrintSupport 0x1071fc000 - 0x107220fff +libqmacstyle.dylib (0) <4ABC2B6E-B7A4-31B0-A7D1-29E86529E62C> /usr/local/Cellar/qt/5.12.0/plugins/styles/libqmacstyle.dylib 0x107230000 - 0x107236ff3 +libqgif.dylib (0) <0F7F452C-0B1F-380C-8179-995B5A971A16> /usr/local/Cellar/qt/5.12.0/plugins/imageformats/libqgif.dylib 0x10723a000 - 0x107241ffb +libqicns.dylib (0) /usr/local/Cellar/qt/5.12.0/plugins/imageformats/libqicns.dylib 0x107246000 - 0x10724bff3 +libqico.dylib (0) <85461501-CC30-3EAE-BF61-E9816FDE8822> /usr/local/Cellar/qt/5.12.0/plugins/imageformats/libqico.dylib 0x107250000 - 0x1072b3ffb +libqjpeg.dylib (0) <845D482E-E424-3AD8-AE89-3E72898A458F> /usr/local/Cellar/qt/5.12.0/plugins/imageformats/libqjpeg.dylib 0x1072b9000 - 0x1072bdff7 +libqmacheif.dylib (0) /usr/local/Cellar/qt/5.12.0/plugins/imageformats/libqmacheif.dylib 0x1072c1000 - 0x1072c5ff7 +libqmacjp2.dylib (0) <8E37FE73-FC82-3B94-9A14-C3A047933355> /usr/local/Cellar/qt/5.12.0/plugins/imageformats/libqmacjp2.dylib 0x1072c9000 - 0x1072cdfff +libqsvg.dylib (0) /usr/local/Cellar/qt/5.12.0/plugins/imageformats/libqsvg.dylib 0x1072d2000 - 0x107305ff3 +org.qt-project.QtSvg (5.12 - 5.12.0) <68DF2C7E-B1D0-38C3-B618-28FC22805834> /usr/local/Cellar/qt/5.12.0/lib/QtSvg.framework/Versions/5/QtSvg 0x107321000 - 0x107325ffb +libqtga.dylib (0) <5C974350-42F8-30EE-A433-30CD2BBFE97C> /usr/local/Cellar/qt/5.12.0/plugins/imageformats/libqtga.dylib 0x107329000 - 0x10738cff3 +libqtiff.dylib (0) <044FB145-6D8E-3E50-AE7F-33EB12759540> /usr/local/Cellar/qt/5.12.0/plugins/imageformats/libqtiff.dylib 0x107394000 - 0x107397ff3 +libqwbmp.dylib (0) <7482390B-CE3B-36A0-8FEE-FA8E1CBBFEAF> /usr/local/Cellar/qt/5.12.0/plugins/imageformats/libqwbmp.dylib 0x10739b000 - 0x10742fff3 +libqwebp.dylib (0) /usr/local/Cellar/qt/5.12.0/plugins/imageformats/libqwebp.dylib 0x107554000 - 0x107557047 libobjc-trampolines.dylib (750.1) <0D004834-E2EB-3066-8598-6F413521157F> /usr/lib/libobjc-trampolines.dylib 0x107bdd000 - 0x107ca6ff7 com.apple.AMDRadeonX4000GLDriver (2.4.9 - 2.0.4) <790B9EA8-E6A5-3E88-A746-2556CFFA7CA7> /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle/Contents/MacOS/AMDRadeonX4000GLDriver 0x10d827000 - 0x10d8a5a67 dyld (640.2) <289AB27E-F09F-3384-A14A-100431139559> /usr/lib/dyld 0x7fff38078000 - 0x7fff383f1fff com.apple.RawCamera.bundle (8.11.0 - 1031.1.3) <15BB3751-9084-381A-8D25-5C60695C292A> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x7fff383f4000 - 0x7fff3853ffff com.apple.AMDMTLBronzeDriver (2.4.9 - 2.0.4) <81012304-BA7A-399E-9551-4F2D74AF85C6> /System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver 0x7fff38540000 - 0x7fff38cb9fff ATIRadeonX4000SCLib.dylib (2.4.9) <04242230-7D3A-3AAC-B8A3-ED2B4637CDA3> /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle/Contents/MacOS/ATIRadeonX4000SCLib.dylib 0x7fff3a416000 - 0x7fff3a948fff com.apple.driver.AppleIntelHD5000GraphicsGLDriver (12.4.7.1 - 12.0.4) /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver 0x7fff3a949000 - 0x7fff3a9dbfff com.apple.driver.AppleIntelHD5000GraphicsMTLDriver (12.4.7.1 - 12.0.4) /System/Library/Extensions/AppleIntelHD5000GraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsMTLDriver 0x7fff3e13c000 - 0x7fff3e140fff com.apple.agl (3.3.2 - AGL-3.3.2) <1BA0EF39-F658-316F-B6CD-CE4FD1B925D6> /System/Library/Frameworks/AGL.framework/Versions/A/AGL 0x7fff3e50d000 - 0x7fff3e50dfff com.apple.Accelerate (1.11 - Accelerate 1.11) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff3e50e000 - 0x7fff3e524fef libCGInterfaces.dylib (506.19.1) <55B9EFFF-6719-381E-B7F3-C3AA07F5D78F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib 0x7fff3e525000 - 0x7fff3ebc5fe3 com.apple.vImage (8.1 - ???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff3ebc6000 - 0x7fff3ee3dfd7 libBLAS.dylib (1243.200.4) <0ADBEAE3-6636-33E5-AC9F-11C2249E19D3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff3ee3e000 - 0x7fff3eeb0fe7 libBNNS.dylib (38.200.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib 0x7fff3eeb1000 - 0x7fff3f257fff libLAPACK.dylib (1243.200.4) <45722A8A-5788-3C4C-ADD9-1812763FA635> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff3f258000 - 0x7fff3f26dffb libLinearAlgebra.dylib (1243.200.4) <3923AB79-213E-32FD-AC87-8B1A1A832336> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff3f26e000 - 0x7fff3f273ff3 libQuadrature.dylib (3.200.2) <4FBCAC0A-81A4-3C53-8458-27F3569C809D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib 0x7fff3f274000 - 0x7fff3f2f1ffb libSparse.dylib (79.200.5) <2D650C50-E87E-3F24-9BFA-C8EB6DE1A6E9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib 0x7fff3f2f2000 - 0x7fff3f305ffb libSparseBLAS.dylib (1243.200.4) <6F8C78BE-A0FD-3507-8A95-541AFC57F1EE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff3f306000 - 0x7fff3f4eaff3 libvDSP.dylib (671.220.1) <2F576522-08B1-3C65-8F00-3427E938ADDA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff3f4eb000 - 0x7fff3f5a0ff3 libvMisc.dylib (671.220.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff3f5a1000 - 0x7fff3f5a1fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <221E4FEF-0431-3316-8281-22B6F8315A09> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff3f752000 - 0x7fff40573ffb com.apple.AppKit (6.9 - 1671.20.108) <0C441020-D10E-3CE0-B320-527E50EADBEC> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff405c5000 - 0x7fff405c5fff com.apple.ApplicationServices (50.1 - 50.1) <50496459-FFDD-3A78-8D3D-A252BD9B9DA2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff405c6000 - 0x7fff40631ff7 com.apple.ApplicationServices.ATS (377 - 453.11) <4080F8BE-F2A2-3707-8754-436FBDB1DAF1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff406ca000 - 0x7fff407e9fff libFontParser.dylib (228.6) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff407ea000 - 0x7fff40835fff libFontRegistry.dylib (228.12) <1CC4D486-74F8-3459-BBA1-F68A36C5CAF8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff40894000 - 0x7fff408c7ff7 libTrueTypeScaler.dylib (228.6) <760BF895-3D7A-36E2-B97C-6775C3615A1D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib 0x7fff40931000 - 0x7fff40935ff3 com.apple.ColorSyncLegacy (4.13.0 - 1) <4B1238CC-9B77-3AA5-8329-EE3C736F07EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy 0x7fff409d2000 - 0x7fff40a24ff3 com.apple.HIServices (1.22 - 627.14.2) <1F851BF9-AD29-3558-9EA5-AAD9BAAAC823> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff40a25000 - 0x7fff40a33ff3 com.apple.LangAnalysis (1.7.0 - 1.7.0) <5654723A-7B3B-391F-B9F7-0DE4D5940185> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff40a34000 - 0x7fff40a80fff com.apple.print.framework.PrintCore (14.2 - 503.8) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff40a81000 - 0x7fff40abcff7 com.apple.QD (3.12 - 407.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff40abd000 - 0x7fff40ac9ff7 com.apple.speech.synthesis.framework (8.1.0 - 8.1.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff40aca000 - 0x7fff40d67fff com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <5D484151-F269-3D98-B507-0544A6B950AC> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff40d69000 - 0x7fff40d69fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <91100E0A-C14D-3E6C-B095-0C4109AC6694> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff410cd000 - 0x7fff4148efff com.apple.CFNetwork (976 - 976) <10F464AD-6687-3012-A2AA-0453629CA968> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff414a3000 - 0x7fff414a3fff com.apple.Carbon (158 - 158) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff414a4000 - 0x7fff414a7ffb com.apple.CommonPanels (1.2.6 - 98) <775C94BE-EC00-315F-96E0-F0C1CD6EE3F4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff414a8000 - 0x7fff417afff7 com.apple.HIToolbox (2.1.1 - 917.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff417b0000 - 0x7fff417b3ffb com.apple.help (1.3.8 - 66) <0C6CC127-A860-30D2-8434-6CC3CAFFB030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff417b4000 - 0x7fff417b9ff7 com.apple.ImageCapture (9.0 - 1530.1) <72ABBF32-531B-3B04-926D-E14B8D9003A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff417ba000 - 0x7fff4184eff3 com.apple.ink.framework (10.9 - 225) <344AACCC-E997-3498-8B1D-2EFD3A889205> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff4184f000 - 0x7fff41869fff com.apple.openscripting (1.7 - 179) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff4188a000 - 0x7fff4188bfff com.apple.print.framework.Print (14.2 - 267.4) <618D290C-2EA0-3959-A2A8-FB7B61DA92DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff4188c000 - 0x7fff4188eff7 com.apple.securityhi (9.0 - 55006) <2FE1EB07-F717-3E89-9662-8BA7C17C6AEC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff4188f000 - 0x7fff41895ff7 com.apple.speech.recognition.framework (6.0.3 - 6.0.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff419cc000 - 0x7fff41a98fff com.apple.ColorSync (4.13.0 - 3340) <2F45EB01-0C51-3D25-9836-18F99222E1C7> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff41c33000 - 0x7fff41cc3fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <1E7EF105-B843-370D-884E-0A43E1A5800B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff41d29000 - 0x7fff41d54ff7 com.apple.CoreBluetooth (1.0 - 1) /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff41d55000 - 0x7fff420f6fef com.apple.CoreData (120 - 866.1) <18CD58FD-513E-385B-B43C-08EEB909709C> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff420f7000 - 0x7fff421e0ff7 com.apple.CoreDisplay (101.3 - 106.2) /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7fff421e1000 - 0x7fff4262eff7 com.apple.CoreFoundation (6.9 - 1561) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff42630000 - 0x7fff42cbdff7 com.apple.CoreGraphics (2.0 - 1249.2) <3AC6DEB1-245B-3E3A-B5CF-791A37237775> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff42cbf000 - 0x7fff42fe8fff com.apple.CoreImage (14.2.0 - 720.0.130) <8C8BC619-7084-3F58-BBFC-4A97BD330787> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff43339000 - 0x7fff4343aff7 com.apple.CoreMedia (1.0 - 2284.9) <4662B44E-F463-3FC8-A643-2195FF10A3E4> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff4349e000 - 0x7fff4349efff com.apple.CoreServices (941 - 941) <950D3EAF-C98E-3BCB-8FD9-43EEA0E48988> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff4349f000 - 0x7fff4351dffb com.apple.AE (771 - 771) <4B009524-699E-3891-98DD-E3B6BB433C8F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff4351e000 - 0x7fff437f6ff7 com.apple.CoreServices.CarbonCore (1178.16 - 1178.16) <17FC2B9E-EB6C-3768-A2D0-6E086F2563D9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff437f7000 - 0x7fff43841ff7 com.apple.DictionaryServices (1.2 - 284.16.3) <1DAC9153-FB5A-3798-8797-CBFEFF227F71> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff43842000 - 0x7fff4384affb com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) <8E1507EA-F0A8-3845-B32D-4FBC1381E89C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff4384b000 - 0x7fff43a16fff com.apple.LaunchServices (941 - 941) <98B7E20E-5D0A-3A71-A019-346A145A1A5E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff43a17000 - 0x7fff43ab9fff com.apple.Metadata (10.7.0 - 1191.53) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff43aba000 - 0x7fff43b05ff7 com.apple.CoreServices.OSServices (941 - 941) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff43b06000 - 0x7fff43b74ff7 com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff43b75000 - 0x7fff43b99ffb com.apple.coreservices.SharedFileList (71.27 - 71.27) <6389B59D-DDAC-3C97-A982-137B9B1FB734> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff43ee1000 - 0x7fff44046ffb com.apple.CoreText (352.0 - 584.26) <5F61037C-825D-37A4-9091-0047413CC213> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff44047000 - 0x7fff44084fff com.apple.CoreVideo (1.8 - 0.0) <34EC73F1-F0ED-32F5-B96E-7683B1F9A7A2> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff44085000 - 0x7fff4411bffb com.apple.framework.CoreWLAN (13.0 - 1370.8) <32426190-3455-3049-8C09-0EC04D9C1279> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff44398000 - 0x7fff4439dfff com.apple.DiskArbitration (2.7 - 2.7) <97707A79-30E7-3D99-AA20-B992B0900BC4> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff44566000 - 0x7fff44934fff com.apple.Foundation (6.9 - 1561) <27FD022F-F0E3-3053-BADA-DF9BF856CA85> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff449a5000 - 0x7fff449d5ff3 com.apple.GSS (4.0 - 2.0) <86D07291-5DFC-30C2-9A18-5FCEDB0BE621> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff44aef000 - 0x7fff44bf9ff3 com.apple.Bluetooth (6.0.9 - 6.0.9f2) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff44c5b000 - 0x7fff44cedff7 com.apple.framework.IOKit (2.0.2 - 1483.230.1) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff44cef000 - 0x7fff44cf9ff7 com.apple.IOSurface (255.1 - 255.1) <58826B1A-38E8-3C76-8FFC-76C9282DA893> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff44d50000 - 0x7fff44eeefff com.apple.ImageIO.framework (3.3.0 - 1822.1) <908907D5-5C29-32F7-ACD9-C6A6D51C4D15> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff44eef000 - 0x7fff44ef3ffb libGIF.dylib (1822.1) <35E37B95-1962-3A25-9C9E-CADD161152B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff44ef4000 - 0x7fff44fd9fe7 libJP2.dylib (1822.1) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff44fda000 - 0x7fff44fffff7 libJPEG.dylib (1822.1) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff452d2000 - 0x7fff452f8fe7 libPng.dylib (1822.1) <28FE6E2C-1A17-3A84-AAF3-76014DEADDD4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff452f9000 - 0x7fff452fbff7 libRadiance.dylib (1822.1) <687906E3-4EC2-3CE9-B7EA-34418239EE1B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff452fc000 - 0x7fff4534affb libTIFF.dylib (1822.1) <0A1C083B-CE2F-3A00-8E45-EB58DCA2FF34> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff463f4000 - 0x7fff4640dfff com.apple.Kerberos (3.0 - 1) <5D1B0593-3C0E-32D5-AAE5-ABC22A98B639> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff466cb000 - 0x7fff466d5fff com.apple.MediaAccessibility (1.0 - 114.4) /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff4678f000 - 0x7fff46e2dfff com.apple.MediaToolbox (1.0 - 2284.9) /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff46e2f000 - 0x7fff46ec2fff com.apple.Metal (158.5 - 158.5) <219312CC-0DE5-3E8D-9F62-393D0C35B0FD> /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff46edf000 - 0x7fff46effff7 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <18281B14-0C6A-38F8-AB80-2D4BB0743C88> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore 0x7fff46f00000 - 0x7fff46f7eff7 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage 0x7fff46f7f000 - 0x7fff46fa7fff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <116D6C1A-2FD7-3743-95A0-CDDA3D459529> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix 0x7fff46fa8000 - 0x7fff470daff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <88E80BEE-3D2B-328B-80D4-F4717BDB2E9F> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork 0x7fff470db000 - 0x7fff470f6ff7 com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector 0x7fff470f7000 - 0x7fff470f7ff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <1BBA8BC8-49C6-3C9B-B985-7CE4373E3553> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders 0x7fff482f4000 - 0x7fff48300ffb com.apple.NetFS (6.0 - 4.0) <918DF6CD-2DB0-36A8-B869-5EF637A06C0D> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff4adb7000 - 0x7fff4adbffe7 libcldcpuengine.dylib (2.10.3) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib 0x7fff4adc0000 - 0x7fff4ae18fff com.apple.opencl (2.15.1 - 2.15.1) /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff4ae19000 - 0x7fff4ae35ff7 com.apple.CFOpenDirectory (10.14 - 207.200.4) <2CB1F122-2FA0-347C-8454-9CE0FA150832> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff4ae36000 - 0x7fff4ae42ffb com.apple.OpenDirectory (10.14 - 207.200.4) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff4b7a5000 - 0x7fff4b7a7fff libCVMSPluginSupport.dylib (17.3.1) <4D6061EC-CFCD-3C0E-90E4-51644DC5F76A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff4b7a8000 - 0x7fff4b7adff3 libCoreFSCache.dylib (163.20) <566DB80E-F1D6-3AEC-AF06-08955507AFEE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff4b7ae000 - 0x7fff4b7b2fff libCoreVMClient.dylib (163.20) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff4b7b3000 - 0x7fff4b7bbffb libGFXShared.dylib (17.3.1) <902F535E-E411-3C3B-B980-0A7DB40EA5B7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff4b7bc000 - 0x7fff4b7c7fff libGL.dylib (17.3.1) <87F8CCDB-2D7D-3B01-AA6F-6C7A4B1CA11E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff4b7c8000 - 0x7fff4b802fef libGLImage.dylib (17.3.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff4b803000 - 0x7fff4b975ff3 libGLProgrammability.dylib (17.3.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x7fff4b976000 - 0x7fff4b9b3fff libGLU.dylib (17.3.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff4c363000 - 0x7fff4c372ff3 com.apple.opengl (17.3.1 - 17.3.1) <78BDC7C4-87AD-33CA-BFAC-A9CC5F605B5D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff4c373000 - 0x7fff4c509ff7 GLEngine (17.3.1) <538676A2-3E3F-3FC3-97D8-AB7D900F8D4D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine 0x7fff4c50a000 - 0x7fff4c532ff7 GLRendererFloat (17.3.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat 0x7fff4d1ce000 - 0x7fff4d427fff com.apple.QuartzCore (1.11 - 695.4) <6692906D-9EF7-3EA0-96D3-3766567AE7F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff4dc7b000 - 0x7fff4dfa3fff com.apple.security (7.0 - 58286.230.21) <5ADE179E-87D5-3B90-9172-D183D4665037> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff4dfa4000 - 0x7fff4e033fff com.apple.securityfoundation (6.0 - 55185.200.14) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff4e065000 - 0x7fff4e069ff3 com.apple.xpc.ServiceManagement (1.0 - 1) <16FA4DAF-A0BE-34C0-B5F1-5C30BE3DCD2D> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff4e426000 - 0x7fff4e496ff3 com.apple.SystemConfiguration (1.17 - 1.17) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff4e6f7000 - 0x7fff4ea59fff com.apple.VideoToolbox (1.0 - 2284.9) <695514F0-08C8-3065-B9A2-DA3B43E6682F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff51701000 - 0x7fff517a6ff7 com.apple.APFS (1.0 - 1) <5CA4B73F-3F5D-3289-9145-520FFDFD6813> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS 0x7fff521f0000 - 0x7fff521f1ff3 com.apple.AggregateDictionary (1.0 - 1) /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary 0x7fff527ee000 - 0x7fff5281aff7 com.apple.framework.Apple80211 (13.0 - 1376.2) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff52af6000 - 0x7fff52b05fcf com.apple.AppleFSCompression (96.200.3 - 1.0) <78D538DD-1D24-34FC-AFB3-10411494870D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff52c03000 - 0x7fff52c0efff com.apple.AppleIDAuthSupport (1.0 - 1) /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport 0x7fff52c4f000 - 0x7fff52c98ff3 com.apple.AppleJPEG (1.0 - 1) /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff52eeb000 - 0x7fff52f13ff7 com.apple.applesauce (1.0 - ???) <58654BC0-9243-39D1-BC43-B7F2E37A3A44> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce 0x7fff52fde000 - 0x7fff5302efff com.apple.AppleVAFramework (5.0.44 - 5.0.44) <0338350C-F366-3C0D-B7C1-6E8FFAB92E98> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff53079000 - 0x7fff5308fffb com.apple.AssertionServices (1.0 - 1) <3F767D20-FE14-35CF-A089-E0445375ECFB> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices 0x7fff533cb000 - 0x7fff5366eff7 com.apple.AuthKit (1.0 - 1) <4FF8DA76-2250-39B9-B6A9-0E584C8B988F> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 0x7fff5383f000 - 0x7fff53848ff3 com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <05CF66F0-9650-3F75-9857-F8D186043866> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement 0x7fff53849000 - 0x7fff538ebfff com.apple.backup.framework (1.10.2 - ???) <7C865F13-12F9-3E38-A4A3-31516EA869B2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff538ec000 - 0x7fff5395dffb com.apple.BaseBoard (360.24 - 360.24) <04AF4372-C5D3-3F0A-A688-68D888D6D138> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard 0x7fff55511000 - 0x7fff5551afff com.apple.CommonAuth (4.0 - 2.0) <090893E5-BB65-39DA-A174-EAB2C7191EFE> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff559d8000 - 0x7fff55daffef com.apple.CoreAUC (273.0.0 - 273.0.0) /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff55db0000 - 0x7fff55de1fff com.apple.CoreAVCHD (6.0.0 - 6000.4.1) /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x7fff5622a000 - 0x7fff5623efff com.apple.CoreEmoji (1.0 - 69.19.8) <26BC0F82-08C1-3EBD-9299-D3CC5091C467> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji 0x7fff56814000 - 0x7fff56886ff7 com.apple.CoreNLP (1.0 - 130.15.22) /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP 0x7fff56b4f000 - 0x7fff56b57ffb com.apple.CorePhoneNumbers (1.0 - 1) <2D9AF545-ED3C-3EC1-887F-86922652EC57> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers 0x7fff56ce6000 - 0x7fff56d17fff com.apple.CoreServicesInternal (357 - 357) <789E57F4-5A14-3220-93DF-1D4FEE315431> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff570ec000 - 0x7fff5717aff7 com.apple.CoreSymbolication (10.1 - 64460.6) <133D09A5-39F7-301D-B019-B6685B80A2CB> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff5720a000 - 0x7fff57336fff com.apple.coreui (2.1 - 498.46) <5EFE2CDC-897C-3A6B-A60B-4E0FB1D1ECA9> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff57337000 - 0x7fff574bcfff com.apple.CoreUtils (5.7.4 - 574.17) /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff57513000 - 0x7fff57576ffb com.apple.framework.CoreWiFi (13.0 - 1370.8) <818F8915-BA51-3145-9C40-C9B8D7BE2DBD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff57577000 - 0x7fff57588ffb com.apple.CrashReporterSupport (10.13 - 938.23) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff5760b000 - 0x7fff5761aff3 com.apple.framework.DFRFoundation (1.0 - 211) /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation 0x7fff5761b000 - 0x7fff5761fff7 com.apple.DSExternalDisplay (3.1 - 380) <76449D22-BA27-3FB1-AD25-A290936E6DEA> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay 0x7fff576a2000 - 0x7fff57719ffb com.apple.datadetectorscore (7.0 - 590.24) <3A49EC90-2081-3031-8CAE-3A6D5F7BFA1E> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff57767000 - 0x7fff577a8fff com.apple.DebugSymbols (185 - 185) <64F5F9D6-401D-388B-82AD-A48B56413556> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff577a9000 - 0x7fff57902ff7 com.apple.desktopservices (1.13.1 - ???) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff58944000 - 0x7fff58d6cfff com.apple.vision.FaceCore (3.3.4 - 3.3.4) <41218EB7-19C9-3813-A793-B0623387CADF> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff5c68e000 - 0x7fff5c68ffff libmetal_timestamp.dylib (902.2.2) <55E0B1F2-94F0-3A77-9DB3-152F44848DA5> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib 0x7fff5dd2d000 - 0x7fff5dd38ff7 libGPUSupportMercury.dylib (17.3.1) <41312897-2629-3BFC-ADD2-BF66926EFE05> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib 0x7fff5dd39000 - 0x7fff5dd3eff7 com.apple.GPUWrangler (3.28.4 - 3.28.4) <14D6FE7D-38D7-3F6C-9BCE-A228D6697A08> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler 0x7fff5eba8000 - 0x7fff5ebb7fff com.apple.GraphVisualizer (1.0 - 5) /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer 0x7fff5ed08000 - 0x7fff5ed7dfff com.apple.Heimdal (4.0 - 2.0) /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff60163000 - 0x7fff6016cfff com.apple.IOAccelMemoryInfo (1.0 - 1) <3DCF9252-DBD4-3B55-803A-C1C36E82FF95> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo 0x7fff6016d000 - 0x7fff60174ffb com.apple.IOAccelerator (404.2.2 - 404.2.2) <7421825E-13D4-3C74-932D-34E8A605C281> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff60178000 - 0x7fff60191fff com.apple.IOPresentment (1.0 - 42.6) <87D19032-52DB-34A5-A554-23B3464EFC82> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment 0x7fff605a6000 - 0x7fff605d5ff7 com.apple.IconServices (379 - 379) <694E17A6-471B-3C57-92D6-ECC4295FB859> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff60875000 - 0x7fff60888fff com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <02ECB210-513F-3BDE-8150-A828E901FA02> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle 0x7fff608a3000 - 0x7fff6099afff com.apple.LanguageModeling (1.0 - 159.15.15) <34609F31-4DA1-3881-8947-85BEA7AFC938> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff6099b000 - 0x7fff609dcff7 com.apple.Lexicon-framework (1.0 - 33.15.10) <07E008F3-E823-333B-8B41-A46024AB0561> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon 0x7fff609e3000 - 0x7fff609e9ff7 com.apple.LinguisticData (1.0 - 238.23.4) <37948616-56E6-3758-BEFE-28586FF99E12> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData 0x7fff61248000 - 0x7fff6124bfff com.apple.Mangrove (1.0 - 25) <8DF73279-BCEB-38CE-AE83-571C1B3FF45B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 0x7fff61746000 - 0x7fff6176effb com.apple.spotlight.metadata.utilities (1.0 - 1191.53) <09C6DCF6-F87D-3D03-8BD5-FD1DCF90949F> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities 0x7fff6176f000 - 0x7fff61801fff com.apple.gpusw.MetalTools (1.0 - 1) /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools 0x7fff61816000 - 0x7fff6182ffff com.apple.MobileAssets (1.0 - 437.230.2) <73BF5743-F050-3393-AECE-298ADF3960F4> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset 0x7fff619ac000 - 0x7fff619c7ff3 com.apple.MobileKeyBag (2.0 - 1.0) <26347762-AF60-3412-A951-33BF85244D84> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag 0x7fff61a55000 - 0x7fff61a7fff7 com.apple.MultitouchSupport.framework (2410.5 - 2410.5) <3A712911-F672-3BB3-B62B-A2A7BADF3578> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff61cf2000 - 0x7fff61cfcfff com.apple.NetAuth (6.2 - 6.2) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff625c9000 - 0x7fff6261ffff com.apple.OTSVG (1.0 - ???) /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG 0x7fff6378a000 - 0x7fff63799ff3 com.apple.PerformanceAnalysis (1.217 - 217) /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff65758000 - 0x7fff65776ff7 com.apple.ProtocolBuffer (1 - 263.1) /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer 0x7fff65925000 - 0x7fff6597df0f com.apple.ROCKit (24 - 24) /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit 0x7fff65aa1000 - 0x7fff65ac4ffb com.apple.RemoteViewServices (2.0 - 128) <55D89BC9-0613-3910-B63E-9A146D35D91A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff67439000 - 0x7fff67557fff com.apple.Sharing (1214.18 - 1214.18) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff68311000 - 0x7fff685c3ff3 com.apple.SkyLight (1.600.0 - 337.5) <52BC8AB1-3518-3E4C-B1B1-0A8A8067574F> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7fff68d94000 - 0x7fff68da1fff com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff69486000 - 0x7fff694c5ff3 com.apple.StreamingZip (1.0 - 1) <251128E7-C343-3799-A31B-8B10CEC69F19> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip 0x7fff69c02000 - 0x7fff69c8fff7 com.apple.Symbolication (10.1 - 64460.8) <7DDC5C90-947F-34FF-864D-5ED3C2B746A9> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x7fff6a198000 - 0x7fff6a1a5ffb com.apple.TCC (1.0 - 1) <81F88B91-49C1-36E7-8A39-C4BD654EE942> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff6a418000 - 0x7fff6a4dfff7 com.apple.TextureIO (3.8.4 - 3.8.1) <83CDF659-E5B3-381F-BDA1-FF0BFA17B5EE> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO 0x7fff6a599000 - 0x7fff6a59afff com.apple.TrustEvaluationAgent (2.0 - 31.200.1) <5C3E1B2D-40A8-3237-A8D9-4E7B15EEA678> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x7fff6a5a0000 - 0x7fff6a75afff com.apple.UIFoundation (1.0 - 551) <65A80450-7A24-3366-B521-4D02C4DB5094> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff6b449000 - 0x7fff6b532ff7 com.apple.ViewBridge (401.1 - 401.1) /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge 0x7fff6bd58000 - 0x7fff6bd5bfff com.apple.dt.XCTTargetBootstrap (1.0 - 1) <5F779D77-4AB1-3CCD-9AAF-101EC7E4905B> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap 0x7fff6c18c000 - 0x7fff6c18eff3 com.apple.loginsupport (1.0 - 1) <67BC49D6-320F-33ED-912E-16E5A342F385> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff6c449000 - 0x7fff6c481fff libCRFSuite.dylib (41.15.4) <92752A96-D1CF-3CA1-837A-1E075AE4C642> /usr/lib/libCRFSuite.dylib 0x7fff6c484000 - 0x7fff6c48fff7 libChineseTokenizer.dylib (28.15.3) <55572692-4918-3C54-AD35-726E03EC47D5> /usr/lib/libChineseTokenizer.dylib 0x7fff6c520000 - 0x7fff6c521ff7 libDiagnosticMessagesClient.dylib (107) <15210AC0-61F9-3F9D-A159-A009F62EB537> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff6c558000 - 0x7fff6c71bff7 libFosl_dynamic.dylib (18.3.2) /usr/lib/libFosl_dynamic.dylib 0x7fff6c771000 - 0x7fff6c790ff7 libMobileGestalt.dylib (645.220.9) /usr/lib/libMobileGestalt.dylib 0x7fff6c791000 - 0x7fff6c791fff libOpenScriptingUtil.dylib (179) <441A2E60-5D5C-3567-9B00-AA22E6EE5358> /usr/lib/libOpenScriptingUtil.dylib 0x7fff6c8d2000 - 0x7fff6c8d3ffb libSystem.B.dylib (1252.200.5) <25F4A1F5-6551-312F-B397-C8D45ACC530A> /usr/lib/libSystem.B.dylib 0x7fff6c95d000 - 0x7fff6c95efff libThaiTokenizer.dylib (2.15.1) /usr/lib/libThaiTokenizer.dylib 0x7fff6c971000 - 0x7fff6c987ffb libapple_nghttp2.dylib (1.24.1) <71C126C5-D869-3E67-9778-058FA7F3CA74> /usr/lib/libapple_nghttp2.dylib 0x7fff6c988000 - 0x7fff6c9b1ffb libarchive.2.dylib (54.200.3) <32B8634D-E465-3F6D-B254-A20D44504508> /usr/lib/libarchive.2.dylib 0x7fff6c9b2000 - 0x7fff6ca31fef libate.dylib (1.13.8) /usr/lib/libate.dylib 0x7fff6ca35000 - 0x7fff6ca35ff3 libauto.dylib (187) <003DEF68-0C59-3AFB-A7B7-A1B5ED301AF2> /usr/lib/libauto.dylib 0x7fff6cb0c000 - 0x7fff6cb1cff3 libbsm.0.dylib (39.200.18) <58A9ACEC-BF46-3A4E-86F5-3DD9AD7095B4> /usr/lib/libbsm.0.dylib 0x7fff6cb1d000 - 0x7fff6cb2bfff libbz2.1.0.dylib (38.200.3) <4DEC3797-087F-3C8D-815B-48E895813251> /usr/lib/libbz2.1.0.dylib 0x7fff6cb2c000 - 0x7fff6cb83ff7 libc++.1.dylib (400.9.4) /usr/lib/libc++.1.dylib 0x7fff6cb84000 - 0x7fff6cb99fff libc++abi.dylib (400.17) <446F4748-8A89-3D2E-AE1C-27EEBE93A8AB> /usr/lib/libc++abi.dylib 0x7fff6cb9a000 - 0x7fff6cb9aff3 libcharset.1.dylib (51.200.6) <43F7E100-F5D1-36AB-A26E-CF94196A19C0> /usr/lib/libcharset.1.dylib 0x7fff6cb9b000 - 0x7fff6cbabffb libcmph.dylib (6.15.1) /usr/lib/libcmph.dylib 0x7fff6cbac000 - 0x7fff6cbc4ffb libcompression.dylib (52.200.13) <05A2A91B-D24D-39E8-A071-261CBC5BB158> /usr/lib/libcompression.dylib 0x7fff6ce6f000 - 0x7fff6ce85fff libcoretls.dylib (155.220.1) <1229F9EA-C070-3D03-9DC6-F548C59F9FD5> /usr/lib/libcoretls.dylib 0x7fff6ce86000 - 0x7fff6ce87ff3 libcoretls_cfhelpers.dylib (155.220.1) <33661841-3C3B-3608-86AC-C88D1CD6FE98> /usr/lib/libcoretls_cfhelpers.dylib 0x7fff6d026000 - 0x7fff6d1b6ff3 libcrypto.35.dylib (22.230.1) <175DFAE2-74B6-3285-BEC5-A849340B4429> /usr/lib/libcrypto.35.dylib 0x7fff6d4fe000 - 0x7fff6d555ffb libcups.2.dylib (462.10) <29B6D106-A5F2-321D-8916-90F595545D88> /usr/lib/libcups.2.dylib 0x7fff6d68d000 - 0x7fff6d68dfff libenergytrace.dylib (17.200.1) /usr/lib/libenergytrace.dylib 0x7fff6d6bf000 - 0x7fff6d6c4ff7 libgermantok.dylib (17.15.2) <9381B152-5CFD-3D23-A5A7-4D64EE55B85E> /usr/lib/libgermantok.dylib 0x7fff6d6c5000 - 0x7fff6d6caff7 libheimdal-asn1.dylib (520.220.2) /usr/lib/libheimdal-asn1.dylib 0x7fff6d6f6000 - 0x7fff6d7e7ff7 libiconv.2.dylib (51.200.6) <9FB95807-7C62-32B7-A19F-946D7FB7CCA6> /usr/lib/libiconv.2.dylib 0x7fff6d7e8000 - 0x7fff6da4bffb libicucore.A.dylib (62109.0.1) /usr/lib/libicucore.A.dylib 0x7fff6da98000 - 0x7fff6da99fff liblangid.dylib (128.15.1) <663D0A24-7260-31D1-9BFE-74D67B6F72F6> /usr/lib/liblangid.dylib 0x7fff6da9a000 - 0x7fff6dab2fff liblzma.5.dylib (10.200.3) <9A52A949-0CB1-39B6-9244-D079FB609559> /usr/lib/liblzma.5.dylib 0x7fff6daca000 - 0x7fff6db7afff libmecab.1.0.0.dylib (779.24.1) <590BC39C-2A3E-368B-9499-C808B84C4955> /usr/lib/libmecab.1.0.0.dylib 0x7fff6db7b000 - 0x7fff6ddb8ff7 libmecabra.dylib (779.24.1) <22BFD5A8-EA42-3DC3-8910-F27DCFB1B631> /usr/lib/libmecabra.dylib 0x7fff6df90000 - 0x7fff6e2e8ffb libnetwork.dylib (1229.230.4) /usr/lib/libnetwork.dylib 0x7fff6e379000 - 0x7fff6eafffe7 libobjc.A.dylib (750.1) <804715F4-F52D-34D0-8FEC-A25DC08513C3> /usr/lib/libobjc.A.dylib 0x7fff6eb12000 - 0x7fff6eb16ffb libpam.2.dylib (22.200.1) <85253002-89F2-3872-9C8A-1801303A2EBB> /usr/lib/libpam.2.dylib 0x7fff6eb19000 - 0x7fff6eb4fff7 libpcap.A.dylib (79.200.4) <6D25197A-2F7C-3147-A45A-F6F13E55909F> /usr/lib/libpcap.A.dylib 0x7fff6ec69000 - 0x7fff6ec81ffb libresolv.9.dylib (65.200.2) /usr/lib/libresolv.9.dylib 0x7fff6ecd3000 - 0x7fff6ecd4ff7 libspindump.dylib (267.1) <9DEA015B-410E-3D6E-A3EE-54E046092EA9> /usr/lib/libspindump.dylib 0x7fff6ecd5000 - 0x7fff6eeacfe7 libsqlite3.dylib (274.20) <7B202039-5DDF-3140-808C-521E8F11394E> /usr/lib/libsqlite3.dylib 0x7fff6f139000 - 0x7fff6f13cffb libutil.dylib (51.200.4) <10C5E165-0939-363A-9D13-7076F3B513EC> /usr/lib/libutil.dylib 0x7fff6f13d000 - 0x7fff6f14afff libxar.1.dylib (404) <16E875B3-CF89-3059-87BB-36D301B32E7B> /usr/lib/libxar.1.dylib 0x7fff6f14f000 - 0x7fff6f232fff libxml2.2.dylib (32.8) <3E7875AC-3195-3800-AC48-8AA3B7BE51E4> /usr/lib/libxml2.2.dylib 0x7fff6f233000 - 0x7fff6f25bff3 libxslt.1.dylib (16.1) /usr/lib/libxslt.1.dylib 0x7fff6f25c000 - 0x7fff6f26effb libz.1.dylib (70.200.4) <15F7B40A-424C-33BB-BF2C-7E8195128B78> /usr/lib/libz.1.dylib 0x7fff6f2df000 - 0x7fff6f2e3ff3 libcache.dylib (81) <704331AC-E43D-343A-8C24-39201142AF27> /usr/lib/system/libcache.dylib 0x7fff6f2e4000 - 0x7fff6f2eeff3 libcommonCrypto.dylib (60118.220.1) <9C865644-EE9A-3662-AB77-7C8A5E561784> /usr/lib/system/libcommonCrypto.dylib 0x7fff6f2ef000 - 0x7fff6f2f6fff libcompiler_rt.dylib (63.4) <817772E3-E836-3FFD-A39B-BDCD1C357221> /usr/lib/system/libcompiler_rt.dylib 0x7fff6f2f7000 - 0x7fff6f300ff3 libcopyfile.dylib (146.200.3) <5C5C4F35-DAB7-3CF1-940F-F47192AB8289> /usr/lib/system/libcopyfile.dylib 0x7fff6f301000 - 0x7fff6f385fdf libcorecrypto.dylib (602.230.1) /usr/lib/system/libcorecrypto.dylib 0x7fff6f40c000 - 0x7fff6f446ff7 libdispatch.dylib (1008.220.2) <2FDB1401-5119-3DF0-91F5-F4E105F00CD7> /usr/lib/system/libdispatch.dylib 0x7fff6f447000 - 0x7fff6f476ff3 libdyld.dylib (640.2) <376E3F3A-6942-3B0E-AD5E-4B97E8255CF5> /usr/lib/system/libdyld.dylib 0x7fff6f477000 - 0x7fff6f477ffb libkeymgr.dylib (30) /usr/lib/system/libkeymgr.dylib 0x7fff6f478000 - 0x7fff6f484ff7 libkxld.dylib (4903.231.4) <7275D7AD-54CE-30BF-9459-18EA77E28ACC> /usr/lib/system/libkxld.dylib 0x7fff6f485000 - 0x7fff6f485ff7 liblaunch.dylib (1336.220.5) <8563299C-2493-3DBD-8E88-3FC673DB47DD> /usr/lib/system/liblaunch.dylib 0x7fff6f486000 - 0x7fff6f48bfff libmacho.dylib (921) <6ADB99F3-D142-3A0A-B3CE-031354766ACC> /usr/lib/system/libmacho.dylib 0x7fff6f48c000 - 0x7fff6f48effb libquarantine.dylib (86.220.1) <58524FD7-63C5-38E0-9D90-845A79551C14> /usr/lib/system/libquarantine.dylib 0x7fff6f48f000 - 0x7fff6f490ff3 libremovefile.dylib (45.200.2) /usr/lib/system/libremovefile.dylib 0x7fff6f491000 - 0x7fff6f4a8ff3 libsystem_asl.dylib (356.200.4) <33C62769-1242-3BC1-9459-13CBCDECC7FE> /usr/lib/system/libsystem_asl.dylib 0x7fff6f4a9000 - 0x7fff6f4a9fff libsystem_blocks.dylib (73) <152EDADF-7D94-35F2-89B7-E66DCD945BBA> /usr/lib/system/libsystem_blocks.dylib 0x7fff6f4aa000 - 0x7fff6f532fff libsystem_c.dylib (1272.200.26) /usr/lib/system/libsystem_c.dylib 0x7fff6f533000 - 0x7fff6f536ff7 libsystem_configuration.dylib (963.200.27) <94898525-ECC8-3CC9-B312-CBEAAC305E32> /usr/lib/system/libsystem_configuration.dylib 0x7fff6f537000 - 0x7fff6f53aff7 libsystem_coreservices.dylib (66) <10818C17-70E1-328E-A3E3-C3EB81AEC590> /usr/lib/system/libsystem_coreservices.dylib 0x7fff6f53b000 - 0x7fff6f541ffb libsystem_darwin.dylib (1272.200.26) <07468CF7-982F-37C4-83D0-D5E602A683AA> /usr/lib/system/libsystem_darwin.dylib 0x7fff6f542000 - 0x7fff6f548ff7 libsystem_dnssd.dylib (878.230.2) /usr/lib/system/libsystem_dnssd.dylib 0x7fff6f549000 - 0x7fff6f595ff3 libsystem_info.dylib (517.200.9) <54B65F21-2E93-3579-9B72-6637A03245D9> /usr/lib/system/libsystem_info.dylib 0x7fff6f596000 - 0x7fff6f5beff7 libsystem_kernel.dylib (4903.231.4) /usr/lib/system/libsystem_kernel.dylib 0x7fff6f5bf000 - 0x7fff6f60aff7 libsystem_m.dylib (3158.200.7) /usr/lib/system/libsystem_m.dylib 0x7fff6f60b000 - 0x7fff6f62fff7 libsystem_malloc.dylib (166.220.1) <4777DC06-F9C6-356E-82AB-86A1C6D62F3A> /usr/lib/system/libsystem_malloc.dylib 0x7fff6f630000 - 0x7fff6f63bff3 libsystem_networkextension.dylib (767.220.1) <74818C3D-9B68-3823-A737-6A4B782618F2> /usr/lib/system/libsystem_networkextension.dylib 0x7fff6f63c000 - 0x7fff6f643fff libsystem_notify.dylib (172.200.21) <65B3061D-41D7-3485-B217-A861E05AD50B> /usr/lib/system/libsystem_notify.dylib 0x7fff6f644000 - 0x7fff6f64dfef libsystem_platform.dylib (177.200.16) <83DED753-51EC-3B8C-A98D-883A5184086B> /usr/lib/system/libsystem_platform.dylib 0x7fff6f64e000 - 0x7fff6f658fff libsystem_pthread.dylib (330.230.1) /usr/lib/system/libsystem_pthread.dylib 0x7fff6f659000 - 0x7fff6f65cff7 libsystem_sandbox.dylib (851.230.3) <4D0CB1CA-160C-3C29-BE5D-131D68D43B1B> /usr/lib/system/libsystem_sandbox.dylib 0x7fff6f65d000 - 0x7fff6f65fff3 libsystem_secinit.dylib (30.220.1) <5964B6D2-19D4-3CF9-BDBC-4EB1D42348F1> /usr/lib/system/libsystem_secinit.dylib 0x7fff6f660000 - 0x7fff6f667ff7 libsystem_symptoms.dylib (820.237.2) <487E1794-4C6E-3B1B-9C55-95B1A5FF9B90> /usr/lib/system/libsystem_symptoms.dylib 0x7fff6f668000 - 0x7fff6f67dff7 libsystem_trace.dylib (906.220.1) <4D4BA88A-FA32-379D-8860-33838723B35F> /usr/lib/system/libsystem_trace.dylib 0x7fff6f67f000 - 0x7fff6f684ffb libunwind.dylib (35.4) /usr/lib/system/libunwind.dylib 0x7fff6f685000 - 0x7fff6f6b5fff libxpc.dylib (1336.220.5) /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: 3137523 thread_create: 0 thread_set_state: 0

VM Region Summary: ReadOnly portion of Libraries: Total=432.9M resident=0K(0%) swapped_out_or_unallocated=432.9M(100%) Writable regions: Total=641.5M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=641.5M(100%)

                            VIRTUAL   REGION 

REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate framework 128K 2 Activity Tracing 256K 2 CG backing stores 992K 3 CG image 24K 2 CoreGraphics 8K 2 CoreImage 24K 3 CoreServices 220K 2 CoreUI image data 456K 5 CoreUI image file 404K 6 Foundation 4K 2 Kernel Alloc Once 8K 2 MALLOC 242.0M 41 MALLOC guard page 32K 8 MALLOC_NANO (reserved) 384.0M 2 reserved VM address space (unallocated) Memory Tag 242 12K 2 OpenGL GLSL 384K 5 STACK GUARD 56.0M 11 Stack 12.6M 11 VM_ALLOCATE 116K 16 DATA 36.1M 290 FONT_DATA 4K 2 GLSLBUILTINS 5176K 2 LINKEDIT 220.5M 27 TEXT 212.5M 283 UNICODE 564K 2 mapped file 61.8M 22 shared memory 2696K 13 =========== ======= ======= TOTAL 1.2G 741 TOTAL, minus reserved VM space 852.7M 741

Model: MacBookPro11,5, BootROM 187.0.0.0.0, 4 processors, Intel Core i7, 2.8 GHz, 16 GB, SMC 2.30f2 Graphics: AMD Radeon R9 M370X, AMD Radeon R9 M370X, PCIe 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.77.61.1 AirPortDriverBrcmNIC-1305.2) Bluetooth: Version 6.0.9f2, 3 services, 27 devices, 1 incoming serial ports Network Service: Wi-Fi, AirPort, en0 Serial ATA Device: APPLE SSD SM0512G, 500.28 GB USB Device: USB 3.0 Bus USB Device: Internal Memory Card Reader USB Device: Apple Internal Keyboard / Trackpad USB Device: Bluetooth USB Host Controller Thunderbolt Bus: MacBook Pro, Apple Inc., 27.1

kmkolasinski commented 5 years ago

Ok, this is really hard to read and understand form me, however those lines:

36 com.domain.AwesomeBump 0x0000000101127d4b MainWindow::initProgress(int) + 59
37 com.domain.AwesomeBump 0x00000001010556ba MainWindow::initializeApp() + 170
38 com.domain.AwesomeBump 0x000000010104565e main + 3422

suggest that bad things happen in the initializeApp function. Google says that it's some known problem, please check these links:

The second one has some answer which can help you, but I cannot validate it without access to mac computer :/

PS: I googled following query: EXC_BAD_ACCESS (SIGSEGV) Qt Opengl

eljeffeg commented 5 years ago

Running from Content/MacOS, I get this in the terminal.

Starting application: Application dir: "/Users/User/Documents/workspace/AwesomeBump/Bin/AwesomeBump.app/Contents/MacOS" Data dir: "/Users/User/Documents/workspace/AwesomeBump/Bin/AwesomeBump.app/Contents/MacOS/../../.././" libpng warning: iCCP: known incorrect sRGB profile "Running the AwesomeBump 5.0 (2016)" Checking OpenGL widget: Widget OpenGL: "4.1" Context valid: true OpenGL information: VENDOR: ATI Technologies Inc. RENDERER: AMD Radeon R9 M370X OpenGL Engine VERSION: 4.1 ATI-2.4.9 GLSL VERSION: 4.10 libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile Initialization: Build image properties Initializing 3D widget: detected openGL version: "4.1" Loading quad (geometry shader) done Loading quad (vertex shader) done Loading quad (tessellation control shader) done Loading quad (tessellation evaluation shader) done Segmentation fault: 11 logout Saving session... ...copying shared history... ...saving history...truncating history files... ...completed. Deleting expired sessions...none found.

[Process completed]

kmkolasinski commented 5 years ago
Segmentation fault: 11

I cannot tell anything with this level of verbosity. I will try to get access to mac computer this or next week, I cannot promise I will able to fix your problem or even make AB working on osx, since I have no experience in this systems.

bgulanowski commented 5 years ago

Ok, this is really hard to read and understand form me, however those lines:

36 com.domain.AwesomeBump 0x0000000101127d4b MainWindow::initProgress(int) + 59
37 com.domain.AwesomeBump 0x00000001010556ba MainWindow::initializeApp() + 170
38 com.domain.AwesomeBump 0x000000010104565e main + 3422

suggest that bad things happen in the initializeApp function. Google says that it's some known problem, please check these links:

The second one has some answer which can help you, but I cannot validate it without access to mac computer :/

PS: I googled following query: EXC_BAD_ACCESS (SIGSEGV) Qt Opengl

The crash report is one backtrace, and a list of all the linked libraries. (Generally, which libraries are linked doesn't usually help).

I believe the most important line is:

0 com.domain.AwesomeBump 0x0000000101036129 GLWidget::initializeGL() + 2537

Something was probably null that wasn't supposed to be.

@jeffg2k if you are up to it, you might try hooking up the debugger to the executable. If you are building in debug config, you will be able to tell what is actually wrong. I don't know QT, but I'm guess that maybe that's a custom widget since it says the function is in AwesomeBump, not a QT library.

bgulanowski commented 5 years ago

I decided to try to build the app again using the suggested GL Core branch.

Was a bit confused about the build output directory for QtnProperty. The suggested file contents meant it tried to build in the root of the drive "/". I defined the top level dir as ".". It build in the PEG subdirectory for some reason, so I moved it into the right place.

It built OK, and then AwesomeBump build OK, too. Then I got a crash, but different than the one reported above.

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   org.qt-project.QtGui            0x000000010e45690d QOpenGLContext::format() const + 9
1   org.qt-project.QtGui            0x000000010e67f199 QOpenGLFunctions_3_3_Core::isContextCompatible(QOpenGLContext*) + 29
2   org.qt-project.QtGui            0x000000010e67f067 QOpenGLFunctions_3_3_Core::initializeOpenGLFunctions() + 85
3   com.LichenLabs.AwesomeBump      0x000000010da13ec2 GLTextureCube::GLTextureCube(QStringList const&, int) + 66
4   com.LichenLabs.AwesomeBump      0x000000010d9b265f GLWidget::chooseSkyBox(QString, bool) + 2031
5   com.LichenLabs.AwesomeBump      0x000000010da23033 DockWidget3DSettings::DockWidget3DSettings(QWidget*, GLWidget*) + 2419
6   com.LichenLabs.AwesomeBump      0x000000010d9c7e74 MainWindow::initializeApp() + 2148
7   com.LichenLabs.AwesomeBump      0x000000010d9b765e main + 3422
8   libdyld.dylib                   0x00007fff6387c015 start + 1

I took my own advice and ran from the debugger (lldb). Not something I usually do without The comfort of Xcode. Anyway, got a bit more detail:

2019-01-27 22:33:41.162067-0500 AwesomeBump[23920:10512091] Initialization: Setup image properties
2019-01-27 22:33:41.196851-0500 AwesomeBump[23920:10512091] Initialization: GUI setup
Traceback (most recent call last):
  File "<string>", line 1, in <module>
NameError: name 'run_one_line' is not defined
2019-01-27 22:33:41.232658-0500 AwesomeBump[23920:10512091] Reading the list of available configs settings:
2019-01-27 22:33:41.244339-0500 AwesomeBump[23920:10512091] Loading cubemaps folders:
2019-01-27 22:33:41.244873-0500 AwesomeBump[23920:10512091] Looking for enviromental maps in Core/2D/skyboxes:
2019-01-27 22:33:41.244905-0500 AwesomeBump[23920:10512091] Enviromental map: "1SaintLazarusChurch"
2019-01-27 22:33:41.244946-0500 AwesomeBump[23920:10512091] Enviromental map: "LancellottiChapel"
2019-01-27 22:33:41.244974-0500 AwesomeBump[23920:10512091] Enviromental map: "MarriottMadisonWest"
2019-01-27 22:33:41.244996-0500 AwesomeBump[23920:10512091] Enviromental map: "Park"
2019-01-27 22:33:41.245018-0500 AwesomeBump[23920:10512091] Enviromental map: "PereaBeach"
2019-01-27 22:33:41.245043-0500 AwesomeBump[23920:10512091] Enviromental map: "White"
2019-01-27 22:33:41.245065-0500 AwesomeBump[23920:10512091] Enviromental map: "Yokohama"
2019-01-27 22:33:41.245354-0500 AwesomeBump[23920:10512091] Reading new cube map: ("./Core/2D/skyboxes/1SaintLazarusChurch/posx.jpg", "./Core/2D/skyboxes/1SaintLazarusChurch/negx.jpg", "./Core/2D/skyboxes/1SaintLazarusChurch/posy.jpg", "./Core/2D/skyboxes/1SaintLazarusChurch/negy.jpg", "./Core/2D/skyboxes/1SaintLazarusChurch/posz.jpg", "./Core/2D/skyboxes/1SaintLazarusChurch/negz.jpg")
Process 23920 stopped
* thread #1, queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS (code=1, address=0x8)
    frame #0: 0x0000000100b4490d QtGui`QOpenGLContext::format() const + 9

Not sure if that is helpful or not.

kmkolasinski commented 5 years ago

Maybe the OpenGL context specyfication for osx is incorrect or something. Checkout those lines: https://github.com/kmkolasinski/AwesomeBump/blob/Release/Sources/main.cpp#L273

kmkolasinski commented 5 years ago

Could you paste full log.txt and debug output.

SEIZMICdesign commented 5 years ago

not sure where else to ask this question, but is there actually a Mac version? Or still just in development?

kmkolasinski commented 5 years ago

The later, I have no access to Mac so I cannot build it by my self.

SEIZMICdesign commented 5 years ago

as someone with basically no coding experience, is there anything I can do to help? 😒

kmkolasinski commented 5 years ago

I believe no, unfortunately making AB working on Mac requires coding skills. I will probably obtain some mac computer in the next week (or later).

SEIZMICdesign commented 5 years ago

Sorry! Very cool though, let me know if you need testers! I signed up for this site because I am trying to get in to coding for Raspberry Pi a little. Have not had a lot of time to do so yet. Let me know if I can help at all. interested to learn as much as I can.

kmkolasinski commented 5 years ago

Ok, thanks a lot, to be honest I have no idea where you could help except the problem with osx build :)

kmkolasinski commented 5 years ago

Finally, I didn't have access to Mac computer, but there was a small progress in the direction of making AB working with openGL core profile. You can try to build AB from source from Release branch and check whether it works or not.

eljeffeg commented 5 years ago

Wonder if this would work if it was dockerized.