File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -872,6 +872,13 @@ if(SWIFT_BUILD_SWIFT_SYNTAX)
872
872
message (WARNING "Force setting BOOTSTRAPPING=HOSTTOOLS because Swift parser integration is enabled" )
873
873
set (BOOTSTRAPPING_MODE "HOSTTOOLS" )
874
874
endif ()
875
+
876
+ # We cannot mix the parser using host tools and SwiftCompilerSources uses bootstrapping
877
+ if (BOOTSTRAPPING_MODE MATCHES "BOOTSTRAPPING.*" )
878
+ message (WARNING "Force setting BOOTSTRAPPING=HOSTTOOLS because Swift parser integration is enabled" )
879
+ set (BOOTSTRAPPING_MODE "HOSTTOOLS" )
880
+ endif ()
881
+
875
882
add_definitions (-DSWIFT_BUILD_SWIFT_SYNTAX )
876
883
endif ()
877
884
Original file line number Diff line number Diff line change 16
16
17
17
// -enable-experimental-feature requires an asserts build
18
18
// REQUIRES: asserts
19
- // rdar://116686158
20
- // UNSUPPORTED: asan
21
19
22
20
// NB: Ridiculous formatting to test that we do not include leading trivia in locations.
23
21
Original file line number Diff line number Diff line change 2
2
3
3
// -enable-experimental-feature requires an asserts build
4
4
// REQUIRES: asserts
5
- // rdar://116686158
6
- // UNSUPPORTED: asan
7
5
8
6
protocol P { }
9
7
protocol Q { }
You can’t perform that action at this time.
0 commit comments