Problem: I create a framework (SQLite.swift) written in Swift using Xcode 7.3.1 and trying to check debug information with dwarfdump , but I get the following output:
File: SQLite.swift-master/Output/SQLite_GR-Debug-iphoneuniversal/SQLite.framework/SQLite (arm64) ---------------------------------------------------------------------- .debug_info contents: < EMPTY >
Why: I need to check the debugging information to find out why the infrastructure will not work in another user session, which, as I suspect, may appear for hard-coded paths during build.
My goal is to configure (afaict) to allow debugging characters. Is there a specific option to make sure dwarf information is present?

source share