mirror of
https://github.com/apple/swift.git
synced 2026-06-27 12:25:55 +02:00
d8552ceb9e
Adjust the IRGen for ObjC interop to ensure that the section that metadata is emitted into the correct section for non-MachO targets. This also adds a more comprehensive test for ensuring that the IRGen can now be tested on all targets. Since the ObjC interop is now controllable via the driver, this test does not require that the objc_interop feature is present as it is a IRGen test. This is the first step to remove the `REQUIRES: objc_interop` from the IRGen tests.
29 lines
349 B
Plaintext
29 lines
349 B
Plaintext
|
|
module gizmo {
|
|
header "Gizmo.h"
|
|
}
|
|
|
|
module SRoA {
|
|
header "SRoA.h"
|
|
}
|
|
|
|
module ObjectiveC {
|
|
header "BridgeTestObjectiveC.h"
|
|
}
|
|
|
|
module CoreCooling {
|
|
header "CoreCooling.h"
|
|
}
|
|
|
|
module Foundation {
|
|
header "BridgeTestFoundation.h"
|
|
}
|
|
|
|
module CoreFoundation {
|
|
header "BridgeTestCoreFoundation.h"
|
|
}
|
|
|
|
module ObjCInterop {
|
|
header "ObjCInterop.h"
|
|
}
|