Re: Aven crashes on macOS 27 — locale workaround
Darek Lubomski
darek.lubomski at gmail.com
Mon Sep 21 07:27:42 BST 2026
Hi Olly,
I ran the following tests myself. Here is the raw terminal output:
Jaskiniowy-Kataster-Tatr-Zachodnich git:(codex/czarna-dwa-ciagi) ✗ cd
~/proj/Jaskiniowy-Kataster-Tatr-Zachodnich
sw_vers
/opt/homebrew/bin/aven --version
/opt/homebrew/bin/wx-config --version
ProductName: macOS
ProductVersion: 27.0
BuildVersion: 26A428
/opt/homebrew/bin/aven - Survex 1.4.22
3.3.2
➜ Jaskiniowy-Kataster-Tatr-Zachodnich git:(codex/czarna-dwa-ciagi) ✗
env -u LANGUAGE -u SURVEXLANG LANG=pl_PL.UTF-8 LC_ALL=pl_PL.UTF-8
/opt/homebrew/bin/aven KATASTER.3d
echo "Exit status: $?"
[1] 30776 trace trap env -u LANGUAGE -u SURVEXLANG
LANG=pl_PL.UTF-8 LC_ALL=pl_PL.UTF-8 KATASTER.3
Exit status: 133
➜ Jaskiniowy-Kataster-Tatr-Zachodnich git:(codex/czarna-dwa-ciagi) ✗
env -u LANGUAGE -u SURVEXLANG LANG=de_DE.UTF-8 LC_ALL=de_DE.UTF-8
/opt/homebrew/bin/aven KATASTER.3d
echo "Exit status: $?"
[1] 30796 trace trap env -u LANGUAGE -u SURVEXLANG
LANG=de_DE.UTF-8 LC_ALL=de_DE.UTF-8 KATASTER.3
Exit status: 133
➜ Jaskiniowy-Kataster-Tatr-Zachodnich git:(codex/czarna-dwa-ciagi) ✗
env -u LANGUAGE -u SURVEXLANG LANG=fr_FR.UTF-8 LC_ALL=fr_FR.UTF-8
/opt/homebrew/bin/aven KATASTER.3d
echo "Exit status: $?"
[1] 30831 trace trap env -u LANGUAGE -u SURVEXLANG
LANG=fr_FR.UTF-8 LC_ALL=fr_FR.UTF-8 KATASTER.3
Exit status: 133
➜ Jaskiniowy-Kataster-Tatr-Zachodnich git:(codex/czarna-dwa-ciagi) ✗
env -u LANGUAGE -u SURVEXLANG LANG=cs_CZ.UTF-8 LC_ALL=cs_CZ.UTF-8
/opt/homebrew/bin/aven KATASTER.3d
echo "Exit status: $?"
[1] 30850 trace trap env -u LANGUAGE -u SURVEXLANG
LANG=cs_CZ.UTF-8 LC_ALL=cs_CZ.UTF-8 KATASTER.3
Exit status: 133
➜ Jaskiniowy-Kataster-Tatr-Zachodnich git:(codex/czarna-dwa-ciagi) ✗
env -u LANGUAGE -u SURVEXLANG LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8
/opt/homebrew/bin/aven KATASTER.3d
echo "Exit status: $?"
FALLBACK (log once): Fallback to SW vertex for line stipple
FALLBACK (log once): Fallback to SW vertex processing, m_disable_code: 2000
FALLBACK (log once): Fallback to SW vertex processing in drawCore,
m_disable_code: 2000
Exit status: 0
➜ Jaskiniowy-Kataster-Tatr-Zachodnich git:(codex/czarna-dwa-ciagi) ✗
env -u LANGUAGE -u SURVEXLANG LANG=C.UTF-8 LC_ALL=C.UTF-8
/opt/homebrew/bin/aven KATASTER.3d
echo "Exit status: $?"
FALLBACK (log once): Fallback to SW vertex for line stipple
FALLBACK (log once): Fallback to SW vertex processing, m_disable_code: 2000
FALLBACK (log once): Fallback to SW vertex processing in drawCore,
m_disable_code: 2000
Exit status: 0
➜ Jaskiniowy-Kataster-Tatr-Zachodnich git:(codex/czarna-dwa-ciagi) ✗
env -u LANGUAGE LANG=pl_PL.UTF-8 LC_ALL=C.UTF-8 SURVEXLANG=pl_PL.UTF-8
/opt/homebrew/bin/aven KATASTER.3d
echo "Exit status: $?"
[1] 30974 trace trap env -u LANGUAGE LANG=pl_PL.UTF-8
LC_ALL=C.UTF-8 SURVEXLANG=pl_PL.UTF-8
Exit status: 133
➜ Jaskiniowy-Kataster-Tatr-Zachodnich git:(codex/czarna-dwa-ciagi) ✗
env -u LANGUAGE LANG=pl_PL.UTF-8 LC_ALL=C.UTF-8 SURVEXLANG=pl_PL.UTF-8
/opt/homebrew/bin/aven --help
echo "Exit status: $?"
/opt/homebrew/bin/aven - Survex 1.4.22
Użycie: /opt/homebrew/bin/aven [OPCJA]... [PLIK_POMIAROWY]
-s, --survey=SURVEY wczytaj tylko sesje z tym prefiksem
-p, --print drukuj i wyjdź (wymaga pliku 3d)
--help wyświetl tę pomoc i wyjdź
--version wyświetl informacje o wersji i wyjdź
Exit status: 0
➜ Jaskiniowy-Kataster-Tatr-Zachodnich git:(codex/czarna-dwa-ciagi) ✗
The full LLDB dumps for wxWidgets 3.3.2 and 3.2.11 are attached. These
were collected with Codex assistance. A separate Codex-assisted test
of Aven 1.4.22 with the older wxWidgets 3.2.11 gave the same results
and the same CoreUI assertion.
Best regards,
Darek
On Sun, 20 Sep 2026 20:41:17 +0100, Olly Betts <olly at survex.com> wrote:
> On Sun, Sep 20, 2026 at 03:45:39PM +0200, Darek Lubomski wrote:
> > After updating to macOS 27, Aven crashes with “trace trap”, even without
> > opening a file. This happens in both Terminal.app and kitty.
>
> Can you get a backtrace to show where it crashes?
>
> I'm not familiar with lldb, but assuming it's like gdb something like:
>
> lldb --args aven KATASTER.3d
>
> then inside lldb:
>
> run
>
> and when it crashes:
>
> bt
>
> > My setup: Apple M4, Aven 1.4.22 from Homebrew, wxWidgets 3.3.2.
>
> FWIW, that's a development version of wxWidgets.
>
> > This workaround lets me open the model:
> >
> > LC_ALL=C.UTF-8 aven KATASTER.3d
> >
> > Codex-assisted investigation — separate from my observations
> >
> > Local tests run with Codex reproduced the crash with pl_PL.UTF-8, while
> > C.UTF-8 and en_US.UTF-8 started successfully. Crash reports point to
> > CoreUI/AppKit.
> >
> > A macOS 27 locale regression is a hypothesis, not a confirmed root cause.
> > Potentially related: wxWidgets #26822:
> > https://github.com/wxWidgets/wxWidgets/issues/26822
>
> Seems bogus - the only connection being the OS version. Please let's
> stick to facts and human investigations.
>
> > Is this known, and could an Aven-side workaround help?
>
> Nobody's reported it before, but it looks like macOS 27 was only
> released a few days ago so it may or may not affect others.
>
> It might be possible to workaround, but we really need to know more
> about what's going on. Even if it avoided the crash, simply forcing
> `LC_ALL=C.UTF-8` early on would stop translation of messages from
> working.
>
> As above, a backtrace would help a lot.
>
> Also, is this specific to `pl_PL`? You said it works with `en_US` but
> that's kind of a special case.
>
> And does this work? It should still give Polish messages:
>
> SURVEXLANG=pl_PL.UTF-8 LC_ALL=C.UTF-8 aven KATASTER.3d
>
> Cheers,
> Olly
-------------- next part --------------
Environment: LANG=pl_PL.UTF-8 LC_ALL=pl_PL.UTF-8; LANGUAGE and SURVEXLANG unset
(lldb) target create "/opt/homebrew/bin/aven"
Current executable set to '/opt/homebrew/bin/aven' (arm64).
(lldb) settings set -- target.run-args "/Users/dariuszlubomski/proj/Jaskiniowy-Kataster-Tatr-Zachodnich/KATASTER.3d"
(lldb) run
2026-09-20 21:47:09.610405+0200 aven[85765:1952693] [Connection] Unable to get synchronousRemoteObjectProxy, error: Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.linkd.autoShortcut" UserInfo={NSDebugDescription=connection to service named com.apple.linkd.autoShortcut}
2026-09-20 21:47:09.610438+0200 aven[85765:1952693] [Application] Error registering app with intents framework: Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.linkd.autoShortcut" UserInfo={NSDebugDescription=connection to service named com.apple.linkd.autoShortcut}
2026-09-20 21:47:09.610823+0200 aven[85765:1952721] [Connection] Unable to get synchronousRemoteObjectProxy, error: Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.linkd.autoShortcut" UserInfo={NSDebugDescription=connection to service named com.apple.linkd.autoShortcut}
2026-09-20 21:47:09.610847+0200 aven[85765:1952721] [Connection] Unable to re-register with Process Instance Registry, error: Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.linkd.autoShortcut" UserInfo={NSDebugDescription=connection to service named com.apple.linkd.autoShortcut}
2026-09-20 21:47:09.611154+0200 aven[85765:1952694] [Connection] Unable to get synchronousRemoteObjectProxy, error: Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.linkd.autoShortcut" UserInfo={NSDebugDescription=connection to service named com.apple.linkd.autoShortcut}
2026-09-20 21:47:09.611167+0200 aven[85765:1952694] [Connection] Unable to re-register with Process Instance Registry, error: Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.linkd.autoShortcut" UserInfo={NSDebugDescription=connection to service named com.apple.linkd.autoShortcut}
2026-09-20 21:47:09.611445+0200 aven[85765:1952694] [Connection] Will NOT re-try to establish the connection
2026-09-20 21:47:09.611524+0200 aven[85765:1952693] [Connection] Unable to get synchronousRemoteObjectProxy, error: Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.linkd.autoShortcut" UserInfo={NSDebugDescription=connection to service named com.apple.linkd.autoShortcut}
2026-09-20 21:47:09.611561+0200 aven[85765:1952693] [Connection] Unable to re-register with Process Instance Registry, error: Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.linkd.autoShortcut" UserInfo={NSDebugDescription=connection to service named com.apple.linkd.autoShortcut}
2026-09-20 21:47:09.731516+0200 aven[85765:1952673] [WindowTab] Cannot index window tabs due to missing main bundle identifier
2026-09-20 21:47:10.771723+0200 aven[85765:1952673] [Gestures] Gesture recognizer support has been disabled because NSTabView subclass wxNSTabView overrides mouseDown:, mouseDragged:, or mouseUp:
2026-09-20 21:47:10.773300+0200 aven[85765:1952673] [AppKit] Invalid view geometry: width is negative.
2026-09-20 21:47:10.773639+0200 aven[85765:1952673] [AppKit] Invalid view geometry: width is negative.
2026-09-20 21:47:10.773667+0200 aven[85765:1952673] [AppKit] Invalid view geometry: width is negative.
2026-09-20 21:47:10.779222+0200 aven[85765:1952673] [AppKit] Invalid view geometry: width is negative.
2026-09-20 21:47:10.780009+0200 aven[85765:1952673] [AppKit] Invalid view geometry: width is negative.
2026-09-20 21:47:10.787471+0200 aven[85765:1952673] [general] *** Assertion failure in -[CUINamedVectorGlyph _rasterizeImageUsingScaleFactor:forTargetSize:renderingMode:colorResolver:], CUINamedVectorGlyph.m:2599
2026-09-20 21:47:10.798154+0200 aven[85765:1952673] [HIExceptions] FAULT: NSInternalInconsistencyException: Invalid parameter not satisfying: targetSizeInPoints.width>0 && targetSizeInPoints.height>0; {
NSAssertFile = "CUINamedVectorGlyph.m";
NSAssertLine = 2599;
}
2026-09-20 21:47:10.798199+0200 aven[85765:1952673] [General] Invalid parameter not satisfying: targetSizeInPoints.width>0 && targetSizeInPoints.height>0
2026-09-20 21:47:10.798211+0200 aven[85765:1952673] [General] 0 CoreFoundation 0x0000000198bee8c0 __exceptionPreprocess + 176
2026-09-20 21:47:10.798214+0200 aven[85765:1952673] [General] 1 libobjc.A.dylib 0x000000019864c60c objc_exception_throw + 88
2026-09-20 21:47:10.798217+0200 aven[85765:1952673] [General] 2 Foundation 0x000000019a3354d8 -[NSCalendarDate initWithCoder:] + 0
2026-09-20 21:47:10.798220+0200 aven[85765:1952673] [General] 3 CoreUI 0x00000001a37e4608 -[CUINamedVectorGlyph _rasterizeImageUsingScaleFactor:forTargetSize:renderingMode:colorResolver:] + 184
2026-09-20 21:47:10.798224+0200 aven[85765:1952673] [General] 4 CoreUI 0x00000001a3714098 __64-[CUINamedVectorGlyph _imageForRenderingMode:withColorResolver:]_block_invoke + 1316
2026-09-20 21:47:10.798228+0200 aven[85765:1952673] [General] 5 CoreUI 0x00000001a37e4318 -[CUINamedVectorGlyph _performWithLockedRenditions:] + 192
2026-09-20 21:47:10.798230+0200 aven[85765:1952673] [General] 6 CoreUI 0x00000001a3710a7c -[CUINamedVectorGlyph _imageForRenderingMode:withColorResolver:] + 136
2026-09-20 21:47:10.798234+0200 aven[85765:1952673] [General] 7 CoreUI 0x00000001a36ffac4 -[CUINamedVectorGlyph image] + 124
2026-09-20 21:47:10.798237+0200 aven[85765:1952673] [General] 8 RenderBox 0x00000001bfb93374 _ZNK2RB6Symbol12Presentation14template_imageEv + 560
2026-09-20 21:47:10.798240+0200 aven[85765:1952673] [General] 9 RenderBox 0x00000001bfc34eec RBSymbolUpdateTemplateImage + 36
2026-09-20 21:47:10.798242+0200 aven[85765:1952673] [General] 10 SwiftUICore 0x000000023cc97404 $s7SwiftUI020_ShapeStyle_RenderedC0V17renderVectorGlyph33_3890C65F12EA82A4BC5FBD33046B67FALL_4size11orientation4name6styles6layersyAA08ResolvedgH0V_So6CGSizeVAA5ImageV11OrientationOAA01_cD5_NameOAA01_cD5_PackVAA01_cd1_E6LayersVztFTf4ndnnnnn_n + 436
2026-09-20 21:47:10.798246+0200 aven[85765:1952673] [General] 11 SwiftUICore 0x000000023cc8c12c $s7SwiftUI020_ShapeStyle_RenderedC0V10renderItem4name6styles6layersyAA01_cD5_NameO_AA01_cD5_PackVyXKAA01_cd1_E6LayersVztF + 644
2026-09-20 21:47:10.798248+0200 aven[85765:1952673] [General] 12 SwiftUICore 0x000000023c7b6620 $s7SwiftUI22ShapeStyledDisplayList33_E1641985C375D8826E6966D4F238A1B8LLV11updateValueyyFAA5ImageVAAE8ResolvedV_Tg5 + 2200
2026-09-20 21:47:10.798257+0200 aven[85765:1952673] [General] 13 SwiftUICore 0x000000023c881338 $s14AttributeGraph0A0VyACyxGqd__c5ValueQyd__RszAA12StatefulRuleRd__lufcADSPyqd__GXEfU_ySv_So11AGAttributeatcyXEfU_ySv_AJtcfu_7SwiftUI11DisplayListV_AK011ShapeStylediJ033_E1641985C375D8826E6966D4F238A1B8LLVyAK5ImageVAKE8ResolvedVGTt1g5 + 24
2026-09-20 21:47:10.798261+0200 aven[85765:1952673] [General] 14 AttributeGraph 0x00000001d2899ef8 _ZN2AG5Graph11UpdateStack6updateEv + 528
2026-09-20 21:47:10.798264+0200 aven[85765:1952673] [General] 15 AttributeGraph 0x00000001d289a688 _ZN2AG5Graph16update_attributeENS_4data3ptrINS_4NodeEEEj + 356
2026-09-20 21:47:10.798269+0200 aven[85765:1952673] [General] 16 AttributeGraph 0x00000001d28a2720 _ZN2AG5Graph20input_value_ref_slowENS_4data3ptrINS_4NodeEEENS_11AttributeIDEjjPK15AGSwiftMetadataRhl + 588
2026-09-20 21:47:10.798272+0200 aven[85765:1952673] [General] 17 AttributeGraph 0x00000001d28bb100 AGGraphGetValue + 268
2026-09-20 21:47:10.798274+0200 aven[85765:1952673] [General] 18 SwiftUICore 0x000000023c874978 $s7SwiftUI23InterpolatedDisplayList33_7377A3587909D054D379011E12826F37LLV11updateValueyyFAA5ImageVAAE8ResolvedV_Tg5 + 1908
2026-09-20 21:47:10.798277+0200 aven[85765:1952673] [General] 19 SwiftUICore 0x000000023c8812f0 $s14AttributeGraph0A0VyACyxGqd__c5ValueQyd__RszAA12StatefulRuleRd__lufcADSPyqd__GXEfU_ySv_So11AGAttributeatcyXEfU_ySv_AJtcfu_7SwiftUI11DisplayListV_AK012InterpolatediJ033_7377A3587909D054D379011E12826F37LLVyAK5ImageVAKE8ResolvedVGTt1g5 + 24
2026-09-20 21:47:10.798281+0200 aven[85765:1952673] [General] 20 AttributeGraph 0x00000001d2899ef8 _ZN2AG5Graph11UpdateStack6updateEv + 528
2026-09-20 21:47:10.798284+0200 aven[85765:1952673] [General] 21 AttributeGraph 0x00000001d28a994c _ZN2AG8Subgraph6updateEj + 944
2026-09-20 21:47:10.798286+0200 aven[85765:1952673] [General] 22 SwiftUICore 0x000000023cfb9178 $s7SwiftUI9GraphHostC14runTransactionyyF + 208
2026-09-20 21:47:10.798288+0200 aven[85765:1952673] [General] 23 SwiftUICore 0x000000023d512ef0 $s7SwiftUI9ViewGraphC13updateOutputs2atyAA4TimeV_tF + 152
2026-09-20 21:47:10.798291+0200 aven[85765:1952673] [General] 24 SwiftUICore 0x000000023d50c7b8 $s7SwiftUI25ViewGraphRootValueUpdaterPAAE6render8interval17updateDisplayList15targetTimestampySd_SbAA4TimeVSgtFyyXEfU_ + 776
2026-09-20 21:47:10.798294+0200 aven[85765:1952673] [General] 25 SwiftUICore 0x000000023d50aa84 $s7SwiftUI25ViewGraphRootValueUpdaterPAAE6render8interval17updateDisplayList15targetTimestampySd_SbAA4TimeVSgtF + 608
2026-09-20 21:47:10.798296+0200 aven[85765:1952673] [General] 26 AppKit 0x000000019e0665f4 __swift_closure_destructor.11 + 16084
2026-09-20 21:47:10.798299+0200 aven[85765:1952673] [General] 27 AppKit 0x000000019df70a70 __swift_memcpy0_1 + 252
2026-09-20 21:47:10.798303+0200 aven[85765:1952673] [General] 28 AppKit 0x000000019d46e9d8 -[NSApplication _terminateFromSender:askIfShouldTerminate:saveWindows:] + 66988
2026-09-20 21:47:10.798305+0200 aven[85765:1952673] [General] 29 AppKit 0x000000019d14b280 +[NSAnimationContext runAnimationGroup:] + 56
2026-09-20 21:47:10.798308+0200 aven[85765:1952673] [General] 30 AppKit 0x000000019e063230 __swift_closure_destructor.11 + 2832
2026-09-20 21:47:10.798311+0200 aven[85765:1952673] [General] 31 AppKit 0x000000019e05484c __swift__destructor.144 + 5860
2026-09-20 21:47:10.798315+0200 aven[85765:1952673] [General] 32 AppKit 0x000000019e054880 __swift__destructor.144 + 5912
2026-09-20 21:47:10.798318+0200 aven[85765:1952673] [General] 33 AppKit 0x000000019e148228 __swift__destructor.26 + 260
2026-09-20 21:47:10.798320+0200 aven[85765:1952673] [General] 34 AppKit 0x000000019e148250 __swift__destructor.26 + 300
2026-09-20 21:47:10.798322+0200 aven[85765:1952673] [General] 35 AppKit 0x000000019e1f92b0 __swift_memcpy18_8 + 11648
2026-09-20 21:47:10.798329+0200 aven[85765:1952673] [General] 36 AppKit 0x000000019e1f98ac __swift_memcpy18_8 + 13180
2026-09-20 21:47:10.798332+0200 aven[85765:1952673] [General] 37 AppKit 0x000000019db67ab8 ___NSViewLayout_block_invoke + 644
2026-09-20 21:47:10.798334+0200 aven[85765:1952673] [General] 38 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 21:47:10.798336+0200 aven[85765:1952673] [General] 39 AppKit 0x000000019d17a4a8 _NSViewLayout + 96
2026-09-20 21:47:10.798339+0200 aven[85765:1952673] [General] 40 AppKit 0x000000019db5cbb4 __36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 380
2026-09-20 21:47:10.798341+0200 aven[85765:1952673] [General] 41 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 21:47:10.798344+0200 aven[85765:1952673] [General] 42 AppKit 0x000000019d17a43c -[NSView _layoutSubtreeWithOldSize:] + 100
2026-09-20 21:47:10.798346+0200 aven[85765:1952673] [General] 43 AppKit 0x000000019db5ccf8 __36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
2026-09-20 21:47:10.798349+0200 aven[85765:1952673] [General] 44 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 21:47:10.798352+0200 aven[85765:1952673] [General] 45 AppKit 0x000000019d17a43c -[NSView _layoutSubtreeWithOldSize:] + 100
2026-09-20 21:47:10.798355+0200 aven[85765:1952673] [General] 46 AppKit 0x000000019db5ccf8 __36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
2026-09-20 21:47:10.798357+0200 aven[85765:1952673] [General] 47 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 21:47:10.798362+0200 aven[85765:1952673] [General] 48 AppKit 0x000000019d17a43c -[NSView _layoutSubtreeWithOldSize:] + 100
2026-09-20 21:47:10.798366+0200 aven[85765:1952673] [General] 49 AppKit 0x000000019db5ccf8 __36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
2026-09-20 21:47:10.798370+0200 aven[85765:1952673] [General] 50 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 21:47:10.798373+0200 aven[85765:1952673] [General] 51 AppKit 0x000000019d17a43c -[NSView _layoutSubtreeWithOldSize:] + 100
2026-09-20 21:47:10.798376+0200 aven[85765:1952673] [General] 52 AppKit 0x000000019db5ccf8 __36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
2026-09-20 21:47:10.798379+0200 aven[85765:1952673] [General] 53 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 21:47:10.798382+0200 aven[85765:1952673] [General] 54 AppKit 0x000000019d17a43c -[NSView _layoutSubtreeWithOldSize:] + 100
2026-09-20 21:47:10.798385+0200 aven[85765:1952673] [General] 55 AppKit 0x000000019db5ccf8 __36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
2026-09-20 21:47:10.798388+0200 aven[85765:1952673] [General] 56 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 21:47:10.798391+0200 aven[85765:1952673] [General] 57 AppKit 0x000000019d17a43c -[NSView _layoutSubtreeWithOldSize:] + 100
2026-09-20 21:47:10.798394+0200 aven[85765:1952673] [General] 58 AppKit 0x000000019db5d748 __56-[NSView _layoutSubtreeIfNeededAndAllowTemporaryEngine:]_block_invoke + 876
2026-09-20 21:47:10.798396+0200 aven[85765:1952673] [General] 59 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 21:47:10.798398+0200 aven[85765:1952673] [General] 60 AppKit 0x000000019d17a00c -[NSView _layoutSubtreeIfNeededAndAllowTemporaryEngine:] + 100
2026-09-20 21:47:10.798400+0200 aven[85765:1952673] [General] 61 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 21:47:10.798402+0200 aven[85765:1952673] [General] 62 AppKit 0x000000019d179f9c -[NSView layoutSubtreeIfNeeded] + 96
2026-09-20 21:47:10.798404+0200 aven[85765:1952673] [General] 63 AppKit 0x000000019de74754 -[NSWindow(NSConstraintBasedLayoutInternal) _layoutViewTree] + 108
2026-09-20 21:47:10.798412+0200 aven[85765:1952673] [General] 64 AppKit 0x000000019d177d08 -[NSWindow _oldPlaceWindow:fromServer:] + 640
2026-09-20 21:47:10.798415+0200 aven[85765:1952673] [General] 65 AppKit 0x000000019d177114 -[NSWindow _setFrameCommon:display:fromServer:] + 1888
2026-09-20 21:47:10.798417+0200 aven[85765:1952673] [General] 66 AppKit 0x000000019db7aa18 -[NSWindow _zoomToScreen:isMoveToiPad:] + 288
2026-09-20 21:47:10.798420+0200 aven[85765:1952673] [General] 67 aven 0x00000001000060cc _ZN4Aven6OnInitEv + 1108
2026-09-20 21:47:10.798422+0200 aven[85765:1952673] [General] 68 libwx_osx_cocoau_core-3.3.2.0.0.dyl 0x00000001008c1008 _ZN5wxApp10CallOnInitEv + 172
2026-09-20 21:47:10.798425+0200 aven[85765:1952673] [General] 69 libwx_baseu-3.3.2.0.0.dylib 0x000000010049b488 _Z7wxEntryRiPPw + 252
2026-09-20 21:47:10.798427+0200 aven[85765:1952673] [General] 70 aven 0x0000000100005c04 main + 280
2026-09-20 21:47:10.798430+0200 aven[85765:1952673] [General] 71 dyld 0x00000001986e7e80 start + 6688
Process 85765 launched: '/opt/homebrew/bin/aven' (arm64)
Process 85765 stopped
* thread #1, queue = 'com.apple.main-thread', stop reason = EXC_BREAKPOINT (code=1, subcode=0x19d4d4dd8)
frame #0: 0x000000019d4d4dd8 AppKit`+[NSApplication _crashOnException:] + 268
AppKit`+[NSApplication _crashOnException:]:
-> 0x19d4d4dd8 <+268>: brk #0x1
0x19d4d4ddc <+272>: ldr x8, [sp, #0x30]
0x19d4d4de0 <+276>: ldr x25, [x8]
0x19d4d4de4 <+280>: adrp x8, 4060
Target 0: (aven) stopped.
(lldb) thread backtrace all
* thread #1, queue = 'com.apple.main-thread', stop reason = EXC_BREAKPOINT (code=1, subcode=0x19d4d4dd8)
* frame #0: 0x000000019d4d4dd8 AppKit`+[NSApplication _crashOnException:] + 268
frame #1: 0x000000019e1f96c0 AppKit`___lldb_unnamed_symbol_185fc8d24 + 2460
frame #2: 0x000000019e1f98ac AppKit`___lldb_unnamed_symbol_185fc9890 + 28
frame #3: 0x000000019db67ab8 AppKit`___NSViewLayout_block_invoke + 644
frame #4: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #5: 0x000000019d17a4a8 AppKit`_NSViewLayout + 96
frame #6: 0x000000019db5cbb4 AppKit`__36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 380
frame #7: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #8: 0x000000019d17a43c AppKit`-[NSView _layoutSubtreeWithOldSize:] + 100
frame #9: 0x000000019db5ccf8 AppKit`__36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
frame #10: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #11: 0x000000019d17a43c AppKit`-[NSView _layoutSubtreeWithOldSize:] + 100
frame #12: 0x000000019db5ccf8 AppKit`__36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
frame #13: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #14: 0x000000019d17a43c AppKit`-[NSView _layoutSubtreeWithOldSize:] + 100
frame #15: 0x000000019db5ccf8 AppKit`__36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
frame #16: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #17: 0x000000019d17a43c AppKit`-[NSView _layoutSubtreeWithOldSize:] + 100
frame #18: 0x000000019db5ccf8 AppKit`__36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
frame #19: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #20: 0x000000019d17a43c AppKit`-[NSView _layoutSubtreeWithOldSize:] + 100
frame #21: 0x000000019db5ccf8 AppKit`__36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
frame #22: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #23: 0x000000019d17a43c AppKit`-[NSView _layoutSubtreeWithOldSize:] + 100
frame #24: 0x000000019db5d748 AppKit`__56-[NSView _layoutSubtreeIfNeededAndAllowTemporaryEngine:]_block_invoke + 876
frame #25: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #26: 0x000000019d17a00c AppKit`-[NSView _layoutSubtreeIfNeededAndAllowTemporaryEngine:] + 100
frame #27: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #28: 0x000000019d179f9c AppKit`-[NSView layoutSubtreeIfNeeded] + 96
frame #29: 0x000000019de74754 AppKit`-[NSWindow(NSConstraintBasedLayoutInternal) _layoutViewTree] + 108
frame #30: 0x000000019d177d08 AppKit`-[NSWindow _oldPlaceWindow:fromServer:] + 640
frame #31: 0x000000019d177114 AppKit`-[NSWindow _setFrameCommon:display:fromServer:] + 1888
frame #32: 0x000000019db7aa18 AppKit`-[NSWindow _zoomToScreen:isMoveToiPad:] + 288
frame #33: 0x00000001000060cc aven`Aven::OnInit() + 1108
frame #34: 0x00000001008c1008 libwx_osx_cocoau_core-3.3.2.0.0.dylib`wxApp::CallOnInit() + 172
frame #35: 0x000000010049b488 libwx_baseu-3.3.2.0.0.dylib`wxEntry(int&, wchar_t**) + 252
frame #36: 0x0000000100005c04 aven`main + 280
frame #37: 0x00000001986e7e80 dyld`start + 6688
thread #2
frame #0: 0x0000000198a7a9ec libsystem_kernel.dylib`__workq_kernreturn + 8
thread #3
frame #0: 0x0000000198a7a9ec libsystem_kernel.dylib`__workq_kernreturn + 8
thread #4, name = 'com.apple.NSEventThread'
frame #0: 0x0000000198a78c20 libsystem_kernel.dylib`mach_msg2_trap + 8
frame #1: 0x0000000198a8b8e0 libsystem_kernel.dylib`mach_msg2_internal + 76
frame #2: 0x0000000198a81a28 libsystem_kernel.dylib`mach_msg_overwrite + 480
frame #3: 0x0000000198a78fac libsystem_kernel.dylib`mach_msg + 24
frame #4: 0x0000000198b7eaec CoreFoundation`__CFRunLoopServiceMachPort + 160
frame #5: 0x0000000198b7d334 CoreFoundation`__CFRunLoopRun + 1172
frame #6: 0x0000000198c5782c CoreFoundation`_CFRunLoopRunSpecificWithOptions + 536
frame #7: 0x000000019d258844 AppKit`_NSEventThread + 184
frame #8: 0x0000000198abdd00 libsystem_pthread.dylib`_pthread_start + 136
thread #5
frame #0: 0x0000000198a7a9ec libsystem_kernel.dylib`__workq_kernreturn + 8
thread #6, name = 'HIE: M_ 71dd80c36225616 2026-09-20 21:47:10,793'
frame #0: 0x0000000198a78c20 libsystem_kernel.dylib`mach_msg2_trap + 8
frame #1: 0x0000000198a8b8e0 libsystem_kernel.dylib`mach_msg2_internal + 76
frame #2: 0x0000000198aa9784 libsystem_kernel.dylib`thread_suspend + 108
frame #3: 0x00000001a00eaeb4 HIServices`SOME_OTHER_THREAD_SWALLOWED_AT_LEAST_ONE_EXCEPTION + 20
frame #4: 0x000000019a27aca8 Foundation`__NSThread__start__ + 732
frame #5: 0x0000000198abdd00 libsystem_pthread.dylib`_pthread_start + 136
-------------- next part --------------
(lldb) target create "/private/tmp/aven-wx32-15rk1308/aven-wx32-install/bin/aven"
Current executable set to '/private/tmp/aven-wx32-15rk1308/aven-wx32-install/bin/aven' (arm64).
(lldb) settings set -- target.run-args "/Users/dariuszlubomski/proj/Jaskiniowy-Kataster-Tatr-Zachodnich/KATASTER.3d"
(lldb) run
2026-09-20 22:02:09.533960+0200 aven[25832:2036219] [Connection] Unable to get synchronousRemoteObjectProxy, error: Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.linkd.autoShortcut" UserInfo={NSDebugDescription=connection to service named com.apple.linkd.autoShortcut}
2026-09-20 22:02:09.534347+0200 aven[25832:2036241] [Connection] Unable to get synchronousRemoteObjectProxy, error: Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.linkd.autoShortcut" UserInfo={NSDebugDescription=connection to service named com.apple.linkd.autoShortcut}
2026-09-20 22:02:09.534377+0200 aven[25832:2036241] [Connection] Unable to re-register with Process Instance Registry, error: Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.linkd.autoShortcut" UserInfo={NSDebugDescription=connection to service named com.apple.linkd.autoShortcut}
2026-09-20 22:02:09.534396+0200 aven[25832:2036219] [Application] Error registering app with intents framework: Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.linkd.autoShortcut" UserInfo={NSDebugDescription=connection to service named com.apple.linkd.autoShortcut}
2026-09-20 22:02:09.534648+0200 aven[25832:2036243] [Connection] Unable to get synchronousRemoteObjectProxy, error: Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.linkd.autoShortcut" UserInfo={NSDebugDescription=connection to service named com.apple.linkd.autoShortcut}
2026-09-20 22:02:09.534661+0200 aven[25832:2036243] [Connection] Unable to re-register with Process Instance Registry, error: Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.linkd.autoShortcut" UserInfo={NSDebugDescription=connection to service named com.apple.linkd.autoShortcut}
2026-09-20 22:02:09.534882+0200 aven[25832:2036219] [Connection] Will NOT re-try to establish the connection
2026-09-20 22:02:09.534900+0200 aven[25832:2036220] [Connection] Unable to get synchronousRemoteObjectProxy, error: Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.linkd.autoShortcut" UserInfo={NSDebugDescription=connection to service named com.apple.linkd.autoShortcut}
2026-09-20 22:02:09.534909+0200 aven[25832:2036220] [Connection] Unable to re-register with Process Instance Registry, error: Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.linkd.autoShortcut" UserInfo={NSDebugDescription=connection to service named com.apple.linkd.autoShortcut}
2026-09-20 22:02:09.682917+0200 aven[25832:2036179] [WindowTab] Cannot index window tabs due to missing main bundle identifier
2026-09-20 22:02:10.905131+0200 aven[25832:2036179] [Gestures] Gesture recognizer support has been disabled because NSTabView subclass wxNSTabView overrides mouseDown:, mouseDragged:, or mouseUp:
2026-09-20 22:02:10.911371+0200 aven[25832:2036179] [AppKit] Invalid view geometry: width is negative.
2026-09-20 22:02:10.911760+0200 aven[25832:2036179] [AppKit] Invalid view geometry: width is negative.
2026-09-20 22:02:10.911790+0200 aven[25832:2036179] [AppKit] Invalid view geometry: width is negative.
2026-09-20 22:02:10.929727+0200 aven[25832:2036179] [AppKit] Invalid view geometry: width is negative.
2026-09-20 22:02:10.931178+0200 aven[25832:2036179] [AppKit] Invalid view geometry: width is negative.
2026-09-20 22:02:10.946518+0200 aven[25832:2036179] [general] *** Assertion failure in -[CUINamedVectorGlyph _rasterizeImageUsingScaleFactor:forTargetSize:renderingMode:colorResolver:], CUINamedVectorGlyph.m:2599
2026-09-20 22:02:10.960822+0200 aven[25832:2036179] [HIExceptions] FAULT: NSInternalInconsistencyException: Invalid parameter not satisfying: targetSizeInPoints.width>0 && targetSizeInPoints.height>0; {
NSAssertFile = "CUINamedVectorGlyph.m";
NSAssertLine = 2599;
}
2026-09-20 22:02:10.961097+0200 aven[25832:2036179] [General] Invalid parameter not satisfying: targetSizeInPoints.width>0 && targetSizeInPoints.height>0
2026-09-20 22:02:10.961104+0200 aven[25832:2036179] [General] 0 CoreFoundation 0x0000000198bee8c0 __exceptionPreprocess + 176
2026-09-20 22:02:10.961108+0200 aven[25832:2036179] [General] 1 libobjc.A.dylib 0x000000019864c60c objc_exception_throw + 88
2026-09-20 22:02:10.961112+0200 aven[25832:2036179] [General] 2 Foundation 0x000000019a3354d8 -[NSCalendarDate initWithCoder:] + 0
2026-09-20 22:02:10.961115+0200 aven[25832:2036179] [General] 3 CoreUI 0x00000001a37e4608 -[CUINamedVectorGlyph _rasterizeImageUsingScaleFactor:forTargetSize:renderingMode:colorResolver:] + 184
2026-09-20 22:02:10.961117+0200 aven[25832:2036179] [General] 4 CoreUI 0x00000001a3714098 __64-[CUINamedVectorGlyph _imageForRenderingMode:withColorResolver:]_block_invoke + 1316
2026-09-20 22:02:10.961120+0200 aven[25832:2036179] [General] 5 CoreUI 0x00000001a37e4318 -[CUINamedVectorGlyph _performWithLockedRenditions:] + 192
2026-09-20 22:02:10.961122+0200 aven[25832:2036179] [General] 6 CoreUI 0x00000001a3710a7c -[CUINamedVectorGlyph _imageForRenderingMode:withColorResolver:] + 136
2026-09-20 22:02:10.961124+0200 aven[25832:2036179] [General] 7 CoreUI 0x00000001a36ffac4 -[CUINamedVectorGlyph image] + 124
2026-09-20 22:02:10.961126+0200 aven[25832:2036179] [General] 8 RenderBox 0x00000001bfb93374 _ZNK2RB6Symbol12Presentation14template_imageEv + 560
2026-09-20 22:02:10.961129+0200 aven[25832:2036179] [General] 9 RenderBox 0x00000001bfc34eec RBSymbolUpdateTemplateImage + 36
2026-09-20 22:02:10.961131+0200 aven[25832:2036179] [General] 10 SwiftUICore 0x000000023cc97404 $s7SwiftUI020_ShapeStyle_RenderedC0V17renderVectorGlyph33_3890C65F12EA82A4BC5FBD33046B67FALL_4size11orientation4name6styles6layersyAA08ResolvedgH0V_So6CGSizeVAA5ImageV11OrientationOAA01_cD5_NameOAA01_cD5_PackVAA01_cd1_E6LayersVztFTf4ndnnnnn_n + 436
2026-09-20 22:02:10.961134+0200 aven[25832:2036179] [General] 11 SwiftUICore 0x000000023cc8c12c $s7SwiftUI020_ShapeStyle_RenderedC0V10renderItem4name6styles6layersyAA01_cD5_NameO_AA01_cD5_PackVyXKAA01_cd1_E6LayersVztF + 644
2026-09-20 22:02:10.961137+0200 aven[25832:2036179] [General] 12 SwiftUICore 0x000000023c7b6620 $s7SwiftUI22ShapeStyledDisplayList33_E1641985C375D8826E6966D4F238A1B8LLV11updateValueyyFAA5ImageVAAE8ResolvedV_Tg5 + 2200
2026-09-20 22:02:10.961145+0200 aven[25832:2036179] [General] 13 SwiftUICore 0x000000023c881338 $s14AttributeGraph0A0VyACyxGqd__c5ValueQyd__RszAA12StatefulRuleRd__lufcADSPyqd__GXEfU_ySv_So11AGAttributeatcyXEfU_ySv_AJtcfu_7SwiftUI11DisplayListV_AK011ShapeStylediJ033_E1641985C375D8826E6966D4F238A1B8LLVyAK5ImageVAKE8ResolvedVGTt1g5 + 24
2026-09-20 22:02:10.961149+0200 aven[25832:2036179] [General] 14 AttributeGraph 0x00000001d2899ef8 _ZN2AG5Graph11UpdateStack6updateEv + 528
2026-09-20 22:02:10.961152+0200 aven[25832:2036179] [General] 15 AttributeGraph 0x00000001d289a688 _ZN2AG5Graph16update_attributeENS_4data3ptrINS_4NodeEEEj + 356
2026-09-20 22:02:10.961156+0200 aven[25832:2036179] [General] 16 AttributeGraph 0x00000001d28a2720 _ZN2AG5Graph20input_value_ref_slowENS_4data3ptrINS_4NodeEEENS_11AttributeIDEjjPK15AGSwiftMetadataRhl + 588
2026-09-20 22:02:10.961160+0200 aven[25832:2036179] [General] 17 AttributeGraph 0x00000001d28bb100 AGGraphGetValue + 268
2026-09-20 22:02:10.961163+0200 aven[25832:2036179] [General] 18 SwiftUICore 0x000000023c874978 $s7SwiftUI23InterpolatedDisplayList33_7377A3587909D054D379011E12826F37LLV11updateValueyyFAA5ImageVAAE8ResolvedV_Tg5 + 1908
2026-09-20 22:02:10.961165+0200 aven[25832:2036179] [General] 19 SwiftUICore 0x000000023c8812f0 $s14AttributeGraph0A0VyACyxGqd__c5ValueQyd__RszAA12StatefulRuleRd__lufcADSPyqd__GXEfU_ySv_So11AGAttributeatcyXEfU_ySv_AJtcfu_7SwiftUI11DisplayListV_AK012InterpolatediJ033_7377A3587909D054D379011E12826F37LLVyAK5ImageVAKE8ResolvedVGTt1g5 + 24
2026-09-20 22:02:10.961167+0200 aven[25832:2036179] [General] 20 AttributeGraph 0x00000001d2899ef8 _ZN2AG5Graph11UpdateStack6updateEv + 528
2026-09-20 22:02:10.961170+0200 aven[25832:2036179] [General] 21 AttributeGraph 0x00000001d28a994c _ZN2AG8Subgraph6updateEj + 944
2026-09-20 22:02:10.961172+0200 aven[25832:2036179] [General] 22 SwiftUICore 0x000000023cfb9178 $s7SwiftUI9GraphHostC14runTransactionyyF + 208
2026-09-20 22:02:10.961175+0200 aven[25832:2036179] [General] 23 SwiftUICore 0x000000023d512ef0 $s7SwiftUI9ViewGraphC13updateOutputs2atyAA4TimeV_tF + 152
2026-09-20 22:02:10.961177+0200 aven[25832:2036179] [General] 24 SwiftUICore 0x000000023d50c7b8 $s7SwiftUI25ViewGraphRootValueUpdaterPAAE6render8interval17updateDisplayList15targetTimestampySd_SbAA4TimeVSgtFyyXEfU_ + 776
2026-09-20 22:02:10.961179+0200 aven[25832:2036179] [General] 25 SwiftUICore 0x000000023d50aa84 $s7SwiftUI25ViewGraphRootValueUpdaterPAAE6render8interval17updateDisplayList15targetTimestampySd_SbAA4TimeVSgtF + 608
2026-09-20 22:02:10.961182+0200 aven[25832:2036179] [General] 26 AppKit 0x000000019e0665f4 __swift_closure_destructor.11 + 16084
2026-09-20 22:02:10.961184+0200 aven[25832:2036179] [General] 27 AppKit 0x000000019df70a70 __swift_memcpy0_1 + 252
2026-09-20 22:02:10.961187+0200 aven[25832:2036179] [General] 28 AppKit 0x000000019d46e9d8 -[NSApplication _terminateFromSender:askIfShouldTerminate:saveWindows:] + 66988
2026-09-20 22:02:10.961190+0200 aven[25832:2036179] [General] 29 AppKit 0x000000019d14b280 +[NSAnimationContext runAnimationGroup:] + 56
2026-09-20 22:02:10.961193+0200 aven[25832:2036179] [General] 30 AppKit 0x000000019e063230 __swift_closure_destructor.11 + 2832
2026-09-20 22:02:10.961196+0200 aven[25832:2036179] [General] 31 AppKit 0x000000019e05484c __swift__destructor.144 + 5860
2026-09-20 22:02:10.961201+0200 aven[25832:2036179] [General] 32 AppKit 0x000000019e054880 __swift__destructor.144 + 5912
2026-09-20 22:02:10.961204+0200 aven[25832:2036179] [General] 33 AppKit 0x000000019e148228 __swift__destructor.26 + 260
2026-09-20 22:02:10.961207+0200 aven[25832:2036179] [General] 34 AppKit 0x000000019e148250 __swift__destructor.26 + 300
2026-09-20 22:02:10.961210+0200 aven[25832:2036179] [General] 35 AppKit 0x000000019e1f92b0 __swift_memcpy18_8 + 11648
2026-09-20 22:02:10.961215+0200 aven[25832:2036179] [General] 36 AppKit 0x000000019e1f98ac __swift_memcpy18_8 + 13180
2026-09-20 22:02:10.961218+0200 aven[25832:2036179] [General] 37 AppKit 0x000000019db67ab8 ___NSViewLayout_block_invoke + 644
2026-09-20 22:02:10.961220+0200 aven[25832:2036179] [General] 38 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 22:02:10.961222+0200 aven[25832:2036179] [General] 39 AppKit 0x000000019d17a4a8 _NSViewLayout + 96
2026-09-20 22:02:10.961225+0200 aven[25832:2036179] [General] 40 AppKit 0x000000019db5cbb4 __36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 380
2026-09-20 22:02:10.961228+0200 aven[25832:2036179] [General] 41 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 22:02:10.961231+0200 aven[25832:2036179] [General] 42 AppKit 0x000000019d17a43c -[NSView _layoutSubtreeWithOldSize:] + 100
2026-09-20 22:02:10.961234+0200 aven[25832:2036179] [General] 43 AppKit 0x000000019db5ccf8 __36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
2026-09-20 22:02:10.961236+0200 aven[25832:2036179] [General] 44 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 22:02:10.961238+0200 aven[25832:2036179] [General] 45 AppKit 0x000000019d17a43c -[NSView _layoutSubtreeWithOldSize:] + 100
2026-09-20 22:02:10.961240+0200 aven[25832:2036179] [General] 46 AppKit 0x000000019db5ccf8 __36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
2026-09-20 22:02:10.961242+0200 aven[25832:2036179] [General] 47 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 22:02:10.961246+0200 aven[25832:2036179] [General] 48 AppKit 0x000000019d17a43c -[NSView _layoutSubtreeWithOldSize:] + 100
2026-09-20 22:02:10.961248+0200 aven[25832:2036179] [General] 49 AppKit 0x000000019db5ccf8 __36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
2026-09-20 22:02:10.961250+0200 aven[25832:2036179] [General] 50 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 22:02:10.961253+0200 aven[25832:2036179] [General] 51 AppKit 0x000000019d17a43c -[NSView _layoutSubtreeWithOldSize:] + 100
2026-09-20 22:02:10.961255+0200 aven[25832:2036179] [General] 52 AppKit 0x000000019db5ccf8 __36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
2026-09-20 22:02:10.961258+0200 aven[25832:2036179] [General] 53 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 22:02:10.961261+0200 aven[25832:2036179] [General] 54 AppKit 0x000000019d17a43c -[NSView _layoutSubtreeWithOldSize:] + 100
2026-09-20 22:02:10.961264+0200 aven[25832:2036179] [General] 55 AppKit 0x000000019db5ccf8 __36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
2026-09-20 22:02:10.961267+0200 aven[25832:2036179] [General] 56 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 22:02:10.961269+0200 aven[25832:2036179] [General] 57 AppKit 0x000000019d17a43c -[NSView _layoutSubtreeWithOldSize:] + 100
2026-09-20 22:02:10.961271+0200 aven[25832:2036179] [General] 58 AppKit 0x000000019db5d748 __56-[NSView _layoutSubtreeIfNeededAndAllowTemporaryEngine:]_block_invoke + 876
2026-09-20 22:02:10.961274+0200 aven[25832:2036179] [General] 59 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 22:02:10.961276+0200 aven[25832:2036179] [General] 60 AppKit 0x000000019d17a00c -[NSView _layoutSubtreeIfNeededAndAllowTemporaryEngine:] + 100
2026-09-20 22:02:10.961278+0200 aven[25832:2036179] [General] 61 AppKit 0x000000019d175b5c NSPerformVisuallyAtomicChange + 128
2026-09-20 22:02:10.961281+0200 aven[25832:2036179] [General] 62 AppKit 0x000000019d179f9c -[NSView layoutSubtreeIfNeeded] + 96
2026-09-20 22:02:10.961283+0200 aven[25832:2036179] [General] 63 AppKit 0x000000019de74754 -[NSWindow(NSConstraintBasedLayoutInternal) _layoutViewTree] + 108
2026-09-20 22:02:10.961290+0200 aven[25832:2036179] [General] 64 AppKit 0x000000019d177d08 -[NSWindow _oldPlaceWindow:fromServer:] + 640
2026-09-20 22:02:10.961293+0200 aven[25832:2036179] [General] 65 AppKit 0x000000019d177114 -[NSWindow _setFrameCommon:display:fromServer:] + 1888
2026-09-20 22:02:10.961295+0200 aven[25832:2036179] [General] 66 AppKit 0x000000019db7aa18 -[NSWindow _zoomToScreen:isMoveToiPad:] + 288
2026-09-20 22:02:10.961297+0200 aven[25832:2036179] [General] 67 aven 0x0000000100001710 _ZN4Aven6OnInitEv + 1424
2026-09-20 22:02:10.961299+0200 aven[25832:2036179] [General] 68 libwx_osx_cocoau_core-3.2.0.4.3.dyl 0x00000001009cbb28 _ZN5wxApp10CallOnInitEv + 152
2026-09-20 22:02:10.961302+0200 aven[25832:2036179] [General] 69 libwx_baseu-3.2.0.4.3.dylib 0x0000000100512628 _Z7wxEntryRiPPw + 84
2026-09-20 22:02:10.961304+0200 aven[25832:2036179] [General] 70 aven 0x0000000100001054 main + 280
2026-09-20 22:02:10.961307+0200 aven[25832:2036179] [General] 71 dyld 0x00000001986e7e80 start + 6688
Process 25832 launched: '/private/tmp/aven-wx32-15rk1308/aven-wx32-install/bin/aven' (arm64)
Process 25832 stopped
* thread #1, queue = 'com.apple.main-thread', stop reason = EXC_BREAKPOINT (code=1, subcode=0x19d4d4dd8)
frame #0: 0x000000019d4d4dd8 AppKit`+[NSApplication _crashOnException:] + 268
AppKit`+[NSApplication _crashOnException:]:
-> 0x19d4d4dd8 <+268>: brk #0x1
0x19d4d4ddc <+272>: ldr x8, [sp, #0x30]
0x19d4d4de0 <+276>: ldr x25, [x8]
0x19d4d4de4 <+280>: adrp x8, 4060
Target 0: (aven) stopped.
(lldb) thread backtrace all
* thread #1, queue = 'com.apple.main-thread', stop reason = EXC_BREAKPOINT (code=1, subcode=0x19d4d4dd8)
* frame #0: 0x000000019d4d4dd8 AppKit`+[NSApplication _crashOnException:] + 268
frame #1: 0x000000019e1f96c0 AppKit`___lldb_unnamed_symbol_185fc8d24 + 2460
frame #2: 0x000000019e1f98ac AppKit`___lldb_unnamed_symbol_185fc9890 + 28
frame #3: 0x000000019db67ab8 AppKit`___NSViewLayout_block_invoke + 644
frame #4: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #5: 0x000000019d17a4a8 AppKit`_NSViewLayout + 96
frame #6: 0x000000019db5cbb4 AppKit`__36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 380
frame #7: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #8: 0x000000019d17a43c AppKit`-[NSView _layoutSubtreeWithOldSize:] + 100
frame #9: 0x000000019db5ccf8 AppKit`__36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
frame #10: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #11: 0x000000019d17a43c AppKit`-[NSView _layoutSubtreeWithOldSize:] + 100
frame #12: 0x000000019db5ccf8 AppKit`__36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
frame #13: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #14: 0x000000019d17a43c AppKit`-[NSView _layoutSubtreeWithOldSize:] + 100
frame #15: 0x000000019db5ccf8 AppKit`__36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
frame #16: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #17: 0x000000019d17a43c AppKit`-[NSView _layoutSubtreeWithOldSize:] + 100
frame #18: 0x000000019db5ccf8 AppKit`__36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
frame #19: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #20: 0x000000019d17a43c AppKit`-[NSView _layoutSubtreeWithOldSize:] + 100
frame #21: 0x000000019db5ccf8 AppKit`__36-[NSView _layoutSubtreeWithOldSize:]_block_invoke + 704
frame #22: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #23: 0x000000019d17a43c AppKit`-[NSView _layoutSubtreeWithOldSize:] + 100
frame #24: 0x000000019db5d748 AppKit`__56-[NSView _layoutSubtreeIfNeededAndAllowTemporaryEngine:]_block_invoke + 876
frame #25: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #26: 0x000000019d17a00c AppKit`-[NSView _layoutSubtreeIfNeededAndAllowTemporaryEngine:] + 100
frame #27: 0x000000019d175b5c AppKit`NSPerformVisuallyAtomicChange + 128
frame #28: 0x000000019d179f9c AppKit`-[NSView layoutSubtreeIfNeeded] + 96
frame #29: 0x000000019de74754 AppKit`-[NSWindow(NSConstraintBasedLayoutInternal) _layoutViewTree] + 108
frame #30: 0x000000019d177d08 AppKit`-[NSWindow _oldPlaceWindow:fromServer:] + 640
frame #31: 0x000000019d177114 AppKit`-[NSWindow _setFrameCommon:display:fromServer:] + 1888
frame #32: 0x000000019db7aa18 AppKit`-[NSWindow _zoomToScreen:isMoveToiPad:] + 288
frame #33: 0x0000000100001710 aven`Aven::OnInit(this=0x000000010dc4f6f0) at aven.cc:360:11 [opt]
frame #34: 0x00000001009cbb28 libwx_osx_cocoau_core-3.2.0.4.3.dylib`wxApp::CallOnInit() + 152
frame #35: 0x0000000100512628 libwx_baseu-3.2.0.4.3.dylib`wxEntry(int&, wchar_t**) + 84
frame #36: 0x0000000100001054 aven`main(argc=2, argv=0x000000016fdfeee0) at aven.cc:231:12 [opt]
frame #37: 0x00000001986e7e80 dyld`start + 6688
thread #2
frame #0: 0x0000000198a7a9ec libsystem_kernel.dylib`__workq_kernreturn + 8
thread #3
frame #0: 0x0000000198a7a9ec libsystem_kernel.dylib`__workq_kernreturn + 8
thread #4, name = 'com.apple.NSEventThread'
frame #0: 0x0000000198a78c20 libsystem_kernel.dylib`mach_msg2_trap + 8
frame #1: 0x0000000198a8b8e0 libsystem_kernel.dylib`mach_msg2_internal + 76
frame #2: 0x0000000198a81a28 libsystem_kernel.dylib`mach_msg_overwrite + 480
frame #3: 0x0000000198a78fac libsystem_kernel.dylib`mach_msg + 24
frame #4: 0x0000000198b7eaec CoreFoundation`__CFRunLoopServiceMachPort + 160
frame #5: 0x0000000198b7d334 CoreFoundation`__CFRunLoopRun + 1172
frame #6: 0x0000000198c5782c CoreFoundation`_CFRunLoopRunSpecificWithOptions + 536
frame #7: 0x000000019d258844 AppKit`_NSEventThread + 184
frame #8: 0x0000000198abdd00 libsystem_pthread.dylib`_pthread_start + 136
thread #5
frame #0: 0x0000000198a7a9ec libsystem_kernel.dylib`__workq_kernreturn + 8
thread #6
frame #0: 0x0000000198a7a9ec libsystem_kernel.dylib`__workq_kernreturn + 8
thread #7, name = 'HIE: M_ 71dd80c36225616 2026-09-20 22:02:10,956'
frame #0: 0x0000000198a78c20 libsystem_kernel.dylib`mach_msg2_trap + 8
frame #1: 0x0000000198a8b8e0 libsystem_kernel.dylib`mach_msg2_internal + 76
frame #2: 0x0000000198aa9784 libsystem_kernel.dylib`thread_suspend + 108
frame #3: 0x00000001a00eaeb4 HIServices`SOME_OTHER_THREAD_SWALLOWED_AT_LEAST_ONE_EXCEPTION + 20
frame #4: 0x000000019a27aca8 Foundation`__NSThread__start__ + 732
frame #5: 0x0000000198abdd00 libsystem_pthread.dylib`_pthread_start + 136
More information about the Survex
mailing list