Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Installation and Deployment
  4. Standalone qt app crashes on macos.
Qt 6.11 is out! See what's new in the release blog

Standalone qt app crashes on macos.

Scheduled Pinned Locked Moved Unsolved Installation and Deployment
4 Posts 2 Posters 1.2k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • W Offline
    W Offline
    wurfox
    wrote on last edited by
    #1

    Hello, i am trying to deploy qt to standalone .app. Here the cmake lists

    cmake_minimum_required(VERSION 3.14)
    project(macqttest
            VERSION 1.0.0
            LANGUAGES CXX)
    set(CMAKE_CXX_STANDARD 17)
    set(CMAKE_INSTALL_PREFIX ${CMAKE_CURRENT_LIST_DIR}/macqttest)
    
    find_package(Qt6 COMPONENTS Core Gui Widgets REQUIRED)
    
    qt_standard_project_setup()
    qt_add_executable(macqttest main.cpp)
    
    target_link_libraries(macqttest PUBLIC
            Qt::Core
            Qt::Gui
            Qt::Widgets
    )
    
    set_target_properties(macqttest PROPERTIES
            MACOSX_BUNDLE TRUE
    )
    
    include(CMakePackageConfigHelpers)
    
    install(TARGETS macqttest
            BUNDLE  DESTINATION .
            RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
    )
    qt_generate_deploy_app_script(
            TARGET macqttest
            OUTPUT_SCRIPT deploy_script
            NO_UNSUPPORTED_PLATFORM_ERROR
    )
    install(SCRIPT ${deploy_script})
    

    and main.cpp

    #include <QApplication>
    #include <QMainWindow>
    
    int main(int argc, char* argv[]) {
        QApplication app(argc, argv);
        QMainWindow window;
        window.show();
        return app.exec();
    }
    

    App in cmake-build, that links with local libraries works correctly, but the app in macqttest crashes with EXC_BAD_ACCESS.
    The otool type:

    macqttest/macqttest.app/Contents/MacOS/macqttest:
        @executable_path/../Frameworks/QtWidgets.framework/Versions/A/QtWidgets (compatibility version 6.0.0, current version 6.7.3)
        @rpath/QtGui.framework/Versions/A/QtGui (compatibility version 6.0.0, current version 6.7.3)
        /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL (compatibility version 1.0.0, current version 1.0.0)
        /System/Library/Frameworks/AGL.framework/Versions/A/AGL (compatibility version 1.0.0, current version 1.0.0)
        /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit (compatibility version 45.0.0, current version 2575.30.19)
        /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO (compatibility version 1.0.0, current version 1.0.0)
        /System/Library/Frameworks/Metal.framework/Versions/A/Metal (compatibility version 1.0.0, current version 367.6.0)
        @executable_path/../Frameworks/QtCore.framework/Versions/A/QtCore (compatibility version 6.0.0, current version 6.7.3)
        /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit (compatibility version 1.0.0, current version 275.0.0)
        /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration (compatibility version 1.0.0, current version 1.0.0)
        /usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 1800.105.0)
        /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1351.0.0)
    

    Used qt installation from homebrew. What is wrong there?

    W 1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi and welcome to devnet,

      Can you share the exact message you are getting ?
      One path that looks strange is the one from the QtGui framework.

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0
      • W wurfox

        Hello, i am trying to deploy qt to standalone .app. Here the cmake lists

        cmake_minimum_required(VERSION 3.14)
        project(macqttest
                VERSION 1.0.0
                LANGUAGES CXX)
        set(CMAKE_CXX_STANDARD 17)
        set(CMAKE_INSTALL_PREFIX ${CMAKE_CURRENT_LIST_DIR}/macqttest)
        
        find_package(Qt6 COMPONENTS Core Gui Widgets REQUIRED)
        
        qt_standard_project_setup()
        qt_add_executable(macqttest main.cpp)
        
        target_link_libraries(macqttest PUBLIC
                Qt::Core
                Qt::Gui
                Qt::Widgets
        )
        
        set_target_properties(macqttest PROPERTIES
                MACOSX_BUNDLE TRUE
        )
        
        include(CMakePackageConfigHelpers)
        
        install(TARGETS macqttest
                BUNDLE  DESTINATION .
                RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
        )
        qt_generate_deploy_app_script(
                TARGET macqttest
                OUTPUT_SCRIPT deploy_script
                NO_UNSUPPORTED_PLATFORM_ERROR
        )
        install(SCRIPT ${deploy_script})
        

        and main.cpp

        #include <QApplication>
        #include <QMainWindow>
        
        int main(int argc, char* argv[]) {
            QApplication app(argc, argv);
            QMainWindow window;
            window.show();
            return app.exec();
        }
        

        App in cmake-build, that links with local libraries works correctly, but the app in macqttest crashes with EXC_BAD_ACCESS.
        The otool type:

        macqttest/macqttest.app/Contents/MacOS/macqttest:
            @executable_path/../Frameworks/QtWidgets.framework/Versions/A/QtWidgets (compatibility version 6.0.0, current version 6.7.3)
            @rpath/QtGui.framework/Versions/A/QtGui (compatibility version 6.0.0, current version 6.7.3)
            /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL (compatibility version 1.0.0, current version 1.0.0)
            /System/Library/Frameworks/AGL.framework/Versions/A/AGL (compatibility version 1.0.0, current version 1.0.0)
            /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit (compatibility version 45.0.0, current version 2575.30.19)
            /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO (compatibility version 1.0.0, current version 1.0.0)
            /System/Library/Frameworks/Metal.framework/Versions/A/Metal (compatibility version 1.0.0, current version 367.6.0)
            @executable_path/../Frameworks/QtCore.framework/Versions/A/QtCore (compatibility version 6.0.0, current version 6.7.3)
            /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit (compatibility version 1.0.0, current version 275.0.0)
            /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration (compatibility version 1.0.0, current version 1.0.0)
            /usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 1800.105.0)
            /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1351.0.0)
        

        Used qt installation from homebrew. What is wrong there?

        W Offline
        W Offline
        wurfox
        wrote on last edited by
        #3

        Hello, forgot about the forum. The problem was with qt installation from homebrew. Installation from online installer is working for me. Here the message

        -------------------------------------
        Translated Report (Full Report Below)
        -------------------------------------
        
        Process:               macqttest [68501]
        Path:                  /Users/USER/Downloads/*/macqttest.app/Contents/MacOS/macqttest
        Identifier:            com.yourcompany.macqttest
        Version:               1.0 (1.0.0)
        Code Type:             ARM-64 (Native)
        Parent Process:        launchd [1]
        User ID:               501
        
        Date/Time:             2024-12-27 20:27:28.6124 +0300
        OS Version:            macOS 15.2 (24C101)
        Report Version:        12
        Anonymous UUID:        FC5875E6-B98B-CC0C-2F61-F3DA4AB568BD
        
        Sleep/Wake UUID:       EA159CCE-B947-4922-BA22-A1C1FAAF8EBD
        
        Time Awake Since Boot: 530000 seconds
        Time Since Wake:       271 seconds
        
        System Integrity Protection: enabled
        
        Crashed Thread:        0
        
        Exception Type:        EXC_BAD_ACCESS (SIGKILL (Code Signature Invalid))
        Exception Codes:       UNKNOWN_0x32 at 0x0000000101108000
        Exception Codes:       0x0000000000000032, 0x0000000101108000
        
        Termination Reason:    Namespace CODESIGNING, Code 2 Invalid Page
        
        VM Region Info: 0x101108000 is in 0x101108000-0x10149c000;  bytes after start: 0  bytes before end: 3751935
              REGION TYPE                    START - END         [ VSIZE] PRT/MAX SHRMOD  REGION DETAIL
              mapped file                 100c18000-101108000    [ 5056K] r--/rwx SM=COW  Object_id=d066654c
        --->  mapped file                 101108000-10149c000    [ 3664K] r-x/rwx SM=COW  Object_id=d066654c
              VM_ALLOCATE (reserved)      10149c000-1015f8000    [ 1392K] rw-/rwx SM=NUL  reserved VM address space (unallocated)
        
        Thread 0 Crashed:
        0   dyld                          	       0x192282ef0 dyld3::MachOFile::isMachO(Diagnostics&, unsigned long long) const + 40
        1   dyld                          	       0x192251f90 dyld4::Loader::mapSegments(Diagnostics&, dyld4::RuntimeState&, char const*, unsigned long long, dyld4::Loader::CodeSignatureInFile const&, bool, dyld3::Array<dyld4::Loader::Region> const&, bool, bool, dyld4::Loader::FileValidationInfo const&) + 1064
        2   dyld                          	       0x19225bf6c invocation function for block in dyld4::JustInTimeLoader::makeJustInTimeLoaderDisk(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, bool, unsigned int, mach_o::Layout const*) + 88
        3   dyld                          	       0x19225b920 dyld4::JustInTimeLoader::withRegions(dyld3::MachOFile const*, void (dyld3::Array<dyld4::Loader::Region> const&) block_pointer) + 296
        4   dyld                          	       0x19225beb0 invocation function for block in dyld4::JustInTimeLoader::makeJustInTimeLoaderDisk(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, bool, unsigned int, mach_o::Layout const*) + 484
        5   dyld                          	       0x1922603e0 dyld4::SyscallDelegate::withReadOnlyMappedFile(Diagnostics&, char const*, bool, void (void const*, unsigned long, bool, dyld4::FileID const&, char const*) block_pointer) const + 132
        6   dyld                          	       0x19225bc98 dyld4::JustInTimeLoader::makeJustInTimeLoaderDisk(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, bool, unsigned int, mach_o::Layout const*) + 208
        7   dyld                          	       0x19224f9ec dyld4::Loader::makeDiskLoader(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, bool, unsigned int, mach_o::Layout const*) + 172
        8   dyld                          	       0x192251254 invocation function for block in dyld4::Loader::getLoader(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&) + 2556
        9   dyld                          	       0x1922500ac dyld4::Loader::forEachResolvedAtPathVar(dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, dyld4::ProcessConfig::PathOverrides::Type, bool&, void (char const*, dyld4::ProcessConfig::PathOverrides::Type, bool&) block_pointer) + 780
        10  dyld                          	       0x19223f65c dyld4::ProcessConfig::PathOverrides::forEachPathVariant(char const*, dyld3::Platform, bool, bool, bool&, void (char const*, dyld4::ProcessConfig::PathOverrides::Type, bool&) block_pointer) const + 556
        11  dyld                          	       0x19224fbe0 dyld4::Loader::forEachPath(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, void (char const*, dyld4::ProcessConfig::PathOverrides::Type, bool&) block_pointer) + 264
        12  dyld                          	       0x1922502d8 dyld4::Loader::getLoader(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&) + 492
        13  dyld                          	       0x192259bd8 invocation function for block in dyld4::JustInTimeLoader::loadDependents(Diagnostics&, dyld4::RuntimeState&, dyld4::Loader::LoadOptions const&) + 516
        14  dyld                          	       0x192275b68 invocation function for block in mach_o::Header::forEachLinkedDylib(void (char const*, mach_o::LinkedDylibAttributes, mach_o::Version32, mach_o::Version32, bool&) block_pointer) const + 136
        15  dyld                          	       0x1922753a4 mach_o::Header::forEachLoadCommand(void (load_command const*, bool&) block_pointer) const + 284
        16  dyld                          	       0x192275868 mach_o::Header::forEachLinkedDylib(void (char const*, mach_o::LinkedDylibAttributes, mach_o::Version32, mach_o::Version32, bool&) block_pointer) const + 160
        17  dyld                          	       0x1922598b4 dyld4::JustInTimeLoader::loadDependents(Diagnostics&, dyld4::RuntimeState&, dyld4::Loader::LoadOptions const&) + 164
        18  dyld                          	       0x19223d0d4 dyld4::prepare(dyld4::APIs&, dyld3::MachOAnalyzer const*) + 1232
        19  dyld                          	       0x19223cbc0 dyld4::start(dyld4::KernelArgs*, void*, void*)::$_0::operator()() const + 544
        20  dyld                          	       0x19223c05c start + 2304
        
        
        Thread 0 crashed with ARM Thread State (64-bit):
            x0: 0x0000000101108000   x1: 0x000000016f3d1948   x2: 0x0000000000394000   x3: 0x0000000000040012
            x4: 0x0000000000000003   x5: 0x0000000000000000   x6: 0x0000000000000000   x7: 0x0000000000000000
            x8: 0x00000001fbe9c2ec   x9: 0x00000001fbe9db50  x10: 0x0000000000000012  x11: 0x0000000000000001
           x12: 0x08000000003d8000  x13: 0x0000000000000000  x14: 0x00000000001175b0  x15: 0x000000016f3d3602
           x16: 0x00000000000000c5  x17: 0x0000000192239f58  x18: 0x0000000000000000  x19: 0x000000016f3d1948
           x20: 0x0000000000000003  x21: 0x000000016f3d1948  x22: 0x000000016f3d13c8  x23: 0x00000000004f0000
           x24: 0x0000000000000000  x25: 0x000000016f3d113c  x26: 0x0000000000000000  x27: 0x0000000101108000
           x28: 0x0000000000000040   fp: 0x000000016f3d0b20   lr: 0x0000000192251f90
            sp: 0x000000016f3d0b10   pc: 0x0000000192282ef0 cpsr: 0x20001000
           far: 0x0000000101108000  esr: 0x92000007 (Data Abort) byte read Translation fault
        
        Binary Images:
               0x100a1c000 -        0x100a1ffff com.yourcompany.macqttest (1.0) <4dbe7e96-c7d4-30bb-90dd-16c4b4091f64> /Users/USER/Downloads/*/macqttest.app/Contents/MacOS/macqttest
               0x192236000 -        0x1922b7f3f dyld (*) <4ce86d18-f3fa-3d2a-a1b8-e7cd8a52fb0d> /usr/lib/dyld
                       0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
        
        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: 0
            thread_create: 0
            thread_set_state: 0
        
        VM Region Summary:
        ReadOnly portion of Libraries: Total=606.5M resident=0K(0%) swapped_out_or_unallocated=606.5M(100%)
        Writable regions: Total=9664K written=96K(1%) resident=96K(1%) swapped_out=0K(0%) unallocated=9568K(99%)
        
                                        VIRTUAL   REGION 
        REGION TYPE                        SIZE    COUNT (non-coalesced) 
        ===========                     =======  ======= 
        STACK GUARD                       56.0M        1 
        Stack                             8176K        1 
        VM_ALLOCATE (reserved)            1392K        1         reserved VM address space (unallocated)
        __DATA                              27K        2 
        __DATA_CONST                        40K        2 
        __DATA_DIRTY                         7K        1 
        __LINKEDIT                       606.0M        2 
        __TEXT                             536K        2 
        __TPRO_CONST                       272K        1 
        mapped file                       8720K        2 
        page table in kernel                96K        1 
        ===========                     =======  ======= 
        TOTAL                            680.8M       16 
        TOTAL, minus reserved VM space   679.5M       16 
        
        
        
        -----------
        Full Report
        -----------
        
        {"app_name":"macqttest","timestamp":"2024-12-27 20:27:28.00 +0300","app_version":"1.0","slice_uuid":"4dbe7e96-c7d4-30bb-90dd-16c4b4091f64","build_version":"1.0.0","platform":1,"bundleID":"com.yourcompany.macqttest","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 15.2 (24C101)","roots_installed":0,"name":"macqttest","incident_id":"C1C02A6E-0CD5-4E13-A340-0ED9269127DD"}
        {
          "uptime" : 530000,
          "procRole" : "Background",
          "version" : 2,
          "userID" : 501,
          "deployVersion" : 210,
          "modelCode" : "MacBookAir10,1",
          "coalitionID" : 125569,
          "osVersion" : {
            "train" : "macOS 15.2",
            "build" : "24C101",
            "releaseType" : "User"
          },
          "captureTime" : "2024-12-27 20:27:28.6124 +0300",
          "codeSigningMonitor" : 1,
          "incident" : "C1C02A6E-0CD5-4E13-A340-0ED9269127DD",
          "pid" : 68501,
          "translated" : false,
          "cpuType" : "ARM-64",
          "roots_installed" : 0,
          "bug_type" : "309",
          "procLaunch" : "2024-12-27 20:27:27.7553 +0300",
          "procStartAbsTime" : 12908068133003,
          "procExitAbsTime" : 12908088697813,
          "procName" : "macqttest",
          "procPath" : "\/Users\/USER\/Downloads\/*\/macqttest.app\/Contents\/MacOS\/macqttest",
          "bundleInfo" : {"CFBundleShortVersionString":"1.0","CFBundleVersion":"1.0.0","CFBundleIdentifier":"com.yourcompany.macqttest"},
          "storeInfo" : {"deviceIdentifierForVendor":"D9D2508B-7312-5710-A984-DC653FC10A24","thirdParty":true},
          "parentProc" : "launchd",
          "parentPid" : 1,
          "coalitionName" : "com.yourcompany.macqttest",
          "crashReporterKey" : "FC5875E6-B98B-CC0C-2F61-F3DA4AB568BD",
          "codeSigningID" : "macqttest",
          "codeSigningTeamID" : "",
          "codeSigningFlags" : 587334144,
          "codeSigningValidationCategory" : 0,
          "codeSigningTrustLevel" : 4294967295,
          "instructionByteStream" : {"beforePC":"fyMD1fRPvqn9ewGp\/UMAkfMDAapfbADxiAAAVGEBAPAhWBqRGwAAFA==","atPC":"CABAuemsn1LJ7q9yPwVIa+EBAFTJWZ9Sqd2\/cgoUQLkpBQARHwEJaw=="},
          "bootSessionUUID" : "BB615EF7-080F-4F3A-B868-28DED87F7E81",
          "wakeTime" : 271,
          "sleepWakeUUID" : "EA159CCE-B947-4922-BA22-A1C1FAAF8EBD",
          "sip" : "enabled",
          "vmRegionInfo" : "0x101108000 is in 0x101108000-0x10149c000;  bytes after start: 0  bytes before end: 3751935\n      REGION TYPE                    START - END         [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      mapped file                 100c18000-101108000    [ 5056K] r--\/rwx SM=COW  Object_id=d066654c\n--->  mapped file                 101108000-10149c000    [ 3664K] r-x\/rwx SM=COW  Object_id=d066654c\n      VM_ALLOCATE (reserved)      10149c000-1015f8000    [ 1392K] rw-\/rwx SM=NUL  reserved VM address space (unallocated)",
          "exception" : {"codes":"0x0000000000000032, 0x0000000101108000","rawCodes":[50,4312825856],"type":"EXC_BAD_ACCESS","signal":"SIGKILL (Code Signature Invalid)","subtype":"UNKNOWN_0x32 at 0x0000000101108000"},
          "termination" : {"flags":0,"code":2,"namespace":"CODESIGNING","indicator":"Invalid Page"},
          "vmregioninfo" : "0x101108000 is in 0x101108000-0x10149c000;  bytes after start: 0  bytes before end: 3751935\n      REGION TYPE                    START - END         [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      mapped file                 100c18000-101108000    [ 5056K] r--\/rwx SM=COW  Object_id=d066654c\n--->  mapped file                 101108000-10149c000    [ 3664K] r-x\/rwx SM=COW  Object_id=d066654c\n      VM_ALLOCATE (reserved)      10149c000-1015f8000    [ 1392K] rw-\/rwx SM=NUL  reserved VM address space (unallocated)",
          "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
          "faultingThread" : 0,
          "threads" : [{"triggered":true,"id":9499309,"threadState":{"x":[{"value":4312825856},{"value":6161242440},{"value":3751936},{"value":262162},{"value":3},{"value":0},{"value":0},{"value":0},{"value":8521368300,"symbolLocation":172,"symbol":"_main_thread"},{"value":8521374544,"symbolLocation":0,"symbol":"errno"},{"value":18},{"value":1},{"value":576460752307453952},{"value":0},{"value":1144240},{"value":6161249794},{"value":197},{"value":6746775384,"symbolLocation":56,"symbol":"fcntl"},{"value":0},{"value":6161242440},{"value":3},{"value":6161242440},{"value":6161241032},{"value":5177344},{"value":0},{"value":6161240380},{"value":0},{"value":4312825856},{"value":64}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6746873744},"cpsr":{"value":536875008},"fp":{"value":6161238816},"sp":{"value":6161238800},"esr":{"value":2449473543,"description":"(Data Abort) byte read Translation fault"},"pc":{"value":6747074288,"matchesCrashFrame":1},"far":{"value":4312825856}},"frames":[{"imageOffset":315120,"symbol":"dyld3::MachOFile::isMachO(Diagnostics&, unsigned long long) const","symbolLocation":40,"imageIndex":1},{"imageOffset":114576,"symbol":"dyld4::Loader::mapSegments(Diagnostics&, dyld4::RuntimeState&, char const*, unsigned long long, dyld4::Loader::CodeSignatureInFile const&, bool, dyld3::Array<dyld4::Loader::Region> const&, bool, bool, dyld4::Loader::FileValidationInfo const&)","symbolLocation":1064,"imageIndex":1},{"imageOffset":155500,"symbol":"invocation function for block in dyld4::JustInTimeLoader::makeJustInTimeLoaderDisk(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, bool, unsigned int, mach_o::Layout const*)","symbolLocation":88,"imageIndex":1},{"imageOffset":153888,"symbol":"dyld4::JustInTimeLoader::withRegions(dyld3::MachOFile const*, void (dyld3::Array<dyld4::Loader::Region> const&) block_pointer)","symbolLocation":296,"imageIndex":1},{"imageOffset":155312,"symbol":"invocation function for block in dyld4::JustInTimeLoader::makeJustInTimeLoaderDisk(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, bool, unsigned int, mach_o::Layout const*)","symbolLocation":484,"imageIndex":1},{"imageOffset":173024,"symbol":"dyld4::SyscallDelegate::withReadOnlyMappedFile(Diagnostics&, char const*, bool, void (void const*, unsigned long, bool, dyld4::FileID const&, char const*) block_pointer) const","symbolLocation":132,"imageIndex":1},{"imageOffset":154776,"symbol":"dyld4::JustInTimeLoader::makeJustInTimeLoaderDisk(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, bool, unsigned int, mach_o::Layout const*)","symbolLocation":208,"imageIndex":1},{"imageOffset":104940,"symbol":"dyld4::Loader::makeDiskLoader(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, bool, unsigned int, mach_o::Layout const*)","symbolLocation":172,"imageIndex":1},{"imageOffset":111188,"symbol":"invocation function for block in dyld4::Loader::getLoader(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&)","symbolLocation":2556,"imageIndex":1},{"imageOffset":106668,"symbol":"dyld4::Loader::forEachResolvedAtPathVar(dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, dyld4::ProcessConfig::PathOverrides::Type, bool&, void (char const*, dyld4::ProcessConfig::PathOverrides::Type, bool&) block_pointer)","symbolLocation":780,"imageIndex":1},{"imageOffset":38492,"symbol":"dyld4::ProcessConfig::PathOverrides::forEachPathVariant(char const*, dyld3::Platform, bool, bool, bool&, void (char const*, dyld4::ProcessConfig::PathOverrides::Type, bool&) block_pointer) const","symbolLocation":556,"imageIndex":1},{"imageOffset":105440,"symbol":"dyld4::Loader::forEachPath(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&, void (char const*, dyld4::ProcessConfig::PathOverrides::Type, bool&) block_pointer)","symbolLocation":264,"imageIndex":1},{"imageOffset":107224,"symbol":"dyld4::Loader::getLoader(Diagnostics&, dyld4::RuntimeState&, char const*, dyld4::Loader::LoadOptions const&)","symbolLocation":492,"imageIndex":1},{"imageOffset":146392,"symbol":"invocation function for block in dyld4::JustInTimeLoader::loadDependents(Diagnostics&, dyld4::RuntimeState&, dyld4::Loader::LoadOptions const&)","symbolLocation":516,"imageIndex":1},{"imageOffset":260968,"symbol":"invocation function for block in mach_o::Header::forEachLinkedDylib(void (char const*, mach_o::LinkedDylibAttributes, mach_o::Version32, mach_o::Version32, bool&) block_pointer) const","symbolLocation":136,"imageIndex":1},{"imageOffset":258980,"symbol":"mach_o::Header::forEachLoadCommand(void (load_command const*, bool&) block_pointer) const","symbolLocation":284,"imageIndex":1},{"imageOffset":260200,"symbol":"mach_o::Header::forEachLinkedDylib(void (char const*, mach_o::LinkedDylibAttributes, mach_o::Version32, mach_o::Version32, bool&) block_pointer) const","symbolLocation":160,"imageIndex":1},{"imageOffset":145588,"symbol":"dyld4::JustInTimeLoader::loadDependents(Diagnostics&, dyld4::RuntimeState&, dyld4::Loader::LoadOptions const&)","symbolLocation":164,"imageIndex":1},{"imageOffset":28884,"symbol":"dyld4::prepare(dyld4::APIs&, dyld3::MachOAnalyzer const*)","symbolLocation":1232,"imageIndex":1},{"imageOffset":27584,"symbol":"dyld4::start(dyld4::KernelArgs*, void*, void*)::$_0::operator()() const","symbolLocation":544,"imageIndex":1},{"imageOffset":24668,"symbol":"start","symbolLocation":2304,"imageIndex":1}]}],
          "usedImages" : [
          {
            "source" : "P",
            "arch" : "arm64",
            "base" : 4305567744,
            "CFBundleShortVersionString" : "1.0",
            "CFBundleIdentifier" : "com.yourcompany.macqttest",
            "size" : 16384,
            "uuid" : "4dbe7e96-c7d4-30bb-90dd-16c4b4091f64",
            "path" : "\/Users\/USER\/Downloads\/*\/macqttest.app\/Contents\/MacOS\/macqttest",
            "name" : "macqttest",
            "CFBundleVersion" : "1.0.0"
          },
          {
            "source" : "P",
            "arch" : "arm64e",
            "base" : 6746759168,
            "size" : 532288,
            "uuid" : "4ce86d18-f3fa-3d2a-a1b8-e7cd8a52fb0d",
            "path" : "\/usr\/lib\/dyld",
            "name" : "dyld"
          },
          {
            "size" : 0,
            "source" : "A",
            "base" : 0,
            "uuid" : "00000000-0000-0000-0000-000000000000"
          }
        ],
          "sharedCache" : {
          "base" : 6745948160,
          "size" : 4861722624,
          "uuid" : "e36100c7-89e7-3970-8938-8483ccd7019a"
        },
          "vmSummary" : "ReadOnly portion of Libraries: Total=606.5M resident=0K(0%) swapped_out_or_unallocated=606.5M(100%)\nWritable regions: Total=9664K written=96K(1%) resident=96K(1%) swapped_out=0K(0%) unallocated=9568K(99%)\n\n                                VIRTUAL   REGION \nREGION TYPE                        SIZE    COUNT (non-coalesced) \n===========                     =======  ======= \nSTACK GUARD                       56.0M        1 \nStack                             8176K        1 \nVM_ALLOCATE (reserved)            1392K        1         reserved VM address space (unallocated)\n__DATA                              27K        2 \n__DATA_CONST                        40K        2 \n__DATA_DIRTY                         7K        1 \n__LINKEDIT                       606.0M        2 \n__TEXT                             536K        2 \n__TPRO_CONST                       272K        1 \nmapped file                       8720K        2 \npage table in kernel                96K        1 \n===========                     =======  ======= \nTOTAL                            680.8M       16 \nTOTAL, minus reserved VM space   679.5M       16 \n",
          "legacyInfo" : {
          "threadTriggered" : {
        
          }
        },
          "logWritingSignature" : "a6100cddf4f23ee56a3b0ae16df9143859810bb7",
          "trialInfo" : {
          "rollouts" : [
            {
              "rolloutId" : "64b21a7351cbb02ce3442e4e",
              "factorPackIds" : {
                "REMINDERS_GROCERY" : "6647f0f7b6a75d3dc32993e7"
              },
              "deploymentId" : 240000042
            },
            {
              "rolloutId" : "652eff3d1bce5442b8d753c9",
              "factorPackIds" : {
        
              },
              "deploymentId" : 240000009
            }
          ],
          "experiments" : [
            {
              "treatmentId" : "45f4e2a5-551b-4bc2-a2dc-19c244dda8f8",
              "experimentId" : "6643969b3099cf28e049862f",
              "deploymentId" : 400000007
            }
          ]
        }
        }
        
        Model: MacBookAir10,1, BootROM 11881.61.3, proc 8:4:4 processors, 8 GB, SMC 
        Graphics: Apple M1, Apple M1, Built-In
        Display: Color LCD, 2560 x 1600 Retina, Main, MirrorOff, Online
        Memory Module: LPDDR4, Hynix
        AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x4378), wl0: Sep 28 2024 04:40:32 version 18.20.462.0.7.8.175 FWID 01-10fa77df
        IO80211_driverkit-1345.8 "IO80211_driverkit-1345.8" Nov  9 2024 17:02:32
        AirPort: 
        Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports
        Network Service: Wi-Fi, AirPort, en0
        USB Device: USB31Bus
        USB Device: USB31Bus
        Thunderbolt Bus: MacBook Air, Apple Inc.
        Thunderbolt Bus: MacBook Air, Apple Inc.
        
        1 Reply Last reply
        0
        • SGaistS Offline
          SGaistS Offline
          SGaist
          Lifetime Qt Champion
          wrote on last edited by
          #4

          It looks like something was not properly signed hence the crash.

          Interested in AI ? www.idiap.ch
          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          0

          • Login

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • Users
          • Groups
          • Search
          • Get Qt Extensions
          • Unsolved