Files
swift-mirror/stdlib/public/SwiftShims/swift/shims/module.modulemap
Alex Lorenz a24ebeaa51 [interop][SwiftToCxx] install _SwiftCxxInteroperability.h header as part of compiler build, not stdlib
The _SwiftCxxInteroperability.h is too tightly coupled to the compiler right now and should not be shipped with the standard library. In the future it could be moved back to the standard library.
2022-09-28 16:14:33 -07:00

33 lines
684 B
Plaintext

module SwiftShims {
header "AssertionReporting.h"
header "CoreFoundationShims.h"
header "FoundationShims.h"
header "GlobalObjects.h"
header "HeapObject.h"
header "KeyPath.h"
header "LibcShims.h"
header "MetadataSections.h"
header "Random.h"
header "RefCount.h"
header "Reflection.h"
header "RuntimeShims.h"
header "RuntimeStubs.h"
header "SwiftStdbool.h"
header "SwiftStddef.h"
header "SwiftStdint.h"
header "System.h"
header "ThreadLocalStorage.h"
header "UnicodeData.h"
header "Visibility.h"
export *
}
module _SwiftConcurrencyShims {
header "_SwiftConcurrency.h"
}
module SwiftOverlayShims {
header "LibcOverlayShims.h"
export *
}