Cannot debug Swift module/framework embedded in Objective-C app

19,037

Solution 1

tl:dr

Add a user defined setting under "Build Settings" for your app target.

SWIFT_VERSION = 2.3

SWIFT_VERSION = 2.3 — Build Settings

More Info

I'm unsure if this is an Xcode 8 bug or if it's Apple policy (to try an force developers to Swift 3.0?). But... by default Xcode 8 installs the Swift 3.0 versions of the standard Swift runtime libraries.

When it comes to debugging with LLDM the Swift 2.3 modules fail to load (in to the Swift 3.0 runtime).

Forcing the app to use Swift 2.3 (or legacy Swift as Apple call it), fixes the issue.

Swift apps have this setting exposed by Xcode but you have to manually add it for an Objective-C app.

Further Advice

Port your Swift 2.3 code to Swift 3.0 as soon as possible, Apple won't support 2.x for very long.

Solution 2

For me it was just as simple as it was painful and time consuming:

import SDWebImage was the PROBLEM, because one of the frameworks had the SDWebImage already packed in it(and I couldn't see it), and that framework happened to be Objective-C, and the app was Swift. I also added the SDWebImage to the project, because I use it in the classes I write, and that what created the mess the Xcode debugger couldn't deal with. So basically, make sure you don't have ANYTHING duplicated in ANY way, I'd check for common things like SDWebImage for example.

Solution 3

use fr v instead po for debugging

For more debugging https://www.codeproject.com/Articles/1181358/Debugging-with-Xcode

Solution 4

I discussed this issue with an Apple engineer named Sean at WWDC 2017.

My team spent weeks trying to figure this out, and it ended up being a bug on Apple's compiler, which we could never have figured out by ourselves. Also, it has a VERY easy workaround.

There happens to be a bug with the way the compiling flags get aggregated from the frameworks and the project, and the "pure Objective-C" project "activates" it.

Solution: add one single, empty Swift file ("Whatever.swift", or whatever) in your Objective-C project, making it not-pure-objective-c anymore (new->file->Swift file, don't create the bridging header. The file will only contain the import of Foundation).

And that's it. Problem solved.

Solution 5

In my case, I had to remove Objective-C Bridging header from build settings file. My Bridging header file did not do anything.. so it was okay.

Share:
19,037
Richard Stelling
Author by

Richard Stelling

Tech geek and hopelessly optimistic about my pessimistic outlook. http://www.richardstelling.com http://twitter.com/rjstelling http://careers.stackoverflow.com/rjstelling SOreadytohelp

Updated on June 02, 2022

Comments

  • Richard Stelling
    Richard Stelling almost 2 years

    Alternative titles (to aid searching)

    • Cannot debug Swift 2.3 framework linked to an Objective-C app in Xcode 8
    • error in auto-import: failed to get module 'XYZ' from AST context Xcode 8
    • Xcode 8 cannot debug Swift framework
    • warning: Swift error in module <XYZ>
    • Workaround for; Xcode Debugger cannot debug apps written in Objective-C only but that link against frameworks written in Swift only. (28312362)

    I have an app written in Objective-C that links against some modules (frameworks) written in Swift 2.x.

    Question

    Everything (debugging etc.) works fine in , however when moving to and updating the modules to use I was unable to debug the modules.

    LLDB reported these errors:

    warning: Swift error in module XYZ.
    Debug info from this module will be unavailable in the debugger.
    
    error: in auto-import:
    failed to get module 'ABC' from AST context
    

    This does not happen if I link the modules to an app built in Swift 2.3.