File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -22,17 +22,11 @@ let package = Package(
22
22
. target( name: " SwiftInspectClient " , condition: . when( platforms: [ . windows] ) ) ,
23
23
. target( name: " SwiftInspectClientInterface " , condition: . when( platforms: [ . windows] ) ) ,
24
24
] ,
25
- swiftSettings: [
26
- . unsafeFlags( [
27
- " -parse-as-library " ,
28
- " -Xcc " ,
29
- " -Xclang " ,
30
- " -Xcc " ,
31
- " -fno-split-cold-code " , // Workaround https://github.com/llvm/llvm-project/issues/40056
32
- ] ) ,
33
- ] ) ,
25
+ swiftSettings: [ . unsafeFlags( [ " -parse-as-library " ] ) ] ) ,
34
26
. target(
35
- name: " SwiftInspectClient " ) ,
27
+ name: " SwiftInspectClient " ,
28
+ // Workaround https://github.com/llvm/llvm-project/issues/40056
29
+ cxxSettings: [ . unsafeFlags( [ " -Xclang " , " -fno-split-cold-code " ] ) ] ) ,
36
30
. systemLibrary(
37
31
name: " SwiftInspectClientInterface " ) ,
38
32
. testTarget(
You can’t perform that action at this time.
0 commit comments