-
Notifications
You must be signed in to change notification settings - Fork 1
/
compile_commands.json
1867 lines (1557 loc) · 262 KB
/
compile_commands.json
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
[
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/__/__/config/auto/pathdef.c.o -c /Users/zchee/src/github.com/neovim/neovim/build/config/auto/pathdef.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/build/config/auto/pathdef.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/auto/msgpack_dispatch.c.o -c /Users/zchee/src/github.com/neovim/neovim/build/src/nvim/auto/msgpack_dispatch.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/build/src/nvim/auto/msgpack_dispatch.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/api/buffer.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/api/buffer.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/api/buffer.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/api/private/handle.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/api/private/handle.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/api/private/handle.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/api/private/helpers.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/api/private/helpers.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/api/private/helpers.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/api/tabpage.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/api/tabpage.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/api/tabpage.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/api/vim.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/api/vim.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/api/vim.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/api/window.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/api/window.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/api/window.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/arabic.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/arabic.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/arabic.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/buffer.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/buffer.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/buffer.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/charset.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/charset.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/charset.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/cursor.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/cursor.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/cursor.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/cursor_shape.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/cursor_shape.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/cursor_shape.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/diff.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/diff.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/diff.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/digraph.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/digraph.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/digraph.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/edit.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/edit.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/edit.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/eval.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/eval.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/eval.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/event/libuv_process.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/libuv_process.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/libuv_process.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/event/loop.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/loop.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/loop.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/event/process.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/process.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/process.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/event/pty_process.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/pty_process.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/pty_process.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/event/queue.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/queue.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/queue.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/event/rstream.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/rstream.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/rstream.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/event/signal.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/signal.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/signal.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/event/socket.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/socket.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/socket.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/event/stream.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/stream.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/stream.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/event/time.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/time.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/time.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/event/wstream.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/wstream.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/wstream.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/ex_cmds.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_cmds.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_cmds.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/ex_cmds2.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_cmds2.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_cmds2.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/ex_docmd.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_docmd.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_docmd.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/ex_eval.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_eval.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_eval.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/ex_getln.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_getln.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_getln.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/farsi.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/farsi.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/farsi.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/file_search.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/file_search.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/file_search.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/fileio.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/fileio.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/fileio.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/fold.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/fold.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/fold.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/garray.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/garray.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/garray.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/getchar.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/getchar.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/getchar.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/hardcopy.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/hardcopy.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/hardcopy.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/hashtab.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/hashtab.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/hashtab.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/if_cscope.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/if_cscope.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/if_cscope.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/indent.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/indent.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/indent.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/indent_c.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/indent_c.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/indent_c.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/keymap.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/keymap.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/keymap.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/log.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/log.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/log.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/main.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/main.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/main.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/map.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/map.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/map.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/mark.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/mark.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/mark.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/mbyte.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/mbyte.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/mbyte.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/memfile.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/memfile.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/memfile.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/memline.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/memline.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/memline.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/memory.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/memory.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/memory.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/menu.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/menu.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/menu.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/message.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/message.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/message.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/misc1.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/misc1.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/misc1.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/misc2.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/misc2.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/misc2.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/mouse.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/mouse.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/mouse.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/move.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/move.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/move.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/msgpack_rpc/channel.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/msgpack_rpc/channel.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/msgpack_rpc/channel.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/msgpack_rpc/helpers.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/msgpack_rpc/helpers.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/msgpack_rpc/helpers.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/msgpack_rpc/remote_ui.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/msgpack_rpc/remote_ui.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/msgpack_rpc/remote_ui.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/msgpack_rpc/server.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/msgpack_rpc/server.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/msgpack_rpc/server.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/normal.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/normal.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/normal.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/ops.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/ops.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/ops.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/option.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/option.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/option.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/os/dl.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/os/dl.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/os/dl.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/os/env.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/os/env.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/os/env.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/os/fs.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/os/fs.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/os/fs.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/os/input.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/os/input.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/os/input.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/os/mem.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/os/mem.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/os/mem.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/os/shell.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/os/shell.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/os/shell.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/os/signal.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/os/signal.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/os/signal.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/os/stdpaths.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/os/stdpaths.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/os/stdpaths.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/os/time.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/os/time.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/os/time.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/os/users.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/os/users.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/os/users.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/os_unix.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/os_unix.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/os_unix.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/path.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/path.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/path.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/popupmnu.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/popupmnu.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/popupmnu.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/profile.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/profile.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/profile.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/quickfix.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/quickfix.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/quickfix.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/rbuffer.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/rbuffer.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/rbuffer.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/regexp.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/regexp.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/regexp.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/screen.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/screen.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/screen.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/search.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/search.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/search.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/sha256.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/sha256.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/sha256.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/shada.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/shada.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/shada.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/spell.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/spell.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/spell.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/state.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/state.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/state.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/strings.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/strings.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/strings.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/syntax.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/syntax.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/syntax.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/tag.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/tag.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/tag.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/tempfile.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/tempfile.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/tempfile.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/terminal.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/terminal.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/terminal.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/tui/input.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/tui/input.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/tui/input.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/tui/tui.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/tui/tui.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/tui/tui.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/ugrid.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/ugrid.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/ugrid.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/ui.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/ui.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/ui.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/ui_bridge.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/ui_bridge.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/ui_bridge.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/undo.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/undo.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/undo.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -o src/nvim/CMakeFiles/libnvim.dir/version.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/version.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/version.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DMAKE_LIB -Wno-conversion -o src/nvim/CMakeFiles/libnvim.dir/window.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/window.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/window.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/__/__/config/auto/pathdef.c.o -c /Users/zchee/src/github.com/neovim/neovim/build/config/auto/pathdef.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/build/config/auto/pathdef.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/auto/msgpack_dispatch.c.o -c /Users/zchee/src/github.com/neovim/neovim/build/src/nvim/auto/msgpack_dispatch.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/build/src/nvim/auto/msgpack_dispatch.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/api/buffer.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/api/buffer.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/api/buffer.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/api/private/handle.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/api/private/handle.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/api/private/handle.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/api/private/helpers.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/api/private/helpers.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/api/private/helpers.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/api/tabpage.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/api/tabpage.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/api/tabpage.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/api/vim.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/api/vim.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/api/vim.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/api/window.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/api/window.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/api/window.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/arabic.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/arabic.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/arabic.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -Wno-conversion -o src/nvim/CMakeFiles/nvim-test.dir/buffer.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/buffer.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/buffer.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -Wno-conversion -o src/nvim/CMakeFiles/nvim-test.dir/charset.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/charset.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/charset.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/cursor.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/cursor.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/cursor.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/cursor_shape.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/cursor_shape.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/cursor_shape.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -Wno-conversion -o src/nvim/CMakeFiles/nvim-test.dir/diff.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/diff.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/diff.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/digraph.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/digraph.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/digraph.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -Wno-conversion -o src/nvim/CMakeFiles/nvim-test.dir/edit.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/edit.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/edit.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -Wno-conversion -o src/nvim/CMakeFiles/nvim-test.dir/eval.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/eval.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/eval.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/event/libuv_process.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/libuv_process.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/libuv_process.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/event/loop.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/loop.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/loop.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/event/process.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/process.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/process.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/event/pty_process.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/pty_process.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/pty_process.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/event/queue.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/queue.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/queue.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/event/rstream.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/rstream.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/rstream.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/event/signal.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/signal.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/signal.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/event/socket.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/socket.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/socket.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/event/stream.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/stream.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/stream.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/event/time.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/time.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/time.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/event/wstream.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/event/wstream.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/event/wstream.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -Wno-conversion -o src/nvim/CMakeFiles/nvim-test.dir/ex_cmds.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_cmds.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_cmds.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/ex_cmds2.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_cmds2.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_cmds2.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -Wno-conversion -o src/nvim/CMakeFiles/nvim-test.dir/ex_docmd.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_docmd.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_docmd.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/ex_eval.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_eval.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_eval.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -Wno-conversion -o src/nvim/CMakeFiles/nvim-test.dir/ex_getln.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_getln.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/ex_getln.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/farsi.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/farsi.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/farsi.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/file_search.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/file_search.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/file_search.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -Wno-conversion -o src/nvim/CMakeFiles/nvim-test.dir/fileio.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/fileio.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/fileio.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/fold.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/fold.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/fold.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/garray.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/garray.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/garray.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -Wno-conversion -o src/nvim/CMakeFiles/nvim-test.dir/getchar.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/getchar.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/getchar.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/hardcopy.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/hardcopy.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/hardcopy.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/hashtab.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/hashtab.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/hashtab.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/if_cscope.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/if_cscope.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/if_cscope.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/indent.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/indent.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/indent.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/indent_c.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/indent_c.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/indent_c.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/keymap.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/keymap.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/keymap.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/log.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/log.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/log.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/main.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/main.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/main.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/map.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/map.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/map.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/mark.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/mark.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/mark.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -Wno-conversion -o src/nvim/CMakeFiles/nvim-test.dir/mbyte.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/mbyte.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/mbyte.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/memfile.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/memfile.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/memfile.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -Wno-conversion -o src/nvim/CMakeFiles/nvim-test.dir/memline.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/memline.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/memline.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/memory.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/memory.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/memory.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/menu.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/menu.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/menu.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -Wno-conversion -o src/nvim/CMakeFiles/nvim-test.dir/message.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/message.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/message.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -Wno-conversion -o src/nvim/CMakeFiles/nvim-test.dir/misc1.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/misc1.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/misc1.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/misc2.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/misc2.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/misc2.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/mouse.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/mouse.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/mouse.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/move.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/move.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/move.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/msgpack_rpc/channel.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/msgpack_rpc/channel.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/msgpack_rpc/channel.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/msgpack_rpc/helpers.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/msgpack_rpc/helpers.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/msgpack_rpc/helpers.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/msgpack_rpc/remote_ui.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/msgpack_rpc/remote_ui.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/msgpack_rpc/remote_ui.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/msgpack_rpc/server.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/msgpack_rpc/server.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/msgpack_rpc/server.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -o src/nvim/CMakeFiles/nvim-test.dir/normal.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/normal.c",
"file": "/Users/zchee/src/github.com/neovim/neovim/src/nvim/normal.c"
},
{
"directory": "/Users/zchee/src/github.com/neovim/neovim/build",
"command": "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -DHAVE_CONFIG_H -DINCLUDE_GENERATED_DECLARATIONS -Dnvim_test_EXPORTS -Iconfig -I../src -isystem ../.deps/usr/include -isystem ../.deps/usr/include/luajit-2.0 -isystem /usr/local/opt/gettext/include -Isrc/nvim/auto -Iinclude -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Ofast -flto -march=native -DDISABLE_LOG -fPIC -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DUNIT_TESTING -Wno-conversion -o src/nvim/CMakeFiles/nvim-test.dir/ops.c.o -c /Users/zchee/src/github.com/neovim/neovim/src/nvim/ops.c",