File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -856,7 +856,10 @@ function(_compile_swift_files
856
856
if (SWIFT_INCLUDE_TOOLS AND NOT BOOTSTRAPPING_MODE STREQUAL "CROSSCOMPILE" )
857
857
# Depend on the binary itself, in addition to the symlink, unless
858
858
# cross-compiling the compiler.
859
- set (swift_compiler_tool_dep "swift-frontend${target_suffix} " )
859
+ list (APPEND swift_compiler_tool_dep "swift-frontend${target_suffix} " )
860
+
861
+ # If we aren't cross compiling, also depend on SwiftMacros.
862
+ list (APPEND swift_compiler_tool_dep SwiftMacros )
860
863
endif ()
861
864
862
865
# If there are more than one output files, we assume that they are specified
Original file line number Diff line number Diff line change 1
1
// RUN: %target-swift-frontend -disable-availability-checking -strict-concurrency=complete %s -emit-sil -o /dev/null -verify -verify-additional-prefix complete- -disable-region-based-isolation-with-strict-concurrency
2
2
// RUN: %target-swift-frontend -disable-availability-checking -strict-concurrency=complete %s -emit-sil -o /dev/null -verify
3
3
4
+ // REQUIRES: asserts
4
5
// REQUIRES: concurrency
5
6
// REQUIRES: swift_swift_parser
6
7
You can’t perform that action at this time.
0 commit comments