mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[Backtracing] Rename _Backtracing to Runtime.
Move the backtracing code into a new Runtime module. This means renaming the Swift Runtime's CMake target because otherwise there will be a name clash. rdar://124913332
This commit is contained in:
37
stdlib/public/RuntimeModule/modules/module.modulemap
Normal file
37
stdlib/public/RuntimeModule/modules/module.modulemap
Normal file
@@ -0,0 +1,37 @@
|
||||
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 *
|
||||
}
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user