Post

Replies

Boosts

Views

Activity

Reply to After updating to Xcode 16.3, getting the error - Symbol not found: ___cxa_current_primary_exception
the workaround about this is forcing link order, preceding libc++abi.dylib over libc++.dylib. Thanks, After adding the following settings to Other Linker Flags, the app no longer crashes on Xcode 16.4 with iOS versions earlier than 18.4 — at least for now: -Wl,-force_load,$(SDKROOT)/usr/lib/libc++abi.tbd -Wl,-weak_library,$(SDKROOT)/usr/lib/libc++.tbd -Wl,-weak_library,$(SDKROOT)/usr/lib/libc++.1.tbd I hope this issue will be properly addressed in the next Xcode update.
May ’25