xclog 0.3.2

xcodebuild build-log formater and parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
Command line invocation:
    /XCODE_BIN_ROOT/xcodebuild clean build -configuration Debug -target Example SYMROOT=/BUILD_ROOT CONFIGURATION_BUILD_DIR=/BUILD_ROOT BUILD_DIR=/BUILD_ROOT

User defaults from command line:
    IDEPackageSupportUseBuiltinSCM = YES

Build settings from command line:
    BUILD_DIR = /BUILD_ROOT
    CONFIGURATION_BUILD_DIR = /BUILD_ROOT
    SYMROOT = /BUILD_ROOT

Resolve Package Graph

Resolved source packages:
  Socket: https://github.com/Kitura/BlueSocket @ 2.0.2
  swift-argument-parser: https://github.com/apple/swift-argument-parser @ main
  SwiftyBeaver: https://github.com/SwiftyBeaver/SwiftyBeaver.git @ 1.9.5


note: Using new build system
note: Build preparation complete

** CLEAN SUCCEEDED **

note: Using new build system
note: Planning
Analyze workspace

Create build description
Build description signature: d3c6d332910d794c61fb539d608edf28
Build description path: /BUILD_ROOT/XCBuildData/d3c6d332910d794c61fb539d608edf28-desc.xcbuild

note: Build preparation complete
note: Building targets in manual order is deprecated - check "Parallelize build for command-line builds" in the project editor, or set DISABLE_MANUAL_TARGET_ORDER_BUILD_WARNING in any of the targets in the current build to suppress this warning
CreateBuildDirectory /BUILD_ROOT
    cd /PROJECT_ROOT/Example.xcodeproj
    builtin-create-build-directory /BUILD_ROOT

CreateBuildDirectory /BUILD_ROOT/PackageFrameworks
    cd /PROJECT_ROOT/Example.xcodeproj
    builtin-create-build-directory /BUILD_ROOT/PackageFrameworks

warning: ONLY_ACTIVE_ARCH=YES requested with multiple ARCHS and no active architecture could be computed; building for all applicable architectures (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
WriteAuxiliaryFile /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/ArgumentParserToolInfo.modulemap (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    write-file /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/ArgumentParserToolInfo.modulemap

Copy /BUILD_ROOT/GeneratedModuleMaps/ArgumentParserToolInfo.modulemap /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/ArgumentParserToolInfo.modulemap (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/ArgumentParserToolInfo.modulemap /BUILD_ROOT/GeneratedModuleMaps

WriteAuxiliaryFile /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.SwiftFileList (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    write-file /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.SwiftFileList

WriteAuxiliaryFile /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo-OutputFileMap.json (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    write-file /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo-OutputFileMap.json

WriteAuxiliaryFile /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.LinkFileList (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    write-file /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.LinkFileList

WriteAuxiliaryFile /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.LinkFileList (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    write-file /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.LinkFileList

WriteAuxiliaryFile /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-OutputFileMap.json (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    write-file /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-OutputFileMap.json

WriteAuxiliaryFile /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.SwiftFileList (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    write-file /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.SwiftFileList

CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
    export SDKROOT\=/MACOS_SDK
    /TOOLCHAIN_BIN/swiftc -incremental -module-name ArgumentParserToolInfo -Onone -enable-batch-mode -enforce-exclusivity\=checked @/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /MACOS_SDK -target x86_64-apple-macos10.10 -g -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j8 -output-file-map /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.swiftmodule -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo-Swift.h -working-directory /PACKAGES_DIR/swift-argument-parser

EmitSwiftModule normal x86_64 (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParserToolInfo/ToolInfo.swift -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParserToolInfo -target-sdk-version 12.3 -emit-module-doc-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.swiftdoc -emit-module-source-info-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.swiftsourceinfo -emit-objc-header-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo-Swift.h -parse-as-library -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.swiftmodule -emit-abi-descriptor-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.abi.json

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParserToolInfo/ToolInfo.swift (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParserToolInfo/ToolInfo.swift -emit-dependencies-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ToolInfo.d -emit-reference-dependencies-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ToolInfo.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ToolInfo.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParserToolInfo -target-sdk-version 12.3 -parse-as-library -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ToolInfo.o

CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
    export SDKROOT\=/MACOS_SDK
    /TOOLCHAIN_BIN/swiftc -incremental -module-name ArgumentParserToolInfo -Onone -enable-batch-mode -enforce-exclusivity\=checked @/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /MACOS_SDK -target arm64-apple-macos10.10 -g -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j8 -output-file-map /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-Swift.h -working-directory /PACKAGES_DIR/swift-argument-parser

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParserToolInfo/ToolInfo.swift (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParserToolInfo/ToolInfo.swift -emit-dependencies-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ToolInfo.d -emit-reference-dependencies-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ToolInfo.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ToolInfo.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParserToolInfo -target-sdk-version 12.3 -parse-as-library -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ToolInfo.o

EmitSwiftModule normal arm64 (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParserToolInfo/ToolInfo.swift -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParserToolInfo -target-sdk-version 12.3 -emit-module-doc-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftdoc -emit-module-source-info-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftsourceinfo -emit-objc-header-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-Swift.h -parse-as-library -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule -emit-abi-descriptor-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.abi.json

Copy /BUILD_ROOT/ArgumentParserToolInfo.swiftmodule/arm64-apple-macos.swiftmodule /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule /BUILD_ROOT/ArgumentParserToolInfo.swiftmodule/arm64-apple-macos.swiftmodule

Copy /BUILD_ROOT/ArgumentParserToolInfo.swiftmodule/arm64-apple-macos.swiftdoc /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftdoc (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftdoc /BUILD_ROOT/ArgumentParserToolInfo.swiftmodule/arm64-apple-macos.swiftdoc

Copy /BUILD_ROOT/ArgumentParserToolInfo.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftsourceinfo (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftsourceinfo /BUILD_ROOT/ArgumentParserToolInfo.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo

SwiftMergeGeneratedHeaders /BUILD_ROOT/GeneratedModuleMaps/ArgumentParserToolInfo-Swift.h /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-Swift.h /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo-Swift.h (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-swiftHeaderTool -arch arm64 /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo-Swift.h -arch x86_64 /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo-Swift.h -o /BUILD_ROOT/GeneratedModuleMaps/ArgumentParserToolInfo-Swift.h

Copy /BUILD_ROOT/ArgumentParserToolInfo.swiftmodule/x86_64-apple-macos.swiftdoc /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.swiftdoc (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.swiftdoc /BUILD_ROOT/ArgumentParserToolInfo.swiftmodule/x86_64-apple-macos.swiftdoc

Copy /BUILD_ROOT/ArgumentParserToolInfo.swiftmodule/x86_64-apple-macos.swiftmodule /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.swiftmodule (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.swiftmodule /BUILD_ROOT/ArgumentParserToolInfo.swiftmodule/x86_64-apple-macos.swiftmodule

Copy /BUILD_ROOT/ArgumentParserToolInfo.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.swiftsourceinfo (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.swiftsourceinfo /BUILD_ROOT/ArgumentParserToolInfo.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo

Ld /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/Binary/ArgumentParserToolInfo.o normal arm64 (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/clang -target arm64-apple-macos10.10 -r -isysroot /MACOS_SDK -L/BUILD_ROOT -L/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/BUILD_ROOT -F/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule -Xlinker -dependency_info -Xlinker /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo_dependency_info.dat -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/Binary/ArgumentParserToolInfo.o

Ld /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/Binary/ArgumentParserToolInfo.o normal x86_64 (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/clang -target x86_64-apple-macos10.10 -r -isysroot /MACOS_SDK -L/BUILD_ROOT -L/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/BUILD_ROOT -F/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.swiftmodule -Xlinker -dependency_info -Xlinker /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo_dependency_info.dat -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/Binary/ArgumentParserToolInfo.o

CreateUniversalBinary /BUILD_ROOT/ArgumentParserToolInfo.o normal arm64\ x86_64 (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/lipo -create /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/Binary/ArgumentParserToolInfo.o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/Binary/ArgumentParserToolInfo.o -output /BUILD_ROOT/ArgumentParserToolInfo.o

RegisterExecutionPolicyException /BUILD_ROOT/ArgumentParserToolInfo.o (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-RegisterExecutionPolicyException /BUILD_ROOT/ArgumentParserToolInfo.o

warning: ONLY_ACTIVE_ARCH=YES requested with multiple ARCHS and no active architecture could be computed; building for all applicable architectures (in target 'ArgumentParser' from project 'swift-argument-parser')
WriteAuxiliaryFile /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/ArgumentParser.modulemap (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    write-file /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/ArgumentParser.modulemap

Copy /BUILD_ROOT/GeneratedModuleMaps/ArgumentParser.modulemap /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/ArgumentParser.modulemap (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/ArgumentParser.modulemap /BUILD_ROOT/GeneratedModuleMaps

WriteAuxiliaryFile /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.SwiftFileList (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    write-file /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.SwiftFileList

WriteAuxiliaryFile /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.LinkFileList (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    write-file /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.LinkFileList

WriteAuxiliaryFile /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser-OutputFileMap.json (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    write-file /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser-OutputFileMap.json

WriteAuxiliaryFile /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.LinkFileList (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    write-file /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.LinkFileList

WriteAuxiliaryFile /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftFileList (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    write-file /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftFileList

WriteAuxiliaryFile /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-OutputFileMap.json (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    write-file /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-OutputFileMap.json

CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
    export SDKROOT\=/MACOS_SDK
    /TOOLCHAIN_BIN/swiftc -incremental -module-name ArgumentParser -Onone -enable-batch-mode -enforce-exclusivity\=checked @/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /MACOS_SDK -target x86_64-apple-macos10.10 -g -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j8 -output-file-map /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.swiftmodule -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser-Swift.h -working-directory /PACKAGES_DIR/swift-argument-parser

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-1 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/BashCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/FishCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ZshCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Argument.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-1 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/BashCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/FishCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ZshCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Argument.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-1 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/BashCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/FishCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ZshCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Argument.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-1 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/BashCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/FishCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ZshCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Argument.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-1 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/BashCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/FishCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ZshCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Argument.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-4 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/EnumerableFlag.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ExpressibleByArgument.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsableArguments.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsableArgumentsValidation.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsableCommand.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-4 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/EnumerableFlag.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ExpressibleByArgument.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsableArguments.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsableArgumentsValidation.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsableCommand.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-4 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/EnumerableFlag.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ExpressibleByArgument.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsableArguments.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsableArgumentsValidation.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsableCommand.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-4 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/EnumerableFlag.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ExpressibleByArgument.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsableArguments.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsableArgumentsValidation.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsableCommand.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-4 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/EnumerableFlag.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ExpressibleByArgument.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsableArguments.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsableArgumentsValidation.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsableCommand.o

EmitSwiftModule normal x86_64 (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -emit-module-doc-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.swiftdoc -emit-module-source-info-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.swiftsourceinfo -emit-objc-header-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser-Swift.h -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.swiftmodule -emit-abi-descriptor-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.abi.json

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-3 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/NameSpecification.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Option.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/OptionGroup.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/AsyncParsableCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CommandConfiguration.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-3 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/NameSpecification.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Option.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/OptionGroup.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/AsyncParsableCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CommandConfiguration.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-3 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/NameSpecification.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Option.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/OptionGroup.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/AsyncParsableCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CommandConfiguration.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-3 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/NameSpecification.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Option.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/OptionGroup.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/AsyncParsableCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CommandConfiguration.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-3 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/NameSpecification.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Option.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/OptionGroup.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/AsyncParsableCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CommandConfiguration.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-5 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentDecoder.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentDefinition.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentSet.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CommandParser.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/InputOrigin.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-5 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentDecoder.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentDefinition.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentSet.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CommandParser.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/InputOrigin.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-5 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentDecoder.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentDefinition.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentSet.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CommandParser.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/InputOrigin.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-5 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentDecoder.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentDefinition.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentSet.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CommandParser.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/InputOrigin.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-5 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentDecoder.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentDefinition.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentSet.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CommandParser.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/InputOrigin.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-7 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/DumpHelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/HelpCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/HelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/MessageInfo.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/UsageGenerator.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-7 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/DumpHelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/HelpCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/HelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/MessageInfo.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/UsageGenerator.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-7 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/DumpHelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/HelpCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/HelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/MessageInfo.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/UsageGenerator.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-7 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/DumpHelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/HelpCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/HelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/MessageInfo.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/UsageGenerator.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-7 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/DumpHelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/HelpCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/HelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/MessageInfo.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/UsageGenerator.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-2 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentHelp.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentVisibility.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CompletionKind.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Errors.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Flag.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-2 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentHelp.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentVisibility.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CompletionKind.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Errors.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Flag.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-2 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentHelp.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentVisibility.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CompletionKind.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Errors.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Flag.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-2 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentHelp.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentVisibility.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CompletionKind.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Errors.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Flag.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-2 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentHelp.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentVisibility.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CompletionKind.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Errors.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Flag.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-6 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Name.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Parsed.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsedValues.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParserError.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/SplitArguments.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-6 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Name.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Parsed.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsedValues.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParserError.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/SplitArguments.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-6 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Name.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Parsed.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsedValues.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParserError.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/SplitArguments.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-6 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Name.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Parsed.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsedValues.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParserError.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/SplitArguments.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-6 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Name.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Parsed.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParsedValues.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ParserError.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/SplitArguments.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-8 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CollectionExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/SequenceExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/StringExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Tree.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-8 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CollectionExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/SequenceExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/StringExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Tree.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-8 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CollectionExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/SequenceExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/StringExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Tree.o

CompileSwift normal x86_64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.BzRBGF/supplementaryOutputs-8 -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/CollectionExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/SequenceExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/StringExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Tree.o

CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
    export SDKROOT\=/MACOS_SDK
    /TOOLCHAIN_BIN/swiftc -incremental -module-name ArgumentParser -Onone -enable-batch-mode -enforce-exclusivity\=checked @/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /MACOS_SDK -target arm64-apple-macos10.10 -g -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j8 -output-file-map /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-Swift.h -working-directory /PACKAGES_DIR/swift-argument-parser

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-2 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentHelp.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentVisibility.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CompletionKind.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Errors.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Flag.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-2 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentHelp.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentVisibility.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CompletionKind.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Errors.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Flag.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-2 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentHelp.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentVisibility.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CompletionKind.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Errors.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Flag.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-2 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentHelp.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentVisibility.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CompletionKind.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Errors.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Flag.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-2 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentHelp.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentVisibility.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CompletionKind.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Errors.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Flag.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-1 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/BashCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/FishCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ZshCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Argument.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-1 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/BashCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/FishCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ZshCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Argument.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-1 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/BashCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/FishCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ZshCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Argument.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-1 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/BashCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/FishCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ZshCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Argument.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-1 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/BashCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/FishCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ZshCompletionsGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Argument.o

EmitSwiftModule normal arm64 (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -emit-module-doc-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftdoc -emit-module-source-info-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftsourceinfo -emit-objc-header-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-Swift.h -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -emit-abi-descriptor-path /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.abi.json

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-7 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/DumpHelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/HelpCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/HelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/MessageInfo.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/UsageGenerator.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-7 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/DumpHelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/HelpCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/HelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/MessageInfo.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/UsageGenerator.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-7 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/DumpHelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/HelpCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/HelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/MessageInfo.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/UsageGenerator.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-7 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/DumpHelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/HelpCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/HelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/MessageInfo.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/UsageGenerator.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-7 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/DumpHelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/HelpCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/HelpGenerator.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/MessageInfo.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/UsageGenerator.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-6 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Name.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Parsed.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsedValues.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParserError.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/SplitArguments.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-6 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Name.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Parsed.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsedValues.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParserError.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/SplitArguments.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-6 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Name.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Parsed.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsedValues.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParserError.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/SplitArguments.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-6 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Name.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Parsed.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsedValues.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParserError.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/SplitArguments.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-6 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Name.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Parsed.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsedValues.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParserError.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/SplitArguments.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-4 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/EnumerableFlag.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ExpressibleByArgument.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsableArguments.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsableArgumentsValidation.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsableCommand.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-4 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/EnumerableFlag.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ExpressibleByArgument.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsableArguments.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsableArgumentsValidation.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsableCommand.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-4 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/EnumerableFlag.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ExpressibleByArgument.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsableArguments.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsableArgumentsValidation.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsableCommand.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-4 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/EnumerableFlag.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ExpressibleByArgument.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsableArguments.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsableArgumentsValidation.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsableCommand.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-4 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/EnumerableFlag.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ExpressibleByArgument.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsableArguments.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsableArgumentsValidation.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ParsableCommand.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-5 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentDecoder.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentDefinition.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentSet.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CommandParser.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/InputOrigin.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-5 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentDecoder.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentDefinition.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentSet.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CommandParser.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/InputOrigin.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-5 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentDecoder.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentDefinition.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentSet.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CommandParser.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/InputOrigin.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-5 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentDecoder.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentDefinition.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentSet.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CommandParser.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/InputOrigin.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-5 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentDecoder.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentDefinition.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentSet.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CommandParser.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/InputOrigin.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-3 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/NameSpecification.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Option.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/OptionGroup.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/AsyncParsableCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CommandConfiguration.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-3 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/NameSpecification.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Option.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/OptionGroup.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/AsyncParsableCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CommandConfiguration.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-3 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/NameSpecification.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Option.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/OptionGroup.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/AsyncParsableCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CommandConfiguration.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-3 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/NameSpecification.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Option.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/OptionGroup.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/AsyncParsableCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CommandConfiguration.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-3 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/NameSpecification.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Option.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/OptionGroup.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/AsyncParsableCommand.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CommandConfiguration.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-8 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CollectionExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/SequenceExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/StringExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Tree.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-8 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CollectionExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/SequenceExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/StringExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Tree.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-8 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CollectionExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/SequenceExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/StringExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Tree.o

CompileSwift normal arm64 /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/swift-argument-parser/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/CompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Argument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentHelp.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/ArgumentVisibility.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/CompletionKind.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Errors.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Flag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/NameSpecification.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/Option.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Properties/OptionGroup.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/AsyncParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/CommandConfiguration.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/EnumerableFlag.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ExpressibleByArgument.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableArgumentsValidation.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable\ Types/ParsableCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ArgumentSet.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/CommandParser.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/InputOrigin.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Name.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/Parsed.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParsedValues.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/ParserError.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsing/SplitArguments.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpCommand.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/HelpGenerator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/MessageInfo.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Usage/UsageGenerator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/CollectionExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/SequenceExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/StringExtensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser/Sources/ArgumentParser/Utilities/Tree.swift -supplementary-output-file-map /var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/T/TemporaryDirectory.KUtRun/supplementaryOutputs-8 -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/swift-argument-parser -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ArgumentParser -target-sdk-version 12.3 -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/CollectionExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/SequenceExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/StringExtensions.o -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Tree.o

Copy /BUILD_ROOT/ArgumentParser.swiftmodule/arm64-apple-macos.swiftmodule /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule /BUILD_ROOT/ArgumentParser.swiftmodule/arm64-apple-macos.swiftmodule

Copy /BUILD_ROOT/ArgumentParser.swiftmodule/arm64-apple-macos.swiftdoc /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftdoc (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftdoc /BUILD_ROOT/ArgumentParser.swiftmodule/arm64-apple-macos.swiftdoc

Copy /BUILD_ROOT/ArgumentParser.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftsourceinfo (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftsourceinfo /BUILD_ROOT/ArgumentParser.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo

SwiftMergeGeneratedHeaders /BUILD_ROOT/GeneratedModuleMaps/ArgumentParser-Swift.h /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-Swift.h /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser-Swift.h (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-swiftHeaderTool -arch arm64 /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-Swift.h -arch x86_64 /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser-Swift.h -o /BUILD_ROOT/GeneratedModuleMaps/ArgumentParser-Swift.h

Copy /BUILD_ROOT/ArgumentParser.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.swiftsourceinfo (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.swiftsourceinfo /BUILD_ROOT/ArgumentParser.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo

Copy /BUILD_ROOT/ArgumentParser.swiftmodule/x86_64-apple-macos.swiftmodule /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.swiftmodule (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.swiftmodule /BUILD_ROOT/ArgumentParser.swiftmodule/x86_64-apple-macos.swiftmodule

Copy /BUILD_ROOT/ArgumentParser.swiftmodule/x86_64-apple-macos.swiftdoc /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.swiftdoc (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.swiftdoc /BUILD_ROOT/ArgumentParser.swiftmodule/x86_64-apple-macos.swiftdoc

Ld /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Binary/ArgumentParser.o normal x86_64 (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/clang -target x86_64-apple-macos10.10 -r -isysroot /MACOS_SDK -L/BUILD_ROOT -L/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT -F/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.swiftmodule -Xlinker -dependency_info -Xlinker /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser_dependency_info.dat -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Binary/ArgumentParser.o

Ld /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Binary/ArgumentParser.o normal arm64 (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/clang -target arm64-apple-macos10.10 -r -isysroot /MACOS_SDK -L/BUILD_ROOT -L/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT -F/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -Xlinker -dependency_info -Xlinker /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_dependency_info.dat -o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Binary/ArgumentParser.o

CreateUniversalBinary /BUILD_ROOT/ArgumentParser.o normal arm64\ x86_64 (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    /TOOLCHAIN_BIN/lipo -create /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/Binary/ArgumentParser.o /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/Binary/ArgumentParser.o -output /BUILD_ROOT/ArgumentParser.o

RegisterExecutionPolicyException /BUILD_ROOT/ArgumentParser.o (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /PACKAGES_DIR/swift-argument-parser
    builtin-RegisterExecutionPolicyException /BUILD_ROOT/ArgumentParser.o

warning: ONLY_ACTIVE_ARCH=YES requested with multiple ARCHS and no active architecture could be computed; building for all applicable architectures (in target 'Socket' from project 'Socket')
WriteAuxiliaryFile /BUILD_ROOT/Socket.build/Debug/Socket.build/Socket.modulemap (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    write-file /BUILD_ROOT/Socket.build/Debug/Socket.build/Socket.modulemap

Copy /BUILD_ROOT/GeneratedModuleMaps/Socket.modulemap /BUILD_ROOT/Socket.build/Debug/Socket.build/Socket.modulemap (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /BUILD_ROOT/Socket.build/Debug/Socket.build/Socket.modulemap /BUILD_ROOT/GeneratedModuleMaps

WriteAuxiliaryFile /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.SwiftFileList (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    write-file /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.SwiftFileList

WriteAuxiliaryFile /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket-OutputFileMap.json (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    write-file /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket-OutputFileMap.json

WriteAuxiliaryFile /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.LinkFileList (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    write-file /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.LinkFileList

WriteAuxiliaryFile /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.SwiftFileList (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    write-file /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.SwiftFileList

WriteAuxiliaryFile /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket-OutputFileMap.json (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    write-file /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket-OutputFileMap.json

WriteAuxiliaryFile /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.LinkFileList (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    write-file /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.LinkFileList

CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
    export SDKROOT\=/MACOS_SDK
    /TOOLCHAIN_BIN/swiftc -incremental -module-name Socket -Onone -enable-batch-mode -enforce-exclusivity\=checked @/BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /MACOS_SDK -target arm64-apple-macos10.10 -g -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j8 -output-file-map /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.swiftmodule -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket-Swift.h -working-directory /PACKAGES_DIR/BlueSocket

EmitSwiftModule normal arm64 (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    /TOOLCHAIN_BIN/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket+Equatable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket+Hashable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketProtocols.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Socket -target-sdk-version 12.3 -emit-module-doc-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.swiftdoc -emit-module-source-info-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.swiftsourceinfo -emit-objc-header-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket-Swift.h -o /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.swiftmodule -emit-abi-descriptor-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.abi.json

CompileSwift normal arm64 /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket+Hashable.swift (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket+Equatable.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket+Hashable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketProtocols.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift -emit-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket+Hashable.d -emit-reference-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket+Hashable.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket+Hashable.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Socket -target-sdk-version 12.3 -o /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket+Hashable.o

CompileSwift normal arm64 /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket.swift (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket+Equatable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket+Hashable.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketProtocols.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift -emit-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.d -emit-reference-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Socket -target-sdk-version 12.3 -o /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.o

CompileSwift normal arm64 /PACKAGES_DIR/BlueSocket/Sources/Socket/SocketProtocols.swift (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket+Equatable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket+Hashable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketProtocols.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift -emit-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/SocketProtocols.d -emit-reference-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/SocketProtocols.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/SocketProtocols.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Socket -target-sdk-version 12.3 -o /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/SocketProtocols.o

CompileSwift normal arm64 /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket+Equatable.swift (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket+Equatable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket+Hashable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketProtocols.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift -emit-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket+Equatable.d -emit-reference-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket+Equatable.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket+Equatable.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Socket -target-sdk-version 12.3 -o /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket+Equatable.o

CompileSwift normal arm64 /PACKAGES_DIR/BlueSocket/Sources/Socket/SocketUtils.swift (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket+Equatable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket+Hashable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketProtocols.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift -emit-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/SocketUtils.d -emit-reference-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/SocketUtils.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/SocketUtils.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Socket -target-sdk-version 12.3 -o /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/SocketUtils.o

CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
    export SDKROOT\=/MACOS_SDK
    /TOOLCHAIN_BIN/swiftc -incremental -module-name Socket -Onone -enable-batch-mode -enforce-exclusivity\=checked @/BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /MACOS_SDK -target x86_64-apple-macos10.10 -g -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j8 -output-file-map /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.swiftmodule -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket-Swift.h -working-directory /PACKAGES_DIR/BlueSocket
CompileSwift normal x86_64 /PACKAGES_DIR/BlueSocket/Sources/Socket/SocketProtocols.swift (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket+Equatable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket+Hashable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketProtocols.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift -emit-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/SocketProtocols.d -emit-reference-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/SocketProtocols.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/SocketProtocols.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Socket -target-sdk-version 12.3 -o /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/SocketProtocols.o

EmitSwiftModule normal x86_64 (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    /TOOLCHAIN_BIN/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket+Equatable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket+Hashable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketProtocols.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Socket -target-sdk-version 12.3 -emit-module-doc-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.swiftdoc -emit-module-source-info-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.swiftsourceinfo -emit-objc-header-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket-Swift.h -o /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.swiftmodule -emit-abi-descriptor-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.abi.json

CompileSwift normal x86_64 /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket.swift (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket+Equatable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket+Hashable.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketProtocols.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift -emit-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.d -emit-reference-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Socket -target-sdk-version 12.3 -o /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.o

CompileSwift normal x86_64 /PACKAGES_DIR/BlueSocket/Sources/Socket/SocketUtils.swift (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket+Equatable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket+Hashable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketProtocols.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift -emit-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/SocketUtils.d -emit-reference-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/SocketUtils.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/SocketUtils.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Socket -target-sdk-version 12.3 -o /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/SocketUtils.o

CompileSwift normal x86_64 /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket+Equatable.swift (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket+Equatable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket+Hashable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketProtocols.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift -emit-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket+Equatable.d -emit-reference-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket+Equatable.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket+Equatable.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Socket -target-sdk-version 12.3 -o /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket+Equatable.o

CompileSwift normal x86_64 /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket+Hashable.swift (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/BlueSocket/Sources/Socket/Socket+Equatable.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket+Hashable.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/Socket.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketProtocols.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift -emit-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket+Hashable.d -emit-reference-dependencies-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket+Hashable.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket+Hashable.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/BlueSocket -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Socket.build/Debug/Socket.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Socket -target-sdk-version 12.3 -o /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket+Hashable.o

Copy /BUILD_ROOT/Socket.swiftmodule/arm64-apple-macos.swiftmodule /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.swiftmodule (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.swiftmodule /BUILD_ROOT/Socket.swiftmodule/arm64-apple-macos.swiftmodule

Copy /BUILD_ROOT/Socket.swiftmodule/arm64-apple-macos.swiftdoc /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.swiftdoc (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.swiftdoc /BUILD_ROOT/Socket.swiftmodule/arm64-apple-macos.swiftdoc

Copy /BUILD_ROOT/Socket.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.swiftsourceinfo (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.swiftsourceinfo /BUILD_ROOT/Socket.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo

SwiftMergeGeneratedHeaders /BUILD_ROOT/GeneratedModuleMaps/Socket-Swift.h /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket-Swift.h /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket-Swift.h (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    builtin-swiftHeaderTool -arch arm64 /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket-Swift.h -arch x86_64 /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket-Swift.h -o /BUILD_ROOT/GeneratedModuleMaps/Socket-Swift.h

Copy /BUILD_ROOT/Socket.swiftmodule/x86_64-apple-macos.swiftdoc /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.swiftdoc (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.swiftdoc /BUILD_ROOT/Socket.swiftmodule/x86_64-apple-macos.swiftdoc

Copy /BUILD_ROOT/Socket.swiftmodule/x86_64-apple-macos.swiftmodule /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.swiftmodule (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.swiftmodule /BUILD_ROOT/Socket.swiftmodule/x86_64-apple-macos.swiftmodule

Copy /BUILD_ROOT/Socket.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.swiftsourceinfo (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.swiftsourceinfo /BUILD_ROOT/Socket.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo

Ld /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Binary/Socket.o normal x86_64 (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    /TOOLCHAIN_BIN/clang -target x86_64-apple-macos10.10 -r -isysroot /MACOS_SDK -L/BUILD_ROOT -L/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/BUILD_ROOT -F/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.swiftmodule -Xlinker -dependency_info -Xlinker /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket_dependency_info.dat -o /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Binary/Socket.o

Ld /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Binary/Socket.o normal arm64 (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    /TOOLCHAIN_BIN/clang -target arm64-apple-macos10.10 -r -isysroot /MACOS_SDK -L/BUILD_ROOT -L/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/BUILD_ROOT -F/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.swiftmodule -Xlinker -dependency_info -Xlinker /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket_dependency_info.dat -o /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Binary/Socket.o

CreateUniversalBinary /BUILD_ROOT/Socket.o normal arm64\ x86_64 (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    /TOOLCHAIN_BIN/lipo -create /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Binary/Socket.o /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Binary/Socket.o -output /BUILD_ROOT/Socket.o

RegisterExecutionPolicyException /BUILD_ROOT/Socket.o (in target 'Socket' from project 'Socket')
    cd /PACKAGES_DIR/BlueSocket
    builtin-RegisterExecutionPolicyException /BUILD_ROOT/Socket.o

warning: ONLY_ACTIVE_ARCH=YES requested with multiple ARCHS and no active architecture could be computed; building for all applicable architectures (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
WriteAuxiliaryFile /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/SwiftyBeaver.modulemap (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    write-file /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/SwiftyBeaver.modulemap

Copy /BUILD_ROOT/GeneratedModuleMaps/SwiftyBeaver.modulemap /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/SwiftyBeaver.modulemap (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/SwiftyBeaver.modulemap /BUILD_ROOT/GeneratedModuleMaps

WriteAuxiliaryFile /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.SwiftFileList (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    write-file /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.SwiftFileList

WriteAuxiliaryFile /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver-OutputFileMap.json (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    write-file /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver-OutputFileMap.json

WriteAuxiliaryFile /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.SwiftFileList (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    write-file /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.SwiftFileList

WriteAuxiliaryFile /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver-OutputFileMap.json (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    write-file /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver-OutputFileMap.json

WriteAuxiliaryFile /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.LinkFileList (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    write-file /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.LinkFileList

WriteAuxiliaryFile /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.LinkFileList (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    write-file /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.LinkFileList

CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
    export SDKROOT\=/MACOS_SDK
    /TOOLCHAIN_BIN/swiftc -incremental -module-name SwiftyBeaver -Onone -enable-batch-mode -enforce-exclusivity\=checked @/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /MACOS_SDK -target x86_64-apple-macos10.10 -g -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j8 -output-file-map /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.swiftmodule -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver-Swift.h -working-directory /PACKAGES_DIR/SwiftyBeaver

EmitSwiftModule normal x86_64 (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -emit-module-doc-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.swiftdoc -emit-module-source-info-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.swiftsourceinfo -emit-objc-header-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver-Swift.h -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.swiftmodule -emit-abi-descriptor-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.abi.json

CompileSwift normal x86_64 /PACKAGES_DIR/SwiftyBeaver/Sources/Filter.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Filter.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Filter.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Filter.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Filter.o

CompileSwift normal x86_64 /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/AES256CBC.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/AES256CBC.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/AES256CBC.dia -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Base64.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Base64.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Base64.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/AES256CBC.o -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Base64.o

CompileSwift normal x86_64 /PACKAGES_DIR/SwiftyBeaver/Sources/Base64.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/AES256CBC.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/AES256CBC.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/AES256CBC.dia -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Base64.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Base64.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Base64.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/AES256CBC.o -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Base64.o

CompileSwift normal x86_64 /PACKAGES_DIR/SwiftyBeaver/Sources/FilterValidator.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/FilterValidator.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/FilterValidator.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/FilterValidator.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/FilterValidator.o

CompileSwift normal x86_64 /PACKAGES_DIR/SwiftyBeaver/Sources/BaseDestination.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/BaseDestination.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/BaseDestination.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/BaseDestination.dia -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/ConsoleDestination.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/ConsoleDestination.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/ConsoleDestination.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/BaseDestination.o -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/ConsoleDestination.o

CompileSwift normal x86_64 /PACKAGES_DIR/SwiftyBeaver/Sources/ConsoleDestination.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/BaseDestination.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/BaseDestination.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/BaseDestination.dia -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/ConsoleDestination.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/ConsoleDestination.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/ConsoleDestination.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/BaseDestination.o -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/ConsoleDestination.o

CompileSwift normal x86_64 /PACKAGES_DIR/SwiftyBeaver/Sources/GoogleCloudDestination.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/GoogleCloudDestination.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/GoogleCloudDestination.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/GoogleCloudDestination.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/GoogleCloudDestination.o

CompileSwift normal x86_64 /PACKAGES_DIR/SwiftyBeaver/Sources/SBPlatformDestination.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SBPlatformDestination.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SBPlatformDestination.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SBPlatformDestination.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SBPlatformDestination.o

CompileSwift normal x86_64 /PACKAGES_DIR/SwiftyBeaver/Sources/Extensions.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Extensions.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Extensions.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Extensions.dia -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/FileDestination.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/FileDestination.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/FileDestination.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Extensions.o -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/FileDestination.o

CompileSwift normal x86_64 /PACKAGES_DIR/SwiftyBeaver/Sources/FileDestination.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Extensions.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Extensions.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Extensions.dia -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/FileDestination.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/FileDestination.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/FileDestination.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Extensions.o -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/FileDestination.o

CompileSwift normal x86_64 /PACKAGES_DIR/SwiftyBeaver/Sources/SwiftyBeaver.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.dia -target x86_64-apple-macos10.10 -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.o

CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
    export SDKROOT\=/MACOS_SDK
    /TOOLCHAIN_BIN/swiftc -incremental -module-name SwiftyBeaver -Onone -enable-batch-mode -enforce-exclusivity\=checked @/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /MACOS_SDK -target arm64-apple-macos10.10 -g -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j8 -output-file-map /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.swiftmodule -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver-Swift.h -working-directory /PACKAGES_DIR/SwiftyBeaver
EmitSwiftModule normal arm64 (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -emit-module-doc-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.swiftdoc -emit-module-source-info-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.swiftsourceinfo -emit-objc-header-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver-Swift.h -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.swiftmodule -emit-abi-descriptor-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.abi.json

CompileSwift normal arm64 /PACKAGES_DIR/SwiftyBeaver/Sources/Extensions.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Extensions.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Extensions.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Extensions.dia -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/FileDestination.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/FileDestination.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/FileDestination.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Extensions.o -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/FileDestination.o

CompileSwift normal arm64 /PACKAGES_DIR/SwiftyBeaver/Sources/FileDestination.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Extensions.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Extensions.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Extensions.dia -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/FileDestination.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/FileDestination.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/FileDestination.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Extensions.o -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/FileDestination.o

CompileSwift normal arm64 /PACKAGES_DIR/SwiftyBeaver/Sources/BaseDestination.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/BaseDestination.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/BaseDestination.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/BaseDestination.dia -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/ConsoleDestination.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/ConsoleDestination.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/ConsoleDestination.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/BaseDestination.o -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/ConsoleDestination.o

CompileSwift normal arm64 /PACKAGES_DIR/SwiftyBeaver/Sources/ConsoleDestination.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/BaseDestination.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/BaseDestination.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/BaseDestination.dia -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/ConsoleDestination.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/ConsoleDestination.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/ConsoleDestination.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/BaseDestination.o -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/ConsoleDestination.o

CompileSwift normal arm64 /PACKAGES_DIR/SwiftyBeaver/Sources/GoogleCloudDestination.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/GoogleCloudDestination.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/GoogleCloudDestination.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/GoogleCloudDestination.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/GoogleCloudDestination.o

CompileSwift normal arm64 /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/AES256CBC.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/AES256CBC.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/AES256CBC.dia -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Base64.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Base64.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Base64.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/AES256CBC.o -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Base64.o

CompileSwift normal arm64 /PACKAGES_DIR/SwiftyBeaver/Sources/Base64.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/AES256CBC.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/AES256CBC.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/AES256CBC.dia -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Base64.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Base64.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Base64.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/AES256CBC.o -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Base64.o

CompileSwift normal arm64 /PACKAGES_DIR/SwiftyBeaver/Sources/FilterValidator.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/FilterValidator.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/FilterValidator.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/FilterValidator.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/FilterValidator.o

CompileSwift normal arm64 /PACKAGES_DIR/SwiftyBeaver/Sources/SBPlatformDestination.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SBPlatformDestination.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SBPlatformDestination.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SBPlatformDestination.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SBPlatformDestination.o

CompileSwift normal arm64 /PACKAGES_DIR/SwiftyBeaver/Sources/Filter.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Filter.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Filter.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Filter.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Filter.o

CompileSwift normal arm64 /PACKAGES_DIR/SwiftyBeaver/Sources/SwiftyBeaver.swift (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PACKAGES_DIR/SwiftyBeaver/Sources/AES256CBC.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Base64.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/BaseDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/ConsoleDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Extensions.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FileDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/Filter.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/FilterValidator.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/GoogleCloudDestination.swift /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SBPlatformDestination.swift -primary-file /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver/Sources/SwiftyBeaver.swift -emit-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.d -emit-reference-dependencies-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.dia -target arm64-apple-macos10.10 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /MACOS_SDK -I /BUILD_ROOT -I /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /BUILD_ROOT -F /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /DERIVED_DATA_ROOT/SourcePackages/checkouts/SwiftyBeaver -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/swift-overrides.hmap -Xcc -I/BUILD_ROOT/include -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyBeaver -target-sdk-version 12.3 -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.o

Copy /BUILD_ROOT/SwiftyBeaver.swiftmodule/x86_64-apple-macos.swiftdoc /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.swiftdoc (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.swiftdoc /BUILD_ROOT/SwiftyBeaver.swiftmodule/x86_64-apple-macos.swiftdoc

Copy /BUILD_ROOT/SwiftyBeaver.swiftmodule/x86_64-apple-macos.swiftmodule /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.swiftmodule (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.swiftmodule /BUILD_ROOT/SwiftyBeaver.swiftmodule/x86_64-apple-macos.swiftmodule

Copy /BUILD_ROOT/SwiftyBeaver.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.swiftsourceinfo (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.swiftsourceinfo /BUILD_ROOT/SwiftyBeaver.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo

SwiftMergeGeneratedHeaders /BUILD_ROOT/GeneratedModuleMaps/SwiftyBeaver-Swift.h /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver-Swift.h /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver-Swift.h (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    builtin-swiftHeaderTool -arch arm64 /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver-Swift.h -arch x86_64 /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver-Swift.h -o /BUILD_ROOT/GeneratedModuleMaps/SwiftyBeaver-Swift.h

Copy /BUILD_ROOT/SwiftyBeaver.swiftmodule/arm64-apple-macos.swiftmodule /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.swiftmodule (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.swiftmodule /BUILD_ROOT/SwiftyBeaver.swiftmodule/arm64-apple-macos.swiftmodule

Copy /BUILD_ROOT/SwiftyBeaver.swiftmodule/arm64-apple-macos.swiftdoc /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.swiftdoc (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.swiftdoc /BUILD_ROOT/SwiftyBeaver.swiftmodule/arm64-apple-macos.swiftdoc

Copy /BUILD_ROOT/SwiftyBeaver.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.swiftsourceinfo (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.swiftsourceinfo /BUILD_ROOT/SwiftyBeaver.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo

Ld /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Binary/SwiftyBeaver.o normal arm64 (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/clang -target arm64-apple-macos10.10 -r -isysroot /MACOS_SDK -L/BUILD_ROOT -L/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/BUILD_ROOT -F/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.swiftmodule -Xlinker -dependency_info -Xlinker /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver_dependency_info.dat -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Binary/SwiftyBeaver.o

Ld /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Binary/SwiftyBeaver.o normal x86_64 (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/clang -target x86_64-apple-macos10.10 -r -isysroot /MACOS_SDK -L/BUILD_ROOT -L/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/BUILD_ROOT -F/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.swiftmodule -Xlinker -dependency_info -Xlinker /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver_dependency_info.dat -o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Binary/SwiftyBeaver.o

CreateUniversalBinary /BUILD_ROOT/SwiftyBeaver.o normal arm64\ x86_64 (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    /TOOLCHAIN_BIN/lipo -create /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/Binary/SwiftyBeaver.o /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/Binary/SwiftyBeaver.o -output /BUILD_ROOT/SwiftyBeaver.o

RegisterExecutionPolicyException /BUILD_ROOT/SwiftyBeaver.o (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
    cd /PACKAGES_DIR/SwiftyBeaver
    builtin-RegisterExecutionPolicyException /BUILD_ROOT/SwiftyBeaver.o

warning: ONLY_ACTIVE_ARCH=YES requested with multiple ARCHS and no active architecture could be computed; building for all applicable architectures (in target 'Example' from project 'Example')
warning: Skipping code signing because the target does not have an Info.plist file and one is not being generated automatically. (in target 'Example' from project 'Example')
MkDir /BUILD_ROOT/Example.app (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /bin/mkdir -p /BUILD_ROOT/Example.app

MkDir /BUILD_ROOT/Example.app/Contents (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /bin/mkdir -p /BUILD_ROOT/Example.app/Contents

MkDir /BUILD_ROOT/Example.app/Contents/MacOS (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /bin/mkdir -p /BUILD_ROOT/Example.app/Contents/MacOS

WriteAuxiliaryFile /BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/Entitlements.plist (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    write-file /BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/Entitlements.plist

ProcessProductPackaging "" /BUILD_ROOT/Example.build/Debug/Example.build/Example.app.xcent (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT

    Entitlements:

    {
    "com.apple.security.get-task-allow" = 1;
}

    builtin-productPackagingUtility -entitlements -format xml -o /BUILD_ROOT/Example.build/Debug/Example.build/Example.app.xcent

WriteAuxiliaryFile /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    write-file /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml

WriteAuxiliaryFile /BUILD_ROOT/Example.build/Debug/Example.build/Example.hmap (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    write-file /BUILD_ROOT/Example.build/Debug/Example.build/Example.hmap

WriteAuxiliaryFile /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    write-file /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap

WriteAuxiliaryFile /BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    write-file /BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap

WriteAuxiliaryFile /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    write-file /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap

WriteAuxiliaryFile /BUILD_ROOT/Example.build/Debug/Example.build/Example-all-target-headers.hmap (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    write-file /BUILD_ROOT/Example.build/Debug/Example.build/Example-all-target-headers.hmap

WriteAuxiliaryFile /BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    write-file /BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap

WriteAuxiliaryFile /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.LinkFileList (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    write-file /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.LinkFileList

WriteAuxiliaryFile /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.SwiftFileList (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    write-file /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.SwiftFileList

WriteAuxiliaryFile /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example-OutputFileMap.json (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    write-file /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example-OutputFileMap.json

WriteAuxiliaryFile /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.SwiftFileList (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    write-file /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.SwiftFileList

WriteAuxiliaryFile /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.LinkFileList (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    write-file /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.LinkFileList

WriteAuxiliaryFile /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example-OutputFileMap.json (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    write-file /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example-OutputFileMap.json

CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
    export SDKROOT\=/MACOS_SDK
    /TOOLCHAIN_BIN/swiftc -incremental -module-name Example -Onone -enable-batch-mode -enforce-exclusivity\=checked @/BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.SwiftFileList -DDEBUG -sdk /MACOS_SDK -target x86_64-apple-macos12.0 -g -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -c -j8 -output-file-map /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.swiftmodule -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example-Swift.h -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -working-directory /PROJECT_ROOT

PrecompileSwiftBridgingHeader normal x86_64 (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -target x86_64-apple-macos12.0 -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -module-name Example -target-sdk-version 12.3 -serialize-diagnostics-path /BUILD_ROOT/SharedPrecompiledHeaders/bridge-2j75190bgxha.dia /PROJECT_ROOT/src/bridge.h -emit-pch -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders

CompileSwift normal x86_64 /PROJECT_ROOT/src/client.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift -primary-file /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/client.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/client.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/client.dia -target x86_64-apple-macos12.0 -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/client.o

CompileSwift normal x86_64 /PROJECT_ROOT/src/client/space.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift -primary-file /PROJECT_ROOT/src/client/space.swift -primary-file /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/space.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/space.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/space.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/state.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/state.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/state.dia -target x86_64-apple-macos12.0 -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/space.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/state.o

CompileSwift normal x86_64 /PROJECT_ROOT/src/state.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift -primary-file /PROJECT_ROOT/src/client/space.swift -primary-file /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/space.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/space.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/space.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/state.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/state.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/state.dia -target x86_64-apple-macos12.0 -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/space.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/state.o

CompileSwift normal x86_64 /PROJECT_ROOT/src/request.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift -primary-file /PROJECT_ROOT/src/request.swift -primary-file /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/request.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/request.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/request.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/socket.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/socket.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/socket.dia -target x86_64-apple-macos12.0 -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/request.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/socket.o

CompileSwift normal x86_64 /PROJECT_ROOT/src/socket.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift -primary-file /PROJECT_ROOT/src/request.swift -primary-file /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/request.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/request.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/request.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/socket.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/socket.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/socket.dia -target x86_64-apple-macos12.0 -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/request.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/socket.o

CompileSwift normal x86_64 /PROJECT_ROOT/src/logger.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift -primary-file /PROJECT_ROOT/src/logger.swift -primary-file /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/logger.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/logger.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/logger.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/padding_config.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/padding_config.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/padding_config.dia -target x86_64-apple-macos12.0 -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/logger.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/padding_config.o

CompileSwift normal x86_64 /PROJECT_ROOT/src/padding_config.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift -primary-file /PROJECT_ROOT/src/logger.swift -primary-file /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/logger.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/logger.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/logger.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/padding_config.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/padding_config.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/padding_config.dia -target x86_64-apple-macos12.0 -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/logger.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/padding_config.o

CompileSwift normal x86_64 /PROJECT_ROOT/src/client/display.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift -primary-file /PROJECT_ROOT/src/client/display.swift -primary-file /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/display.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/display.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/display.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/error.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/error.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/error.dia -target x86_64-apple-macos12.0 -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/display.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/error.o

CompileSwift normal x86_64 /PROJECT_ROOT/src/error.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift -primary-file /PROJECT_ROOT/src/client/display.swift -primary-file /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/display.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/display.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/display.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/error.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/error.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/error.dia -target x86_64-apple-macos12.0 -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/display.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/error.o

CompileSwift normal x86_64 /PROJECT_ROOT/src/client/window.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift -primary-file /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/window.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/window.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/window.dia -target x86_64-apple-macos12.0 -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/window.o

CompileSwift normal x86_64 /PROJECT_ROOT/src/api.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PROJECT_ROOT/src/api.swift -primary-file /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/api.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/api.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/api.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/cli.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/cli.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/cli.dia -target x86_64-apple-macos12.0 -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/api.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/cli.o

CompileSwift normal x86_64 /PROJECT_ROOT/src/cli.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PROJECT_ROOT/src/api.swift -primary-file /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/api.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/api.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/api.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/cli.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/cli.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/cli.dia -target x86_64-apple-macos12.0 -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/api.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/cli.o

CompileSwift normal x86_64 /PROJECT_ROOT/src/event.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift -primary-file /PROJECT_ROOT/src/event.swift -primary-file /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/event.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/event.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/event.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/layout.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/layout.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/layout.dia -target x86_64-apple-macos12.0 -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/event.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/layout.o
/PROJECT_ROOT/src/layout.swift:35:11: warning: variable 'targetMasterWindowsCount' was never mutated; consider changing to 'let' constant
      var targetMasterWindowsCount = targetMasterWindowsCount ?? expectedCurrentMasterWindowsCount
      ~~~ ^
      let
/PROJECT_ROOT/src/layout.swift:214:65: warning: result of call to 'get()' is unused
        try client.request("window", windowId, "--warp", "west").get()
                                                                ^  ~~
/PROJECT_ROOT/src/layout.swift:223:72: warning: result of call to 'get()' is unused
            try client.request("window", windowId, "--toggle", "split").get()
                                                                       ^  ~~
/PROJECT_ROOT/src/layout.swift:242:87: warning: result of call to 'get()' is unused
        try client.request("window", windowId, "--warp", String(widestStackWindow.id)).get()
                                                                                      ^  ~~
/PROJECT_ROOT/src/layout.swift:251:72: warning: result of call to 'get()' is unused
            try client.request("window", windowId, "--toggle", "split").get()
                                                                       ^  ~~

CompileSwift normal x86_64 /PROJECT_ROOT/src/layout.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift -primary-file /PROJECT_ROOT/src/event.swift -primary-file /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/event.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/event.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/event.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/layout.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/layout.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/layout.dia -target x86_64-apple-macos12.0 -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/event.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/layout.o
/PROJECT_ROOT/src/layout.swift:35:11: warning: variable 'targetMasterWindowsCount' was never mutated; consider changing to 'let' constant
      var targetMasterWindowsCount = targetMasterWindowsCount ?? expectedCurrentMasterWindowsCount
      ~~~ ^
      let
/PROJECT_ROOT/src/layout.swift:214:65: warning: result of call to 'get()' is unused
        try client.request("window", windowId, "--warp", "west").get()
                                                                ^  ~~
/PROJECT_ROOT/src/layout.swift:223:72: warning: result of call to 'get()' is unused
            try client.request("window", windowId, "--toggle", "split").get()
                                                                       ^  ~~
/PROJECT_ROOT/src/layout.swift:242:87: warning: result of call to 'get()' is unused
        try client.request("window", windowId, "--warp", String(widestStackWindow.id)).get()
                                                                                      ^  ~~
/PROJECT_ROOT/src/layout.swift:251:72: warning: result of call to 'get()' is unused
            try client.request("window", windowId, "--toggle", "split").get()
                                                                       ^  ~~

EmitSwiftModule normal x86_64 (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -target x86_64-apple-macos12.0 -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -emit-module-doc-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.swiftdoc -emit-module-source-info-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.swiftsourceinfo -emit-objc-header-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example-Swift.h -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.swiftmodule -emit-abi-descriptor-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.abi.json

CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
    export SDKROOT\=/MACOS_SDK
    /TOOLCHAIN_BIN/swiftc -incremental -module-name Example -Onone -enable-batch-mode -enforce-exclusivity\=checked @/BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.SwiftFileList -DDEBUG -sdk /MACOS_SDK -target arm64-apple-macos12.0 -g -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -c -j8 -output-file-map /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.swiftmodule -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example-Swift.h -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -working-directory /PROJECT_ROOT

PrecompileSwiftBridgingHeader normal arm64 (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -target arm64-apple-macos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -module-name Example -target-sdk-version 12.3 -serialize-diagnostics-path /BUILD_ROOT/SharedPrecompiledHeaders/bridge-27dwibosqij0c.dia /PROJECT_ROOT/src/bridge.h -emit-pch -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders

CompileSwift normal arm64 /PROJECT_ROOT/src/client/window.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift -primary-file /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/window.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/window.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/window.dia -target arm64-apple-macos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/window.o

CompileSwift normal arm64 /PROJECT_ROOT/src/client/space.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift -primary-file /PROJECT_ROOT/src/client/space.swift -primary-file /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/space.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/space.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/space.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/state.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/state.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/state.dia -target arm64-apple-macos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/space.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/state.o

CompileSwift normal arm64 /PROJECT_ROOT/src/state.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift -primary-file /PROJECT_ROOT/src/client/space.swift -primary-file /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/space.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/space.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/space.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/state.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/state.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/state.dia -target arm64-apple-macos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/space.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/state.o

CompileSwift normal arm64 /PROJECT_ROOT/src/request.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift -primary-file /PROJECT_ROOT/src/request.swift -primary-file /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/request.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/request.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/request.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/socket.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/socket.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/socket.dia -target arm64-apple-macos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/request.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/socket.o

CompileSwift normal arm64 /PROJECT_ROOT/src/socket.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift -primary-file /PROJECT_ROOT/src/request.swift -primary-file /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/request.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/request.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/request.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/socket.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/socket.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/socket.dia -target arm64-apple-macos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/request.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/socket.o

CompileSwift normal arm64 /PROJECT_ROOT/src/client.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift -primary-file /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/client.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/client.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/client.dia -target arm64-apple-macos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/client.o

CompileSwift normal arm64 /PROJECT_ROOT/src/logger.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift -primary-file /PROJECT_ROOT/src/logger.swift -primary-file /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/logger.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/logger.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/logger.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/padding_config.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/padding_config.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/padding_config.dia -target arm64-apple-macos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/logger.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/padding_config.o

CompileSwift normal arm64 /PROJECT_ROOT/src/padding_config.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift -primary-file /PROJECT_ROOT/src/logger.swift -primary-file /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/logger.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/logger.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/logger.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/padding_config.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/padding_config.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/padding_config.dia -target arm64-apple-macos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/logger.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/padding_config.o

CompileSwift normal arm64 /PROJECT_ROOT/src/client/display.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift -primary-file /PROJECT_ROOT/src/client/display.swift -primary-file /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/display.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/display.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/display.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/error.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/error.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/error.dia -target arm64-apple-macos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/display.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/error.o

CompileSwift normal arm64 /PROJECT_ROOT/src/error.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift -primary-file /PROJECT_ROOT/src/client/display.swift -primary-file /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/display.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/display.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/display.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/error.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/error.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/error.dia -target arm64-apple-macos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/display.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/error.o

CompileSwift normal arm64 /PROJECT_ROOT/src/event.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift -primary-file /PROJECT_ROOT/src/event.swift -primary-file /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/event.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/event.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/event.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/layout.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/layout.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/layout.dia -target arm64-apple-macos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/event.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/layout.o
/PROJECT_ROOT/src/layout.swift:35:11: warning: variable 'targetMasterWindowsCount' was never mutated; consider changing to 'let' constant
      var targetMasterWindowsCount = targetMasterWindowsCount ?? expectedCurrentMasterWindowsCount
      ~~~ ^
      let
/PROJECT_ROOT/src/layout.swift:214:65: warning: result of call to 'get()' is unused
        try client.request("window", windowId, "--warp", "west").get()
                                                                ^  ~~
/PROJECT_ROOT/src/layout.swift:223:72: warning: result of call to 'get()' is unused
            try client.request("window", windowId, "--toggle", "split").get()
                                                                       ^  ~~
/PROJECT_ROOT/src/layout.swift:242:87: warning: result of call to 'get()' is unused
        try client.request("window", windowId, "--warp", String(widestStackWindow.id)).get()
                                                                                      ^  ~~
/PROJECT_ROOT/src/layout.swift:251:72: warning: result of call to 'get()' is unused
            try client.request("window", windowId, "--toggle", "split").get()
                                                                       ^  ~~

CompileSwift normal arm64 /PROJECT_ROOT/src/layout.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift -primary-file /PROJECT_ROOT/src/event.swift -primary-file /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/event.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/event.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/event.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/layout.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/layout.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/layout.dia -target arm64-apple-macos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/event.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/layout.o
/PROJECT_ROOT/src/layout.swift:35:11: warning: variable 'targetMasterWindowsCount' was never mutated; consider changing to 'let' constant
      var targetMasterWindowsCount = targetMasterWindowsCount ?? expectedCurrentMasterWindowsCount
      ~~~ ^
      let
/PROJECT_ROOT/src/layout.swift:214:65: warning: result of call to 'get()' is unused
        try client.request("window", windowId, "--warp", "west").get()
                                                                ^  ~~
/PROJECT_ROOT/src/layout.swift:223:72: warning: result of call to 'get()' is unused
            try client.request("window", windowId, "--toggle", "split").get()
                                                                       ^  ~~
/PROJECT_ROOT/src/layout.swift:242:87: warning: result of call to 'get()' is unused
        try client.request("window", windowId, "--warp", String(widestStackWindow.id)).get()
                                                                                      ^  ~~
/PROJECT_ROOT/src/layout.swift:251:72: warning: result of call to 'get()' is unused
            try client.request("window", windowId, "--toggle", "split").get()
                                                                       ^  ~~

CompileSwift normal arm64 /PROJECT_ROOT/src/api.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PROJECT_ROOT/src/api.swift -primary-file /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/api.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/api.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/api.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/cli.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/cli.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/cli.dia -target arm64-apple-macos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/api.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/cli.o

CompileSwift normal arm64 /PROJECT_ROOT/src/cli.swift (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -c -primary-file /PROJECT_ROOT/src/api.swift -primary-file /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/api.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/api.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/api.dia -emit-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/cli.d -emit-reference-dependencies-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/cli.swiftdeps -serialize-diagnostics-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/cli.dia -target arm64-apple-macos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/api.o -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/cli.o

EmitSwiftModule normal arm64 (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /PROJECT_ROOT/src/api.swift /PROJECT_ROOT/src/cli.swift /PROJECT_ROOT/src/client/display.swift /PROJECT_ROOT/src/error.swift /PROJECT_ROOT/src/event.swift /PROJECT_ROOT/src/layout.swift /PROJECT_ROOT/src/logger.swift /PROJECT_ROOT/src/padding_config.swift /PROJECT_ROOT/src/request.swift /PROJECT_ROOT/src/socket.swift /PROJECT_ROOT/src/client/space.swift /PROJECT_ROOT/src/state.swift /PROJECT_ROOT/src/client/window.swift /PROJECT_ROOT/src/client.swift -target arm64-apple-macos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /MACOS_SDK -I /BUILD_ROOT -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT/PackageFrameworks -F /BUILD_ROOT -enable-testing -g -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -new-driver-path /TOOLCHAIN_BIN/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /PROJECT_ROOT -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/swift-overrides.hmap -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -Xcc -iquote -Xcc /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -Xcc -I/BUILD_ROOT/include -Xcc -Isrc -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -Xcc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header /PROJECT_ROOT/src/bridge.h -pch-output-dir /BUILD_ROOT/SharedPrecompiledHeaders -pch-disable-validation -module-name Example -target-sdk-version 12.3 -emit-module-doc-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.swiftdoc -emit-module-source-info-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.swiftsourceinfo -emit-objc-header-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example-Swift.h -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.swiftmodule -emit-abi-descriptor-path /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.abi.json

Copy /BUILD_ROOT/Example.swiftmodule/arm64-apple-macos.swiftdoc /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.swiftdoc (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.swiftdoc /BUILD_ROOT/Example.swiftmodule/arm64-apple-macos.swiftdoc

Copy /BUILD_ROOT/Example.swiftmodule/arm64-apple-macos.swiftmodule /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.swiftmodule (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.swiftmodule /BUILD_ROOT/Example.swiftmodule/arm64-apple-macos.swiftmodule

Copy /BUILD_ROOT/Example.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.swiftsourceinfo (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.swiftsourceinfo /BUILD_ROOT/Example.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo

SwiftMergeGeneratedHeaders /BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/Example-Swift.h /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example-Swift.h /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example-Swift.h (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    builtin-swiftHeaderTool -arch arm64 /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example-Swift.h -arch x86_64 /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example-Swift.h -o /BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/Example-Swift.h

Copy /BUILD_ROOT/Example.swiftmodule/x86_64-apple-macos.swiftmodule /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.swiftmodule (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.swiftmodule /BUILD_ROOT/Example.swiftmodule/x86_64-apple-macos.swiftmodule

Copy /BUILD_ROOT/Example.swiftmodule/x86_64-apple-macos.swiftdoc /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.swiftdoc (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.swiftdoc /BUILD_ROOT/Example.swiftmodule/x86_64-apple-macos.swiftdoc

Copy /BUILD_ROOT/Example.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.swiftsourceinfo (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.swiftsourceinfo /BUILD_ROOT/Example.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo

CompileC /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/bridge.o /PROJECT_ROOT/src/client/bridge.c normal x86_64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    export LANG\=en_US.US-ASCII
    /TOOLCHAIN_BIN/clang -x c -target x86_64-apple-macos12.0 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fmodules -gmodules -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wquoted-include-in-framework-header -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -DDEBUG\=1 -isysroot /MACOS_SDK -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -ivfsoverlay /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -iquote /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -I/BUILD_ROOT/include -Isrc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/x86_64 -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/x86_64 -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT -fmodule-map-file\=/BUILD_ROOT/GeneratedModuleMaps/ArgumentParserToolInfo.modulemap -fmodule-map-file\=/BUILD_ROOT/GeneratedModuleMaps/ArgumentParser.modulemap -fmodule-map-file\=/BUILD_ROOT/GeneratedModuleMaps/Socket.modulemap -fmodule-map-file\=/BUILD_ROOT/GeneratedModuleMaps/SwiftyBeaver.modulemap -MMD -MT dependencies -MF /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/bridge.d --serialize-diagnostics /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/bridge.dia -c /PROJECT_ROOT/src/client/bridge.c -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/bridge.o

CompileC /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/bridge.o /PROJECT_ROOT/src/client/bridge.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    export LANG\=en_US.US-ASCII
    /TOOLCHAIN_BIN/clang -x c -target arm64-apple-macos12.0 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fmodules -gmodules -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/var/folders/lm/jgnf6c7941qbrz4r6j5qscx00000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wquoted-include-in-framework-header -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -DDEBUG\=1 -isysroot /MACOS_SDK -fstrict-aliasing -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /BUILD_ROOT/Example.build/Debug/Example.build/Example-generated-files.hmap -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-own-target-headers.hmap -I/BUILD_ROOT/Example.build/Debug/Example.build/Example-all-non-framework-target-headers.hmap -ivfsoverlay /BUILD_ROOT/Example.build/Debug/Example.build/all-product-headers.yaml -iquote /BUILD_ROOT/Example.build/Debug/Example.build/Example-project-headers.hmap -I/BUILD_ROOT/include -Isrc -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources-normal/arm64 -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources/arm64 -I/BUILD_ROOT/Example.build/Debug/Example.build/DerivedSources -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT -fmodule-map-file\=/BUILD_ROOT/GeneratedModuleMaps/ArgumentParserToolInfo.modulemap -fmodule-map-file\=/BUILD_ROOT/GeneratedModuleMaps/ArgumentParser.modulemap -fmodule-map-file\=/BUILD_ROOT/GeneratedModuleMaps/Socket.modulemap -fmodule-map-file\=/BUILD_ROOT/GeneratedModuleMaps/SwiftyBeaver.modulemap -MMD -MT dependencies -MF /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/bridge.d --serialize-diagnostics /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/bridge.dia -c /PROJECT_ROOT/src/client/bridge.c -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/bridge.o

Ld /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Binary/Example normal arm64 (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/clang -target arm64-apple-macos12.0 -isysroot /MACOS_SDK -L/BUILD_ROOT -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT -filelist /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.LinkFileList -Xlinker -rpath -Xlinker @executable_path/../Frameworks -Xlinker -object_path_lto -Xlinker /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example.swiftmodule -Xlinker -no_adhoc_codesign -Xlinker -dependency_info -Xlinker /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Example_dependency_info.dat -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Binary/Example -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/arm64/Socket.swiftmodule -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/arm64/SwiftyBeaver.swiftmodule

Ld /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Binary/Example normal x86_64 (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/clang -target x86_64-apple-macos12.0 -isysroot /MACOS_SDK -L/BUILD_ROOT -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT/PackageFrameworks -F/BUILD_ROOT -filelist /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.LinkFileList -Xlinker -rpath -Xlinker @executable_path/../Frameworks -Xlinker -object_path_lto -Xlinker /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example.swiftmodule -Xlinker -no_adhoc_codesign -Xlinker -dependency_info -Xlinker /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Example_dependency_info.dat -o /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Binary/Example -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/x86_64/ArgumentParser.swiftmodule -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/x86_64/ArgumentParserToolInfo.swiftmodule -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/Socket.build/Debug/Socket.build/Objects-normal/x86_64/Socket.swiftmodule -Xlinker -add_ast_path -Xlinker /BUILD_ROOT/SwiftyBeaver.build/Debug/SwiftyBeaver.build/Objects-normal/x86_64/SwiftyBeaver.swiftmodule

CreateUniversalBinary /BUILD_ROOT/Example.app/Contents/MacOS/Example normal arm64\ x86_64 (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /TOOLCHAIN_BIN/lipo -create /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/arm64/Binary/Example /BUILD_ROOT/Example.build/Debug/Example.build/Objects-normal/x86_64/Binary/Example -output /BUILD_ROOT/Example.app/Contents/MacOS/Example

CopySwiftLibs /BUILD_ROOT/Example.app (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    export CODESIGN_ALLOCATE\=/TOOLCHAIN_BIN/codesign_allocate
    export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
    export SDKROOT\=/MACOS_SDK
    builtin-swiftStdLibTool --copy --verbose --sign - --scan-executable /BUILD_ROOT/Example.app/Contents/MacOS/Example --scan-folder /BUILD_ROOT/Example.app/Contents/Frameworks --scan-folder /BUILD_ROOT/Example.app/Contents/PlugIns --scan-folder /BUILD_ROOT/Example.app/Contents/Library/SystemExtensions --platform macosx --toolchain /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /BUILD_ROOT/Example.app/Contents/Frameworks --strip-bitcode --strip-bitcode-tool /TOOLCHAIN_BIN/bitcode_strip --emit-dependency-info /BUILD_ROOT/Example.build/Debug/Example.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os

RegisterExecutionPolicyException /BUILD_ROOT/Example.app (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    builtin-RegisterExecutionPolicyException /BUILD_ROOT/Example.app

Validate /BUILD_ROOT/Example.app (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    builtin-validationUtility /BUILD_ROOT/Example.app -no-validate-extension

Touch /BUILD_ROOT/Example.app (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /usr/bin/touch -c /BUILD_ROOT/Example.app

RegisterWithLaunchServices /BUILD_ROOT/Example.app (in target 'Example' from project 'Example')
    cd /PROJECT_ROOT
    /System/Library/Frameworks/CoreServices.framework/Versions/Current/Frameworks/LaunchServices.framework/Versions/Current/Support/lsregister -f -R -trusted /BUILD_ROOT/Example.app

warning: ONLY_ACTIVE_ARCH=YES requested with multiple ARCHS and no active architecture could be computed; building for all applicable architectures (in target 'ArgumentParser' from project 'swift-argument-parser')
warning: ONLY_ACTIVE_ARCH=YES requested with multiple ARCHS and no active architecture could be computed; building for all applicable architectures (in target 'Socket' from project 'Socket')
warning: ONLY_ACTIVE_ARCH=YES requested with multiple ARCHS and no active architecture could be computed; building for all applicable architectures (in target 'SwiftyBeaver' from project 'SwiftyBeaver')
** BUILD SUCCEEDED **