forked from vscosta/yap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compile_commands.json
1017 lines (1017 loc) · 116 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": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/yap-bin.dir/console/yap.c.o -c /home/vsc/github/yap/console/yap.c",
"file": "/home/vsc/github/yap/console/yap.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/absmi.c.o -c /home/vsc/github/yap/C/absmi.c",
"file": "/home/vsc/github/yap/C/absmi.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/agc.c.o -c /home/vsc/github/yap/C/agc.c",
"file": "/home/vsc/github/yap/C/agc.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/adtdefs.c.o -c /home/vsc/github/yap/C/adtdefs.c",
"file": "/home/vsc/github/yap/C/adtdefs.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/alloc.c.o -c /home/vsc/github/yap/C/alloc.c",
"file": "/home/vsc/github/yap/C/alloc.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/amasm.c.o -c /home/vsc/github/yap/C/amasm.c",
"file": "/home/vsc/github/yap/C/amasm.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/analyst.c.o -c /home/vsc/github/yap/C/analyst.c",
"file": "/home/vsc/github/yap/C/analyst.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/args.c.o -c /home/vsc/github/yap/C/args.c",
"file": "/home/vsc/github/yap/C/args.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/arrays.c.o -c /home/vsc/github/yap/C/arrays.c",
"file": "/home/vsc/github/yap/C/arrays.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/arith0.c.o -c /home/vsc/github/yap/C/arith0.c",
"file": "/home/vsc/github/yap/C/arith0.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/arith1.c.o -c /home/vsc/github/yap/C/arith1.c",
"file": "/home/vsc/github/yap/C/arith1.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/arith2.c.o -c /home/vsc/github/yap/C/arith2.c",
"file": "/home/vsc/github/yap/C/arith2.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/atomic.c.o -c /home/vsc/github/yap/C/atomic.c",
"file": "/home/vsc/github/yap/C/atomic.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/attvar.c.o -c /home/vsc/github/yap/C/attvar.c",
"file": "/home/vsc/github/yap/C/attvar.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/bignum.c.o -c /home/vsc/github/yap/C/bignum.c",
"file": "/home/vsc/github/yap/C/bignum.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/bb.c.o -c /home/vsc/github/yap/C/bb.c",
"file": "/home/vsc/github/yap/C/bb.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/blobs.c.o -c /home/vsc/github/yap/C/blobs.c",
"file": "/home/vsc/github/yap/C/blobs.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/cdmgr.c.o -c /home/vsc/github/yap/C/cdmgr.c",
"file": "/home/vsc/github/yap/C/cdmgr.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/cmppreds.c.o -c /home/vsc/github/yap/C/cmppreds.c",
"file": "/home/vsc/github/yap/C/cmppreds.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/compiler.c.o -c /home/vsc/github/yap/C/compiler.c",
"file": "/home/vsc/github/yap/C/compiler.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/computils.c.o -c /home/vsc/github/yap/C/computils.c",
"file": "/home/vsc/github/yap/C/computils.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/corout.c.o -c /home/vsc/github/yap/C/corout.c",
"file": "/home/vsc/github/yap/C/corout.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/cut_c.c.o -c /home/vsc/github/yap/C/cut_c.c",
"file": "/home/vsc/github/yap/C/cut_c.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/dbase.c.o -c /home/vsc/github/yap/C/dbase.c",
"file": "/home/vsc/github/yap/C/dbase.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/debug.c.o -c /home/vsc/github/yap/C/debug.c",
"file": "/home/vsc/github/yap/C/debug.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/dlmalloc.c.o -c /home/vsc/github/yap/C/dlmalloc.c",
"file": "/home/vsc/github/yap/C/dlmalloc.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/errors.c.o -c /home/vsc/github/yap/C/errors.c",
"file": "/home/vsc/github/yap/C/errors.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/eval.c.o -c /home/vsc/github/yap/C/eval.c",
"file": "/home/vsc/github/yap/C/eval.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/exec.c.o -c /home/vsc/github/yap/C/exec.c",
"file": "/home/vsc/github/yap/C/exec.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/exo.c.o -c /home/vsc/github/yap/C/exo.c",
"file": "/home/vsc/github/yap/C/exo.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/exo_udi.c.o -c /home/vsc/github/yap/C/exo_udi.c",
"file": "/home/vsc/github/yap/C/exo_udi.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/flags.c.o -c /home/vsc/github/yap/C/flags.c",
"file": "/home/vsc/github/yap/C/flags.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/globals.c.o -c /home/vsc/github/yap/C/globals.c",
"file": "/home/vsc/github/yap/C/globals.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/gmp_support.c.o -c /home/vsc/github/yap/C/gmp_support.c",
"file": "/home/vsc/github/yap/C/gmp_support.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/gprof.c.o -c /home/vsc/github/yap/C/gprof.c",
"file": "/home/vsc/github/yap/C/gprof.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/grow.c.o -c /home/vsc/github/yap/C/grow.c",
"file": "/home/vsc/github/yap/C/grow.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/heapgc.c.o -c /home/vsc/github/yap/C/heapgc.c",
"file": "/home/vsc/github/yap/C/heapgc.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/index.c.o -c /home/vsc/github/yap/C/index.c",
"file": "/home/vsc/github/yap/C/index.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/init.c.o -c /home/vsc/github/yap/C/init.c",
"file": "/home/vsc/github/yap/C/init.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/inlines.c.o -c /home/vsc/github/yap/C/inlines.c",
"file": "/home/vsc/github/yap/C/inlines.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/depth_bound.c.o -c /home/vsc/github/yap/C/depth_bound.c",
"file": "/home/vsc/github/yap/C/depth_bound.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/mavar.c.o -c /home/vsc/github/yap/C/mavar.c",
"file": "/home/vsc/github/yap/C/mavar.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/modules.c.o -c /home/vsc/github/yap/C/modules.c",
"file": "/home/vsc/github/yap/C/modules.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/other.c.o -c /home/vsc/github/yap/C/other.c",
"file": "/home/vsc/github/yap/C/other.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/parser.c.o -c /home/vsc/github/yap/C/parser.c",
"file": "/home/vsc/github/yap/C/parser.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/qlyr.c.o -c /home/vsc/github/yap/C/qlyr.c",
"file": "/home/vsc/github/yap/C/qlyr.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/qlyw.c.o -c /home/vsc/github/yap/C/qlyw.c",
"file": "/home/vsc/github/yap/C/qlyw.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/range.c.o -c /home/vsc/github/yap/C/range.c",
"file": "/home/vsc/github/yap/C/range.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/save.c.o -c /home/vsc/github/yap/C/save.c",
"file": "/home/vsc/github/yap/C/save.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/scanner.c.o -c /home/vsc/github/yap/C/scanner.c",
"file": "/home/vsc/github/yap/C/scanner.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/signals.c.o -c /home/vsc/github/yap/C/signals.c",
"file": "/home/vsc/github/yap/C/signals.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/sort.c.o -c /home/vsc/github/yap/C/sort.c",
"file": "/home/vsc/github/yap/C/sort.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/stdpreds.c.o -c /home/vsc/github/yap/C/stdpreds.c",
"file": "/home/vsc/github/yap/C/stdpreds.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/stack.c.o -c /home/vsc/github/yap/C/stack.c",
"file": "/home/vsc/github/yap/C/stack.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/terms.c.o -c /home/vsc/github/yap/C/terms.c",
"file": "/home/vsc/github/yap/C/terms.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/text.c.o -c /home/vsc/github/yap/C/text.c",
"file": "/home/vsc/github/yap/C/text.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/threads.c.o -c /home/vsc/github/yap/C/threads.c",
"file": "/home/vsc/github/yap/C/threads.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/tracer.c.o -c /home/vsc/github/yap/C/tracer.c",
"file": "/home/vsc/github/yap/C/tracer.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/unify.c.o -c /home/vsc/github/yap/C/unify.c",
"file": "/home/vsc/github/yap/C/unify.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/userpreds.c.o -c /home/vsc/github/yap/C/userpreds.c",
"file": "/home/vsc/github/yap/C/userpreds.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/utilpreds.c.o -c /home/vsc/github/yap/C/utilpreds.c",
"file": "/home/vsc/github/yap/C/utilpreds.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/yap-args.c.o -c /home/vsc/github/yap/C/yap-args.c",
"file": "/home/vsc/github/yap/C/yap-args.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/write.c.o -c /home/vsc/github/yap/C/write.c",
"file": "/home/vsc/github/yap/C/write.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/udi.c.o -c /home/vsc/github/yap/C/udi.c",
"file": "/home/vsc/github/yap/C/udi.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/GitSHA1.c.o -c /home/vsc/github/yap/build/GitSHA1.c",
"file": "/home/vsc/github/yap/build/GitSHA1.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/load_foreign.c.o -c /home/vsc/github/yap/C/load_foreign.c",
"file": "/home/vsc/github/yap/C/load_foreign.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/load_dl.c.o -c /home/vsc/github/yap/C/load_dl.c",
"file": "/home/vsc/github/yap/C/load_dl.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/load_dld.c.o -c /home/vsc/github/yap/C/load_dld.c",
"file": "/home/vsc/github/yap/C/load_dld.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/load_dyld.c.o -c /home/vsc/github/yap/C/load_dyld.c",
"file": "/home/vsc/github/yap/C/load_dyld.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/load_none.c.o -c /home/vsc/github/yap/C/load_none.c",
"file": "/home/vsc/github/yap/C/load_none.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/load_aout.c.o -c /home/vsc/github/yap/C/load_aout.c",
"file": "/home/vsc/github/yap/C/load_aout.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/load_aix.c.o -c /home/vsc/github/yap/C/load_aix.c",
"file": "/home/vsc/github/yap/C/load_aix.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/load_dll.c.o -c /home/vsc/github/yap/C/load_dll.c",
"file": "/home/vsc/github/yap/C/load_dll.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/load_shl.c.o -c /home/vsc/github/yap/C/load_shl.c",
"file": "/home/vsc/github/yap/C/load_shl.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/c_interface.c.o -c /home/vsc/github/yap/C/c_interface.c",
"file": "/home/vsc/github/yap/C/c_interface.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CMakeFiles/libYap.dir/C/clause_list.c.o -c /home/vsc/github/yap/C/clause_list.c",
"file": "/home/vsc/github/yap/C/clause_list.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DPy4YAP_EXPORTS -DRATIONAL_TREES=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -D_GNU_SOURCE=1 -I../utf8proc -I../OPTYap -I../H -I../os -I../include -I. -I/usr/lib64/python3.9/site-packages/numpy/core/include -I/usr/include/python3.9 -I../H/generated -I../JIT/HPP -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/python/CMakeFiles/Py4YAP.dir/python.c.o -c /home/vsc/github/yap/packages/python/python.c",
"file": "/home/vsc/github/yap/packages/python/python.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DPy4YAP_EXPORTS -DRATIONAL_TREES=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -D_GNU_SOURCE=1 -I../utf8proc -I../OPTYap -I../H -I../os -I../include -I. -I/usr/lib64/python3.9/site-packages/numpy/core/include -I/usr/include/python3.9 -I../H/generated -I../JIT/HPP -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/python/CMakeFiles/Py4YAP.dir/pl2py.c.o -c /home/vsc/github/yap/packages/python/pl2py.c",
"file": "/home/vsc/github/yap/packages/python/pl2py.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DPy4YAP_EXPORTS -DRATIONAL_TREES=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -D_GNU_SOURCE=1 -I../utf8proc -I../OPTYap -I../H -I../os -I../include -I. -I/usr/lib64/python3.9/site-packages/numpy/core/include -I/usr/include/python3.9 -I../H/generated -I../JIT/HPP -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/python/CMakeFiles/Py4YAP.dir/pybips.c.o -c /home/vsc/github/yap/packages/python/pybips.c",
"file": "/home/vsc/github/yap/packages/python/pybips.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DPy4YAP_EXPORTS -DRATIONAL_TREES=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -D_GNU_SOURCE=1 -I../utf8proc -I../OPTYap -I../H -I../os -I../include -I. -I/usr/lib64/python3.9/site-packages/numpy/core/include -I/usr/include/python3.9 -I../H/generated -I../JIT/HPP -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/python/CMakeFiles/Py4YAP.dir/py2pl.c.o -c /home/vsc/github/yap/packages/python/py2pl.c",
"file": "/home/vsc/github/yap/packages/python/py2pl.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DPy4YAP_EXPORTS -DRATIONAL_TREES=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -D_GNU_SOURCE=1 -I../utf8proc -I../OPTYap -I../H -I../os -I../include -I. -I/usr/lib64/python3.9/site-packages/numpy/core/include -I/usr/include/python3.9 -I../H/generated -I../JIT/HPP -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/python/CMakeFiles/Py4YAP.dir/pl2pl.c.o -c /home/vsc/github/yap/packages/python/pl2pl.c",
"file": "/home/vsc/github/yap/packages/python/pl2pl.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DPy4YAP_EXPORTS -DRATIONAL_TREES=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -D_GNU_SOURCE=1 -I../utf8proc -I../OPTYap -I../H -I../os -I../include -I. -I/usr/lib64/python3.9/site-packages/numpy/core/include -I/usr/include/python3.9 -I../H/generated -I../JIT/HPP -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/python/CMakeFiles/Py4YAP.dir/pypreds.c.o -c /home/vsc/github/yap/packages/python/pypreds.c",
"file": "/home/vsc/github/yap/packages/python/pypreds.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DPy4YAP_EXPORTS -DRATIONAL_TREES=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -D_GNU_SOURCE=1 -I../utf8proc -I../OPTYap -I../H -I../os -I../include -I. -I/usr/lib64/python3.9/site-packages/numpy/core/include -I/usr/include/python3.9 -I../H/generated -I../JIT/HPP -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/python/CMakeFiles/Py4YAP.dir/pyio.c.o -c /home/vsc/github/yap/packages/python/pyio.c",
"file": "/home/vsc/github/yap/packages/python/pyio.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -DYAPPython_EXPORTS -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../utf8proc -I../OPTYap -I../H -I../os -I../include -I. -I/usr/lib64/python3.9/site-packages/numpy/core/include -I/usr/include/python3.9 -I../H/generated -I../JIT/HPP -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/python/CMakeFiles/YAPPython.dir/pyload.c.o -c /home/vsc/github/yap/packages/python/pyload.c",
"file": "/home/vsc/github/yap/packages/python/pyload.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../OPTYap/OPTYap -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/or.memory.c.o -c /home/vsc/github/yap/OPTYap/or.memory.c",
"file": "/home/vsc/github/yap/OPTYap/or.memory.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../OPTYap/OPTYap -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/opt.init.c.o -c /home/vsc/github/yap/OPTYap/opt.init.c",
"file": "/home/vsc/github/yap/OPTYap/opt.init.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../OPTYap/OPTYap -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/opt.preds.c.o -c /home/vsc/github/yap/OPTYap/opt.preds.c",
"file": "/home/vsc/github/yap/OPTYap/opt.preds.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../OPTYap/OPTYap -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/or.copy_engine.c.o -c /home/vsc/github/yap/OPTYap/or.copy_engine.c",
"file": "/home/vsc/github/yap/OPTYap/or.copy_engine.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../OPTYap/OPTYap -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/or.cow_engine.c.o -c /home/vsc/github/yap/OPTYap/or.cow_engine.c",
"file": "/home/vsc/github/yap/OPTYap/or.cow_engine.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../OPTYap/OPTYap -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/or.sba_engine.c.o -c /home/vsc/github/yap/OPTYap/or.sba_engine.c",
"file": "/home/vsc/github/yap/OPTYap/or.sba_engine.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../OPTYap/OPTYap -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/or.thread_engine.c.o -c /home/vsc/github/yap/OPTYap/or.thread_engine.c",
"file": "/home/vsc/github/yap/OPTYap/or.thread_engine.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../OPTYap/OPTYap -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/or.scheduler.c.o -c /home/vsc/github/yap/OPTYap/or.scheduler.c",
"file": "/home/vsc/github/yap/OPTYap/or.scheduler.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../OPTYap/OPTYap -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/or.cut.c.o -c /home/vsc/github/yap/OPTYap/or.cut.c",
"file": "/home/vsc/github/yap/OPTYap/or.cut.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../OPTYap/OPTYap -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/tab.tries.c.o -c /home/vsc/github/yap/OPTYap/tab.tries.c",
"file": "/home/vsc/github/yap/OPTYap/tab.tries.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../OPTYap/OPTYap -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/tab.completion.c.o -c /home/vsc/github/yap/OPTYap/tab.completion.c",
"file": "/home/vsc/github/yap/OPTYap/tab.completion.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/absf.c.o -c /home/vsc/github/yap/os/absf.c",
"file": "/home/vsc/github/yap/os/absf.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/alias.c.o -c /home/vsc/github/yap/os/alias.c",
"file": "/home/vsc/github/yap/os/alias.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/assets.c.o -c /home/vsc/github/yap/os/assets.c",
"file": "/home/vsc/github/yap/os/assets.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/charsio.c.o -c /home/vsc/github/yap/os/charsio.c",
"file": "/home/vsc/github/yap/os/charsio.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/chartypes.c.o -c /home/vsc/github/yap/os/chartypes.c",
"file": "/home/vsc/github/yap/os/chartypes.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/console.c.o -c /home/vsc/github/yap/os/console.c",
"file": "/home/vsc/github/yap/os/console.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/files.c.o -c /home/vsc/github/yap/os/files.c",
"file": "/home/vsc/github/yap/os/files.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/fmem.c.o -c /home/vsc/github/yap/os/fmem.c",
"file": "/home/vsc/github/yap/os/fmem.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/format.c.o -c /home/vsc/github/yap/os/format.c",
"file": "/home/vsc/github/yap/os/format.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/iopreds.c.o -c /home/vsc/github/yap/os/iopreds.c",
"file": "/home/vsc/github/yap/os/iopreds.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/mem.c.o -c /home/vsc/github/yap/os/mem.c",
"file": "/home/vsc/github/yap/os/mem.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/pipes.c.o -c /home/vsc/github/yap/os/pipes.c",
"file": "/home/vsc/github/yap/os/pipes.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/readline.c.o -c /home/vsc/github/yap/os/readline.c",
"file": "/home/vsc/github/yap/os/readline.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/random.c.o -c /home/vsc/github/yap/os/random.c",
"file": "/home/vsc/github/yap/os/random.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/readterm.c.o -c /home/vsc/github/yap/os/readterm.c",
"file": "/home/vsc/github/yap/os/readterm.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/readutil.c.o -c /home/vsc/github/yap/os/readutil.c",
"file": "/home/vsc/github/yap/os/readutil.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/sig.c.o -c /home/vsc/github/yap/os/sig.c",
"file": "/home/vsc/github/yap/os/sig.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/sockets.c.o -c /home/vsc/github/yap/os/sockets.c",
"file": "/home/vsc/github/yap/os/sockets.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/streams.c.o -c /home/vsc/github/yap/os/streams.c",
"file": "/home/vsc/github/yap/os/streams.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/sysbits.c.o -c /home/vsc/github/yap/os/sysbits.c",
"file": "/home/vsc/github/yap/os/sysbits.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/time.c.o -c /home/vsc/github/yap/os/time.c",
"file": "/home/vsc/github/yap/os/time.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/writeterm.c.o -c /home/vsc/github/yap/os/writeterm.c",
"file": "/home/vsc/github/yap/os/writeterm.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/ypsocks.c.o -c /home/vsc/github/yap/os/ypsocks.c",
"file": "/home/vsc/github/yap/os/ypsocks.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/ypstdio.c.o -c /home/vsc/github/yap/os/ypstdio.c",
"file": "/home/vsc/github/yap/os/ypstdio.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../os/../H -I../os/../include -I../os/../OPTYap -I../os/. -I../os/cwalk -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o os/CMakeFiles/libYAPOs.dir/cwalk/cwalk.c.o -c /home/vsc/github/yap/os/cwalk/cwalk.c",
"file": "/home/vsc/github/yap/os/cwalk/cwalk.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../library/dialect/swi/fli/../../../H -I../library/dialect/swi/fli/../.../../include -I../library/dialect/swi/fli/../os -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/dialect/swi/fli/CMakeFiles/libswi.dir/swi.c.o -c /home/vsc/github/yap/library/dialect/swi/fli/swi.c",
"file": "/home/vsc/github/yap/library/dialect/swi/fli/swi.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../library/dialect/swi/fli/../../../H -I../library/dialect/swi/fli/../.../../include -I../library/dialect/swi/fli/../os -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/dialect/swi/fli/CMakeFiles/libswi.dir/blobs.c.o -c /home/vsc/github/yap/library/dialect/swi/fli/blobs.c",
"file": "/home/vsc/github/yap/library/dialect/swi/fli/blobs.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -DYAP___EXPORTS -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../CXX/. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o CXX/CMakeFiles/YAP++.dir/yapi.cpp.o -c /home/vsc/github/yap/CXX/yapi.cpp",
"file": "/home/vsc/github/yap/CXX/yapi.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dmatrix_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/matrix/CMakeFiles/matrix.dir/matrix.c.o -c /home/vsc/github/yap/library/matrix/matrix.c",
"file": "/home/vsc/github/yap/library/matrix/matrix.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dyap_random_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/random/CMakeFiles/yap_random.dir/yap_random.c.o -c /home/vsc/github/yap/library/random/yap_random.c",
"file": "/home/vsc/github/yap/library/random/yap_random.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dregexp_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../library/regex/BEFORE -Ilibrary/regex -I../library/regex -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/regex/CMakeFiles/regexp.dir/regexp.c.o -c /home/vsc/github/yap/library/regex/regexp.c",
"file": "/home/vsc/github/yap/library/regex/regexp.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dregexp_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../library/regex/BEFORE -Ilibrary/regex -I../library/regex -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/regex/CMakeFiles/regexp.dir/regcomp.c.o -c /home/vsc/github/yap/library/regex/regcomp.c",
"file": "/home/vsc/github/yap/library/regex/regcomp.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dregexp_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../library/regex/BEFORE -Ilibrary/regex -I../library/regex -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/regex/CMakeFiles/regexp.dir/regerror.c.o -c /home/vsc/github/yap/library/regex/regerror.c",
"file": "/home/vsc/github/yap/library/regex/regerror.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dregexp_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../library/regex/BEFORE -Ilibrary/regex -I../library/regex -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/regex/CMakeFiles/regexp.dir/regexec.c.o -c /home/vsc/github/yap/library/regex/regexec.c",
"file": "/home/vsc/github/yap/library/regex/regexec.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dregexp_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../library/regex/BEFORE -Ilibrary/regex -I../library/regex -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/regex/CMakeFiles/regexp.dir/regfree.c.o -c /home/vsc/github/yap/library/regex/regfree.c",
"file": "/home/vsc/github/yap/library/regex/regfree.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dyap_rl_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/rltree/CMakeFiles/yap_rl.dir/yap_rl.c.o -c /home/vsc/github/yap/library/rltree/yap_rl.c",
"file": "/home/vsc/github/yap/library/rltree/yap_rl.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dyap_rl_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/rltree/CMakeFiles/yap_rl.dir/range_list.c.o -c /home/vsc/github/yap/library/rltree/range_list.c",
"file": "/home/vsc/github/yap/library/rltree/range_list.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dsys_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/system/CMakeFiles/sys.dir/sys.c.o -c /home/vsc/github/yap/library/system/sys.c",
"file": "/home/vsc/github/yap/library/system/sys.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dsys_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/system/CMakeFiles/sys.dir/crypto/md5.c.o -c /home/vsc/github/yap/library/system/crypto/md5.c",
"file": "/home/vsc/github/yap/library/system/crypto/md5.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Ditries_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/tries/CMakeFiles/itries.dir/core_tries.c.o -c /home/vsc/github/yap/library/tries/core_tries.c",
"file": "/home/vsc/github/yap/library/tries/core_tries.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Ditries_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/tries/CMakeFiles/itries.dir/base_itries.c.o -c /home/vsc/github/yap/library/tries/base_itries.c",
"file": "/home/vsc/github/yap/library/tries/base_itries.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Ditries_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/tries/CMakeFiles/itries.dir/itries.c.o -c /home/vsc/github/yap/library/tries/itries.c",
"file": "/home/vsc/github/yap/library/tries/itries.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dtries_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/tries/CMakeFiles/tries.dir/core_tries.c.o -c /home/vsc/github/yap/library/tries/core_tries.c",
"file": "/home/vsc/github/yap/library/tries/core_tries.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dtries_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/tries/CMakeFiles/tries.dir/base_tries.c.o -c /home/vsc/github/yap/library/tries/base_tries.c",
"file": "/home/vsc/github/yap/library/tries/base_tries.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dtries_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o library/tries/CMakeFiles/tries.dir/tries.c.o -c /home/vsc/github/yap/library/tries/tries.c",
"file": "/home/vsc/github/yap/library/tries/tries.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -DUTF8PROC_EXPORTS -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o utf8proc/CMakeFiles/utf8proc.dir/utf8proc.c.o -c /home/vsc/github/yap/utf8proc/utf8proc.c",
"file": "/home/vsc/github/yap/utf8proc/utf8proc.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/myddas -I../packages/myddas/sqlite3 -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/myddas/CMakeFiles/myddas.dir/myddas_initialization.c.o -c /home/vsc/github/yap/packages/myddas/myddas_initialization.c",
"file": "/home/vsc/github/yap/packages/myddas/myddas_initialization.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/myddas -I../packages/myddas/sqlite3 -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/myddas/CMakeFiles/myddas.dir/myddas_shared.c.o -c /home/vsc/github/yap/packages/myddas/myddas_shared.c",
"file": "/home/vsc/github/yap/packages/myddas/myddas_shared.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/myddas -I../packages/myddas/sqlite3 -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/myddas/CMakeFiles/myddas.dir/myddas_statistics.c.o -c /home/vsc/github/yap/packages/myddas/myddas_statistics.c",
"file": "/home/vsc/github/yap/packages/myddas/myddas_statistics.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/myddas -I../packages/myddas/sqlite3 -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/myddas/CMakeFiles/myddas.dir/myddas_top_level.c.o -c /home/vsc/github/yap/packages/myddas/myddas_top_level.c",
"file": "/home/vsc/github/yap/packages/myddas/myddas_top_level.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/myddas -I../packages/myddas/sqlite3 -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/myddas/CMakeFiles/myddas.dir/myddas_util.c.o -c /home/vsc/github/yap/packages/myddas/myddas_util.c",
"file": "/home/vsc/github/yap/packages/myddas/myddas_util.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -DYAPsqlite3_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/myddas -I../packages/myddas/sqlite3 -I../packages/myddas/sqlite3/.. -I../packages/myddas/sqlite3/src -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/myddas/sqlite3/CMakeFiles/YAPsqlite3.dir/myddas_sqlite3.c.o -c /home/vsc/github/yap/packages/myddas/sqlite3/myddas_sqlite3.c",
"file": "/home/vsc/github/yap/packages/myddas/sqlite3/myddas_sqlite3.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DYAP_KERNEL=1 -DYAPsqlite3_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/myddas -I../packages/myddas/sqlite3 -I../packages/myddas/sqlite3/.. -I../packages/myddas/sqlite3/src -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/myddas/sqlite3/CMakeFiles/YAPsqlite3.dir/src/sqlite3.c.o -c /home/vsc/github/yap/packages/myddas/sqlite3/src/sqlite3.c",
"file": "/home/vsc/github/yap/packages/myddas/sqlite3/src/sqlite3.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dxml4yap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/raptor/../../H -Ipackages/raptor -I../CXX -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/raptor/CMakeFiles/xml4yap.dir/xml2pl.cpp.o -c /home/vsc/github/yap/packages/raptor/xml2pl.cpp",
"file": "/home/vsc/github/yap/packages/raptor/xml2pl.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dxml4yap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/raptor/../../H -Ipackages/raptor -I../CXX -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/raptor/CMakeFiles/xml4yap.dir/pugixml.cpp.o -c /home/vsc/github/yap/packages/raptor/pugixml.cpp",
"file": "/home/vsc/github/yap/packages/raptor/pugixml.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/HorusCli.dir/HorusCli.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/HorusCli.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/HorusCli.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/BayesBall.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/BayesBall.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/BayesBall.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/BayesBallGraph.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/BayesBallGraph.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/BayesBallGraph.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/BeliefProp.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/BeliefProp.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/BeliefProp.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/ConstraintTree.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/ConstraintTree.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/ConstraintTree.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/CountingBp.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/CountingBp.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/CountingBp.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/ElimGraph.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/ElimGraph.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/ElimGraph.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/Factor.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/Factor.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/Factor.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/FactorGraph.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/FactorGraph.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/FactorGraph.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/GenericFactor.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/GenericFactor.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/GenericFactor.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/GroundSolver.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/GroundSolver.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/GroundSolver.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/Histogram.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/Histogram.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/Histogram.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/HorusYap.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/HorusYap.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/HorusYap.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/Indexer.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/Indexer.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/Indexer.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/LiftedBp.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/LiftedBp.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/LiftedBp.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/LiftedKc.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/LiftedKc.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/LiftedKc.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/LiftedOperations.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/LiftedOperations.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/LiftedOperations.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/LiftedUtils.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/LiftedUtils.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/LiftedUtils.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/LiftedVe.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/LiftedVe.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/LiftedVe.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/LiftedWCNF.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/LiftedWCNF.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/LiftedWCNF.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/Parfactor.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/Parfactor.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/Parfactor.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/ParfactorList.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/ParfactorList.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/ParfactorList.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/ProbFormula.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/ProbFormula.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/ProbFormula.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/Util.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/Util.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/Util.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/Var.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/Var.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/Var.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/VarElim.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/VarElim.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/VarElim.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/CLPBN/horus -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/WeightedBp.cpp.o -c /home/vsc/github/yap/packages/CLPBN/horus/WeightedBp.cpp",
"file": "/home/vsc/github/yap/packages/CLPBN/horus/WeightedBp.cpp"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dcplint_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/cplint -Ipackages/cplint/../bdd -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/cplint/CMakeFiles/cplint.dir/cplint_yap.c.o -c /home/vsc/github/yap/packages/cplint/cplint_yap.c",
"file": "/home/vsc/github/yap/packages/cplint/cplint_yap.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dcplint_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/cplint -Ipackages/cplint/../bdd -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/cplint/CMakeFiles/cplint.dir/cplint_Prob.c.o -c /home/vsc/github/yap/packages/cplint/cplint_Prob.c",
"file": "/home/vsc/github/yap/packages/cplint/cplint_Prob.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dbddem_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/cplint -Ipackages/cplint/../bdd -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/cplint/CMakeFiles/bddem.dir/slipcase/bddem.c.o -c /home/vsc/github/yap/packages/cplint/slipcase/bddem.c",
"file": "/home/vsc/github/yap/packages/cplint/slipcase/bddem.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/cplint -Ipackages/cplint/../bdd -Ipackages/cplint/approx/simplecuddLPADs -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -o packages/cplint/approx/simplecuddLPADs/CMakeFiles/LPADbdd.dir/general.c.o -c /home/vsc/github/yap/packages/cplint/approx/simplecuddLPADs/general.c",
"file": "/home/vsc/github/yap/packages/cplint/approx/simplecuddLPADs/general.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/cplint -Ipackages/cplint/../bdd -Ipackages/cplint/approx/simplecuddLPADs -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -o packages/cplint/approx/simplecuddLPADs/CMakeFiles/LPADbdd.dir/ProblogBDD.c.o -c /home/vsc/github/yap/packages/cplint/approx/simplecuddLPADs/ProblogBDD.c",
"file": "/home/vsc/github/yap/packages/cplint/approx/simplecuddLPADs/ProblogBDD.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/cplint -Ipackages/cplint/../bdd -Ipackages/cplint/approx/simplecuddLPADs -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -o packages/cplint/approx/simplecuddLPADs/CMakeFiles/LPADbdd.dir/simplecudd.c.o -c /home/vsc/github/yap/packages/cplint/approx/simplecuddLPADs/simplecudd.c",
"file": "/home/vsc/github/yap/packages/cplint/approx/simplecuddLPADs/simplecudd.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/c++ -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dgecode_yap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/gecode -I../packages/gecode/6.2.0 -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -std=gnu++11 -o packages/gecode/CMakeFiles/gecode_yap.dir/gecode6_yap.cc.o -c /home/vsc/github/yap/packages/gecode/gecode6_yap.cc",
"file": "/home/vsc/github/yap/packages/gecode/gecode6_yap.cc"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DLBFGS_EXPORTS -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/yap-lbfgs/liblbfgs-1.10/include -Ipackages/yap-lbfgs -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/yap-lbfgs/CMakeFiles/LBFGS.dir/liblbfgs-1.10/lib/lbfgs.c.o -c /home/vsc/github/yap/packages/yap-lbfgs/liblbfgs-1.10/lib/lbfgs.c",
"file": "/home/vsc/github/yap/packages/yap-lbfgs/liblbfgs-1.10/lib/lbfgs.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DLBFGS_EXPORTS -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I../packages/yap-lbfgs/liblbfgs-1.10/include -Ipackages/yap-lbfgs -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/yap-lbfgs/CMakeFiles/LBFGS.dir/yap_lbfgs.c.o -c /home/vsc/github/yap/packages/yap-lbfgs/yap_lbfgs.c",
"file": "/home/vsc/github/yap/packages/yap-lbfgs/yap_lbfgs.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DJNIVERSION=JNI_VERSION_1_8 -DJPLPJAR=share/Yap/jpl.jar -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -DjplYap_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -I/usr/lib/jvm/java/include -I/usr/lib/jvm/java/include/linux -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/jpl/CMakeFiles/jplYap.dir/src/c/jpl.c.o -c /home/vsc/github/yap/packages/jpl/src/c/jpl.c",
"file": "/home/vsc/github/yap/packages/jpl/src/c/jpl.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -Dcudd_EXPORTS -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/bdd -g -fPIC -Wall -g3 -fdebug-cpp -fexceptions -o packages/bdd/CMakeFiles/cudd.dir/cudd.c.o -c /home/vsc/github/yap/packages/bdd/cudd.c",
"file": "/home/vsc/github/yap/packages/bdd/cudd.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/bdd -Ipackages/bdd/simplecudd -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -o packages/bdd/simplecudd/CMakeFiles/Problogbdd.dir/general.c.o -c /home/vsc/github/yap/packages/bdd/simplecudd/general.c",
"file": "/home/vsc/github/yap/packages/bdd/simplecudd/general.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/bdd -Ipackages/bdd/simplecudd -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -o packages/bdd/simplecudd/CMakeFiles/Problogbdd.dir/problogbdd.c.o -c /home/vsc/github/yap/packages/bdd/simplecudd/problogbdd.c",
"file": "/home/vsc/github/yap/packages/bdd/simplecudd/problogbdd.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/bdd -Ipackages/bdd/simplecudd -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -o packages/bdd/simplecudd/CMakeFiles/Problogbdd.dir/problogmath.c.o -c /home/vsc/github/yap/packages/bdd/simplecudd/problogmath.c",
"file": "/home/vsc/github/yap/packages/bdd/simplecudd/problogmath.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/bdd -Ipackages/bdd/simplecudd -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -o packages/bdd/simplecudd/CMakeFiles/Problogbdd.dir/simplecudd.c.o -c /home/vsc/github/yap/packages/bdd/simplecudd/simplecudd.c",
"file": "/home/vsc/github/yap/packages/bdd/simplecudd/simplecudd.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/bdd -Ipackages/bdd/simplecudd_lfi -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -o packages/bdd/simplecudd_lfi/CMakeFiles/Problogbdd-Lfi.dir/adterror.c.o -c /home/vsc/github/yap/packages/bdd/simplecudd_lfi/adterror.c",
"file": "/home/vsc/github/yap/packages/bdd/simplecudd_lfi/adterror.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/bdd -Ipackages/bdd/simplecudd_lfi -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -o packages/bdd/simplecudd_lfi/CMakeFiles/Problogbdd-Lfi.dir/allocate.c.o -c /home/vsc/github/yap/packages/bdd/simplecudd_lfi/allocate.c",
"file": "/home/vsc/github/yap/packages/bdd/simplecudd_lfi/allocate.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/bdd -Ipackages/bdd/simplecudd_lfi -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -o packages/bdd/simplecudd_lfi/CMakeFiles/Problogbdd-Lfi.dir/general.c.o -c /home/vsc/github/yap/packages/bdd/simplecudd_lfi/general.c",
"file": "/home/vsc/github/yap/packages/bdd/simplecudd_lfi/general.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/bdd -Ipackages/bdd/simplecudd_lfi -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -o packages/bdd/simplecudd_lfi/CMakeFiles/Problogbdd-Lfi.dir/iqueue.c.o -c /home/vsc/github/yap/packages/bdd/simplecudd_lfi/iqueue.c",
"file": "/home/vsc/github/yap/packages/bdd/simplecudd_lfi/iqueue.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/bdd -Ipackages/bdd/simplecudd_lfi -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -o packages/bdd/simplecudd_lfi/CMakeFiles/Problogbdd-Lfi.dir/pqueue.c.o -c /home/vsc/github/yap/packages/bdd/simplecudd_lfi/pqueue.c",
"file": "/home/vsc/github/yap/packages/bdd/simplecudd_lfi/pqueue.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/bdd -Ipackages/bdd/simplecudd_lfi -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -o packages/bdd/simplecudd_lfi/CMakeFiles/Problogbdd-Lfi.dir/problogbdd_lfi.c.o -c /home/vsc/github/yap/packages/bdd/simplecudd_lfi/problogbdd_lfi.c",
"file": "/home/vsc/github/yap/packages/bdd/simplecudd_lfi/problogbdd_lfi.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/bdd -Ipackages/bdd/simplecudd_lfi -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -o packages/bdd/simplecudd_lfi/CMakeFiles/Problogbdd-Lfi.dir/problogmath.c.o -c /home/vsc/github/yap/packages/bdd/simplecudd_lfi/problogmath.c",
"file": "/home/vsc/github/yap/packages/bdd/simplecudd_lfi/problogmath.c"
},
{
"directory": "/home/vsc/github/yap/build",
"command": "/usr/lib64/ccache/cc -DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DEMBEDDED_MYDDAS=1 -DHAVE_CONFIG_H=1 -DMYDDAS=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUTF8PROC=1 -D_GNU_SOURCE=1 -D_YAP_NOT_INSTALLED_=1 -I../H -I../H/generated -I../include -I../os -I../OPTYap -I../utf8proc -I../JIT/HPP -I. -Ipackages/bdd -Ipackages/bdd/simplecudd_lfi -g -fPIE -Wall -g3 -fdebug-cpp -fexceptions -o packages/bdd/simplecudd_lfi/CMakeFiles/Problogbdd-Lfi.dir/simplecudd.c.o -c /home/vsc/github/yap/packages/bdd/simplecudd_lfi/simplecudd.c",
"file": "/home/vsc/github/yap/packages/bdd/simplecudd_lfi/simplecudd.c"