Files
swift-mirror/stdlib/public/RuntimeModule/modules/module.modulemap
Alastair Houghton d13988bd5f [Backtracing][Windows] Initial Windows support.
This doesn't have a working symbolicator yet, but it does build and
it can obtain a basic backtrace.

It also doesn't include a working `swift-backtrace` program yet.

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

43 lines
825 B
Plaintext

module BacktracingImpl {
module ImageFormats {
module Elf {
header "ImageFormats/Elf/elf.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
}
}