mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Using `SwiftShims` is undesirable - it creates all kinds of build issues, and means shipping the `_SwiftBacktracing.h` header in the SDK, which is not necessary. While we're doing this, add the necessary definitions for reading ELF and DWARF information. rdar://110261712
13 lines
185 B
Plaintext
13 lines
185 B
Plaintext
module ImageFormats {
|
|
module Elf {
|
|
header "Elf/elf.h"
|
|
export *
|
|
}
|
|
module Dwarf {
|
|
header "Dwarf/dwarf.h"
|
|
header "Dwarf/eh_frame_hdr.h"
|
|
export *
|
|
}
|
|
export *
|
|
}
|