mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Users frequently run into a missing runtime symbol for Cxx exceptions (`_swift_exceptionPersonality`) when mixing Embedded Swift and Cxx with exceptions enabled. This leads to a confusing an hard to debug linker error. This commit adds an implementation of this function to the Embedded Swift runtime which simply fatal errors if a cxx exception is caught in a Swift frame. Issue: rdar://164423867 Issue: #85490