Files
swift-mirror/stdlib/public/RuntimeModule/modules/module.modulemap
Alastair Houghton 7f57385be4 [Backtracing][Windows] Add PE file parsing and DWARF-in-PE support.
This should allow us to get symbolicated backtraces for Swift code
that is built with DWARF debug information.

rdar://181623384
2026-02-03 18:23:29 +00:00

48 lines
936 B
Plaintext

module BacktracingImpl {
module ImageFormats {
module Elf {
header "ImageFormats/Elf/elf.h"
requires cplusplus
export *
}
module PeCoff {
header "ImageFormats/PeCoff/pe-coff.h"
requires cplusplus
export *
}
module Dwarf {
header "ImageFormats/Dwarf/dwarf.h"
header "ImageFormats/Dwarf/eh_frame_hdr.h"
requires cplusplus
export *
}
module CodeView {
header "ImageFormats/CodeView/codeview.h"
requires cplusplus
export *
}
export *
}
module OS {
module Darwin { header "OS/Darwin.h" }
module Windows { header "OS/Windows.h" }
module Libc { header "OS/Libc.h" }
}
module Runtime {
header "Runtime/Runtime.h"
requires cplusplus
}
module FixedLayout {
header "FixedLayout.h"
requires cplusplus
}
module CompressionLibs {
header "Compression.h"
requires cplusplus
}
}