-
Notifications
You must be signed in to change notification settings - Fork 2
/
veloc_error.json
7502 lines (7502 loc) · 584 KB
/
veloc_error.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
[
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 148,
"repeat_count": 0,
"start": 142,
"end": 155,
"text": "==> [2022-01-17-10:34:37.678160] Error: ProcessError: ./bootstrap.sh: No such file or directory: './bootstrap.sh'",
"pre_context": "==> [2022-01-17-10:34:34.646678] found raw link dirs: /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../lib/gcc/x86_64-redhat-linux/9, /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../lib/gcc, /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../lib/gcc/x86_64-redhat-linux/9/../../../../lib64, /lib/../lib64, /usr/lib/../lib64, /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../lib/gcc/x86_64-redhat-linux/9/../../..\n==> [2022-01-17-10:34:34.646819] found link dirs: /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/lib/gcc/x86_64-redhat-linux/9, /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/lib/gcc, /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/lib64, /lib64, /usr/lib64, /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/lib\n==> [2022-01-17-10:34:34.782811] Staging archive: /var/tmp/koparasy/spack-stage/spack-stage-boost-1.34.1-4ykrz7qw4oe7ug6n3gldyfnwk7vpu2f5/boost_1_34_1.tar.bz2\n==> [2022-01-17-10:34:34.785033] '/usr/bin/tar' '-oxf' '/var/tmp/koparasy/spack-stage/spack-stage-boost-1.34.1-4ykrz7qw4oe7ug6n3gldyfnwk7vpu2f5/boost_1_34_1.tar.bz2'\n==> [2022-01-17-10:34:37.631222] Created stage in /var/tmp/koparasy/spack-stage/spack-stage-boost-1.34.1-4ykrz7qw4oe7ug6n3gldyfnwk7vpu2f5\n==> [2022-01-17-10:34:37.632408] boost: Building boost-1.34.1-2iypimbexbf4onrqbge5vtcnyqg2pmqi [Package]",
"post_context": " Command: './bootstrap.sh' '--prefix=/p/vast1/koparasy/BUILD/spack_cluster_installer/quartz/veloc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/boost-1.34.1-2iypimbexbf4onrqbge5vtcnyqg2pmqi' '--with-toolset=gcc' '--with-libraries=iostreams,serialization,test,regex,filesystem,system,date_time,wave,graph,program_options,timer,thread,signals,math' '--without-icu'\nSee build log for details:\n /var/tmp/koparasy/spack-stage/spack-stage-boost-1.34.1-4ykrz7qw4oe7ug6n3gldyfnwk7vpu2f5/spack-build-out.txt\n\nTraceback (most recent call last):\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/util/executable.py\", line 198, in __call__",
"hash": "2iypimbexbf4onrqbge5vtcnyqg2pmqi"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 178,
"repeat_count": 0,
"start": 172,
"end": 185,
"text": "spack.util.executable.ProcessError: ./bootstrap.sh: No such file or directory: './bootstrap.sh'",
"pre_context": " phase(pkg.spec, pkg.prefix)\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/package.py\", line 134, in phase_wrapper\n phase(spec, prefix)\n File \"/p/vast1/koparasy/BUILD/head/spack/var/spack/repos/builtin/packages/boost/package.py\", line 572, in install\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/util/executable.py\", line 232, in __call__\n '%s: %s' % (self.exe[0], e.strerror), 'Command: ' + cmd_line_string)",
"post_context": " Command: './bootstrap.sh' '--prefix=/p/vast1/koparasy/BUILD/spack_cluster_installer/quartz/veloc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/boost-1.34.1-2iypimbexbf4onrqbge5vtcnyqg2pmqi' '--with-toolset=gcc' '--with-libraries=iostreams,serialization,test,regex,filesystem,system,date_time,wave,graph,program_options,timer,thread,signals,math' '--without-icu'\n==> [2022-01-17-10:34:37.694298] Flagging boost-1.34.1-2iypimbexbf4onrqbge5vtcnyqg2pmqi as failed: ProcessError: ./bootstrap.sh: No such file or directory: './bootstrap.sh'\n Command: './bootstrap.sh' '--prefix=/p/vast1/koparasy/BUILD/spack_cluster_installer/quartz/veloc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/boost-1.34.1-2iypimbexbf4onrqbge5vtcnyqg2pmqi' '--with-toolset=gcc' '--with-libraries=iostreams,serialization,test,regex,filesystem,system,date_time,wave,graph,program_options,timer,thread,signals,math' '--without-icu'\n==> [2022-01-17-10:34:38.705737] Skip view update, this environment does not maintain a view\n==> [2022-01-17-10:34:38.707833] ChildError: ProcessError: ./bootstrap.sh: No such file or directory: './bootstrap.sh'\n Command: './bootstrap.sh' '--prefix=/p/vast1/koparasy/BUILD/spack_cluster_installer/quartz/veloc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/boost-1.34.1-2iypimbexbf4onrqbge5vtcnyqg2pmqi' '--with-toolset=gcc' '--with-libraries=iostreams,serialization,test,regex,filesystem,system,date_time,wave,graph,program_options,timer,thread,signals,math' '--without-icu'",
"hash": "2iypimbexbf4onrqbge5vtcnyqg2pmqi"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 180,
"repeat_count": 0,
"start": 174,
"end": 186,
"text": "==> [2022-01-17-10:34:37.694298] Flagging boost-1.34.1-2iypimbexbf4onrqbge5vtcnyqg2pmqi as failed: ProcessError: ./bootstrap.sh: No such file or directory: './bootstrap.sh'",
"pre_context": " phase(spec, prefix)\n File \"/p/vast1/koparasy/BUILD/head/spack/var/spack/repos/builtin/packages/boost/package.py\", line 572, in install\n File \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/spack/util/executable.py\", line 232, in __call__\n '%s: %s' % (self.exe[0], e.strerror), 'Command: ' + cmd_line_string)\nspack.util.executable.ProcessError: ./bootstrap.sh: No such file or directory: './bootstrap.sh'\n Command: './bootstrap.sh' '--prefix=/p/vast1/koparasy/BUILD/spack_cluster_installer/quartz/veloc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/boost-1.34.1-2iypimbexbf4onrqbge5vtcnyqg2pmqi' '--with-toolset=gcc' '--with-libraries=iostreams,serialization,test,regex,filesystem,system,date_time,wave,graph,program_options,timer,thread,signals,math' '--without-icu'",
"post_context": " Command: './bootstrap.sh' '--prefix=/p/vast1/koparasy/BUILD/spack_cluster_installer/quartz/veloc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/boost-1.34.1-2iypimbexbf4onrqbge5vtcnyqg2pmqi' '--with-toolset=gcc' '--with-libraries=iostreams,serialization,test,regex,filesystem,system,date_time,wave,graph,program_options,timer,thread,signals,math' '--without-icu'\n==> [2022-01-17-10:34:38.705737] Skip view update, this environment does not maintain a view\n==> [2022-01-17-10:34:38.707833] ChildError: ProcessError: ./bootstrap.sh: No such file or directory: './bootstrap.sh'\n Command: './bootstrap.sh' '--prefix=/p/vast1/koparasy/BUILD/spack_cluster_installer/quartz/veloc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/boost-1.34.1-2iypimbexbf4onrqbge5vtcnyqg2pmqi' '--with-toolset=gcc' '--with-libraries=iostreams,serialization,test,regex,filesystem,system,date_time,wave,graph,program_options,timer,thread,signals,math' '--without-icu'\n",
"hash": "2iypimbexbf4onrqbge5vtcnyqg2pmqi"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 183,
"repeat_count": 0,
"start": 177,
"end": 186,
"text": "==> [2022-01-17-10:34:38.707833] ChildError: ProcessError: ./bootstrap.sh: No such file or directory: './bootstrap.sh'",
"pre_context": " '%s: %s' % (self.exe[0], e.strerror), 'Command: ' + cmd_line_string)\nspack.util.executable.ProcessError: ./bootstrap.sh: No such file or directory: './bootstrap.sh'\n Command: './bootstrap.sh' '--prefix=/p/vast1/koparasy/BUILD/spack_cluster_installer/quartz/veloc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/boost-1.34.1-2iypimbexbf4onrqbge5vtcnyqg2pmqi' '--with-toolset=gcc' '--with-libraries=iostreams,serialization,test,regex,filesystem,system,date_time,wave,graph,program_options,timer,thread,signals,math' '--without-icu'\n==> [2022-01-17-10:34:37.694298] Flagging boost-1.34.1-2iypimbexbf4onrqbge5vtcnyqg2pmqi as failed: ProcessError: ./bootstrap.sh: No such file or directory: './bootstrap.sh'\n Command: './bootstrap.sh' '--prefix=/p/vast1/koparasy/BUILD/spack_cluster_installer/quartz/veloc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/boost-1.34.1-2iypimbexbf4onrqbge5vtcnyqg2pmqi' '--with-toolset=gcc' '--with-libraries=iostreams,serialization,test,regex,filesystem,system,date_time,wave,graph,program_options,timer,thread,signals,math' '--without-icu'\n==> [2022-01-17-10:34:38.705737] Skip view update, this environment does not maintain a view",
"post_context": " Command: './bootstrap.sh' '--prefix=/p/vast1/koparasy/BUILD/spack_cluster_installer/quartz/veloc/spack_env_dir/linux-rhel7-broadwell/gcc-9.3.1/boost-1.34.1-2iypimbexbf4onrqbge5vtcnyqg2pmqi' '--with-toolset=gcc' '--with-libraries=iostreams,serialization,test,regex,filesystem,system,date_time,wave,graph,program_options,timer,thread,signals,math' '--without-icu'\n",
"hash": "2iypimbexbf4onrqbge5vtcnyqg2pmqi"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 163,
"repeat_count": 0,
"start": 157,
"end": 170,
"text": ">> 12720 ./boost/config/requires_threads.hpp:29:4: error: #error \"Threadin",
"pre_context": " 0-arcelvm6fsmfph6i72ppntpjxkiospvj/lib/libboost_iostreams.a\n 12716 gcc.compile.c++ bin.v2/libs/thread/build/gcc-9/release/link-stati\n c/threading-multi/pthread/once.o\n 12717 In file included from ./boost/thread/detail/platform.hpp:17,\n 12718 from ./boost/thread/once.hpp:12,\n 12719 from libs/thread/src/pthread/once.cpp:7:",
"post_context": " g support unavaliable: it has been explicitly disabled with BOOST\n _DISABLE_THREADS\"\n 12721 29 | # error \"Threading support unavaliable: it has been expl\n icitly disabled with BOOST_DISABLE_THREADS\"\n 12722 | ^~~~~\n 12723",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 191,
"repeat_count": 0,
"start": 185,
"end": 198,
"text": ">> 12735 ./boost/config/requires_threads.hpp:29:4: error: #error \"Threadin",
"pre_context": " hreading-multi/encoding\n 12731 gcc.compile.c++ bin.v2/libs/thread/build/gcc-9/release/link-stati\n c/threading-multi/pthread/thread.o\n 12732 In file included from ./boost/thread/detail/platform.hpp:17,\n 12733 from ./boost/thread/detail/config.hpp:20,\n 12734 from libs/thread/src/pthread/thread.cpp:8:",
"post_context": " g support unavaliable: it has been explicitly disabled with BOOST\n _DISABLE_THREADS\"\n 12736 29 | # error \"Threading support unavaliable: it has been expl\n icitly disabled with BOOST_DISABLE_THREADS\"\n 12737 | ^~~~~\n 12738 In file included from /usr/include/pthread.h:24,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 212,
"repeat_count": 0,
"start": 206,
"end": 219,
"text": ">> 12748 ./boost/thread/xtime.hpp:23:5: error: expected identifier before",
"pre_context": " 12743 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/string:55,\n 12744 from ./boost/thread/exceptions.hpp:19,\n 12745 from ./boost/thread/pthread/thread_data.hpp:9,\n 12746 from ./boost/thread/thread.hpp:17,\n 12747 from libs/thread/src/pthread/thread.cpp:10:",
"post_context": " numeric constant\n 12749 23 | TIME_UTC=1\n 12750 | ^~~~~~~~\n >> 12751 ./boost/thread/xtime.hpp:23:5: error: expected '}' before numeric\n constant\n 12752 In file included from ./boost/thread/pthread/mutex.hpp:14,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 216,
"repeat_count": 0,
"start": 210,
"end": 223,
"text": ">> 12751 ./boost/thread/xtime.hpp:23:5: error: expected '}' before numeric",
"pre_context": " 12746 from ./boost/thread/thread.hpp:17,\n 12747 from libs/thread/src/pthread/thread.cpp:10:\n >> 12748 ./boost/thread/xtime.hpp:23:5: error: expected identifier before\n numeric constant\n 12749 23 | TIME_UTC=1\n 12750 | ^~~~~~~~",
"post_context": " constant\n 12752 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 12753 from ./boost/thread/mutex.hpp:16,\n 12754 from ./boost/thread/pthread/thread_data.hpp:12,\n 12755 from ./boost/thread/thread.hpp:17,\n 12756 from libs/thread/src/pthread/thread.cpp:10:",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 235,
"repeat_count": 0,
"start": 229,
"end": 242,
"text": ">> 12770 ./boost/thread/xtime.hpp:23:5: error: expected unqualified-id bef",
"pre_context": " 12765 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/string:55,\n 12766 from ./boost/thread/exceptions.hpp:19,\n 12767 from ./boost/thread/pthread/thread_data.hpp:9,\n 12768 from ./boost/thread/thread.hpp:17,\n 12769 from libs/thread/src/pthread/thread.cpp:10:",
"post_context": " ore numeric constant\n 12771 23 | TIME_UTC=1\n 12772 | ^~~~~~~~\n 12773 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 12774 from ./boost/thread/mutex.hpp:16,\n 12775 from ./boost/thread/pthread/thread_data.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 244,
"repeat_count": 0,
"start": 238,
"end": 251,
"text": ">> 12778 ./boost/thread/xtime.hpp:46:14: error: expected type-specifier be",
"pre_context": " 12772 | ^~~~~~~~\n 12773 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 12774 from ./boost/thread/mutex.hpp:16,\n 12775 from ./boost/thread/pthread/thread_data.hpp:12,\n 12776 from ./boost/thread/thread.hpp:17,\n 12777 from libs/thread/src/pthread/thread.cpp:10:",
"post_context": " fore 'system_time'\n 12779 46 | operator system_time() const\n 12780 | ^~~~~~~~~~~\n 12781 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 12782 from ./boost/thread/mutex.hpp:16,\n 12783 from ./boost/thread/pthread/thread_data.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 255,
"repeat_count": 0,
"start": 249,
"end": 262,
"text": ">> 12787 ./boost/thread/xtime.hpp:73:24: error: 'get_system_time' was not",
"pre_context": " 12782 from ./boost/thread/mutex.hpp:16,\n 12783 from ./boost/thread/pthread/thread_data.hpp:12,\n 12784 from ./boost/thread/thread.hpp:17,\n 12785 from libs/thread/src/pthread/thread.cpp:10:\n 12786 ./boost/thread/xtime.hpp: In function 'int xtime_get(xtime*, int)\n ':",
"post_context": " declared in this scope; did you mean 'boost::get_system_time'?\n 12788 73 | *xtp=get_xtime(get_system_time());\n 12789 | ^~~~~~~~~~~~~~~\n 12790 | boost::get_system_time\n 12791 In file included from ./boost/thread/locks.hpp:12,\n 12792 from ./boost/thread/pthread/mutex.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 272,
"repeat_count": 0,
"start": 266,
"end": 279,
"text": ">> 12806 ./boost/thread/xtime.hpp:88:1: error: expected declaration before",
"pre_context": " 12800 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 12801 from ./boost/thread/mutex.hpp:16,\n 12802 from ./boost/thread/pthread/thread_data.hpp:12,\n 12803 from ./boost/thread/thread.hpp:17,\n 12804 from libs/thread/src/pthread/thread.cpp:10:\n 12805 ./boost/thread/xtime.hpp: At global scope:",
"post_context": " '}' token\n 12807 88 | } // namespace boost\n 12808 | ^\n 12809 In file included from ./boost/thread/mutex.hpp:16,\n 12810 from ./boost/thread/pthread/thread_data.hpp:12,\n 12811 from ./boost/thread/thread.hpp:17,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 282,
"repeat_count": 0,
"start": 276,
"end": 289,
"text": ">> 12814 ./boost/thread/pthread/mutex.hpp:131:56: error: no matching funct",
"pre_context": " 12809 In file included from ./boost/thread/mutex.hpp:16,\n 12810 from ./boost/thread/pthread/thread_data.hpp:12,\n 12811 from ./boost/thread/thread.hpp:17,\n 12812 from libs/thread/src/pthread/thread.cpp:10:\n 12813 ./boost/thread/pthread/mutex.hpp: In member function 'bool boost:\n :timed_mutex::timed_lock(const boost::xtime&)':",
"post_context": " ion for call to 'boost::posix_time::ptime::ptime(const boost::xti\n me&)'\n 12815 131 | return timed_lock(system_time(absolute_time))\n ;\n 12816 | ^\n 12817 In file included from ./boost/date_time/posix_time/posix_time_typ",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 306,
"repeat_count": 0,
"start": 300,
"end": 313,
"text": ">> 12859 ./boost/thread/pthread/condition_variable_fwd.hpp:62:55: error: n",
"pre_context": " 12855 In file included from ./boost/thread/pthread/thread_data.hpp:16,\n 12856 from ./boost/thread/thread.hpp:17,\n 12857 from libs/thread/src/pthread/thread.cpp:10:\n 12858 ./boost/thread/pthread/condition_variable_fwd.hpp: In member func\n tion 'bool boost::condition_variable::timed_wait(boost::unique_lo\n ck<boost::mutex>&, const boost::xtime&)':",
"post_context": " o matching function for call to 'boost::posix_time::ptime::ptime(\n const boost::xtime&)'\n 12860 62 | return timed_wait(m,system_time(wait_until));\n 12861 | ^\n 12862 In file included from ./boost/date_time/posix_time/posix_time_typ\n es.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 329,
"repeat_count": 0,
"start": 323,
"end": 336,
"text": ">> 12903 ./boost/thread/detail/thread.hpp:385:39: error: no matching funct",
"pre_context": " version for argument 1 from 'const boost::xtime' to 'const boost:\n :posix_time::ptime&'\n 12900 In file included from ./boost/thread/thread.hpp:22,\n 12901 from libs/thread/src/pthread/thread.cpp:10:\n 12902 ./boost/thread/detail/thread.hpp: In function 'void boost::this_t\n hread::sleep(const boost::xtime&)':",
"post_context": " ion for call to 'boost::posix_time::ptime::ptime(const boost::xti\n me&)'\n 12904 385 | sleep(system_time(abs_time));\n 12905 | ^\n 12906 In file included from ./boost/date_time/posix_time/posix_time_typ\n es.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 353,
"repeat_count": 0,
"start": 347,
"end": 360,
"text": ">> 12946 libs/thread/src/pthread/timeconv.inl:23:18: error: 'xtime_get' is",
"pre_context": " 12943 ./boost/date_time/posix_time/ptime.hpp:31:9: note: no known con\n version for argument 1 from 'const boost::xtime' to 'const boost:\n :posix_time::ptime&'\n 12944 In file included from libs/thread/src/pthread/thread.cpp:26:\n 12945 libs/thread/src/pthread/timeconv.inl: In function 'void {anonymou\n s}::to_time(int, boost::xtime&)':",
"post_context": " not a member of 'boost'; did you mean 'xtime_get'?\n 12947 23 | res = boost::xtime_get(&xt, boost::TIME_UTC);\n 12948 | ^~~~~~~~~\n 12949 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 12950 from ./boost/thread/mutex.hpp:16,\n 12951 from ./boost/thread/pthread/thread_data.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 372,
"repeat_count": 0,
"start": 366,
"end": 379,
"text": ">> 12967 libs/thread/src/pthread/timeconv.inl:23:40: error: expected unqua",
"pre_context": " 12962 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/string:55,\n 12963 from ./boost/thread/exceptions.hpp:19,\n 12964 from ./boost/thread/pthread/thread_data.hpp:9,\n 12965 from ./boost/thread/thread.hpp:17,\n 12966 from libs/thread/src/pthread/thread.cpp:10:",
"post_context": " lified-id before numeric constant\n 12968 23 | res = boost::xtime_get(&xt, boost::TIME_UTC);\n 12969 | ^~~~~~~~\n 12970 In file included from libs/thread/src/pthread/thread.cpp:26:\n >> 12971 libs/thread/src/pthread/timeconv.inl:26:5: error: invalid use of\n incomplete type 'struct boost::xtime'",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 377,
"repeat_count": 0,
"start": 371,
"end": 384,
"text": ">> 12971 libs/thread/src/pthread/timeconv.inl:26:5: error: invalid use of",
"pre_context": " 12966 from libs/thread/src/pthread/thread.cpp:10:\n >> 12967 libs/thread/src/pthread/timeconv.inl:23:40: error: expected unqua\n lified-id before numeric constant\n 12968 23 | res = boost::xtime_get(&xt, boost::TIME_UTC);\n 12969 | ^~~~~~~~\n 12970 In file included from libs/thread/src/pthread/thread.cpp:26:",
"post_context": " incomplete type 'struct boost::xtime'\n 12972 26 | xt.sec += (milliseconds / MILLISECONDS_PER_SECOND);\n 12973 | ^~\n 12974 In file included from ./boost/thread/pthread/mutex.hpp:12,\n 12975 from ./boost/thread/mutex.hpp:16,\n 12976 from ./boost/thread/pthread/thread_data.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 391,
"repeat_count": 0,
"start": 385,
"end": 398,
"text": ">> 12983 libs/thread/src/pthread/timeconv.inl:27:5: error: invalid use of",
"pre_context": " 12978 from libs/thread/src/pthread/thread.cpp:10:\n 12979 ./boost/thread/locks.hpp:20:12: note: forward declaration of 'str\n uct boost::xtime'\n 12980 20 | struct xtime;\n 12981 | ^~~~~\n 12982 In file included from libs/thread/src/pthread/thread.cpp:26:",
"post_context": " incomplete type 'struct boost::xtime'\n 12984 27 | xt.nsec += ((milliseconds % MILLISECONDS_PER_SECOND)\n *\n 12985 | ^~\n 12986 In file included from ./boost/thread/pthread/mutex.hpp:12,\n 12987 from ./boost/thread/mutex.hpp:16,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 406,
"repeat_count": 0,
"start": 400,
"end": 413,
"text": ">> 12995 libs/thread/src/pthread/timeconv.inl:30:9: error: invalid use of",
"pre_context": " 12990 from libs/thread/src/pthread/thread.cpp:10:\n 12991 ./boost/thread/locks.hpp:20:12: note: forward declaration of 'str\n uct boost::xtime'\n 12992 20 | struct xtime;\n 12993 | ^~~~~\n 12994 In file included from libs/thread/src/pthread/thread.cpp:26:",
"post_context": " incomplete type 'struct boost::xtime'\n 12996 30 | if (xt.nsec >= NANOSECONDS_PER_SECOND)\n 12997 | ^~\n 12998 In file included from ./boost/thread/pthread/mutex.hpp:12,\n 12999 from ./boost/thread/mutex.hpp:16,\n 13000 from ./boost/thread/pthread/thread_data.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 420,
"repeat_count": 0,
"start": 414,
"end": 427,
"text": ">> 13007 libs/thread/src/pthread/timeconv.inl:32:11: error: invalid use of",
"pre_context": " 13002 from libs/thread/src/pthread/thread.cpp:10:\n 13003 ./boost/thread/locks.hpp:20:12: note: forward declaration of 'str\n uct boost::xtime'\n 13004 20 | struct xtime;\n 13005 | ^~~~~\n 13006 In file included from libs/thread/src/pthread/thread.cpp:26:",
"post_context": " incomplete type 'struct boost::xtime'\n 13008 32 | ++xt.sec;\n 13009 | ^~\n 13010 In file included from ./boost/thread/pthread/mutex.hpp:12,\n 13011 from ./boost/thread/mutex.hpp:16,\n 13012 from ./boost/thread/pthread/thread_data.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 434,
"repeat_count": 0,
"start": 428,
"end": 441,
"text": ">> 13019 libs/thread/src/pthread/timeconv.inl:33:9: error: invalid use of",
"pre_context": " 13014 from libs/thread/src/pthread/thread.cpp:10:\n 13015 ./boost/thread/locks.hpp:20:12: note: forward declaration of 'str\n uct boost::xtime'\n 13016 20 | struct xtime;\n 13017 | ^~~~~\n 13018 In file included from libs/thread/src/pthread/thread.cpp:26:",
"post_context": " incomplete type 'struct boost::xtime'\n 13020 33 | xt.nsec -= NANOSECONDS_PER_SECOND;\n 13021 | ^~\n 13022 In file included from ./boost/thread/pthread/mutex.hpp:12,\n 13023 from ./boost/thread/mutex.hpp:16,\n 13024 from ./boost/thread/pthread/thread_data.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 449,
"repeat_count": 0,
"start": 443,
"end": 456,
"text": ">> 13032 libs/thread/src/pthread/timeconv.inl:87:38: error: 'xt' has incom",
"pre_context": " 13027 ./boost/thread/locks.hpp:20:12: note: forward declaration of 'str\n uct boost::xtime'\n 13028 20 | struct xtime;\n 13029 | ^~~~~\n 13030 In file included from libs/thread/src/pthread/thread.cpp:26:\n 13031 libs/thread/src/pthread/timeconv.inl: At global scope:",
"post_context": " plete type\n 13033 87 | inline void to_duration(boost::xtime xt, int& millisecond\n s)\n 13034 | ~~~~~~~~~~~~~^~\n 13035 In file included from ./boost/thread/pthread/mutex.hpp:12,\n 13036 from ./boost/thread/mutex.hpp:16,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 466,
"repeat_count": 0,
"start": 460,
"end": 473,
"text": ">> 13045 libs/thread/src/pthread/timeconv.inl:89:18: error: aggregate 'boo",
"pre_context": " uct boost::xtime'\n 13041 20 | struct xtime;\n 13042 | ^~~~~\n 13043 In file included from libs/thread/src/pthread/thread.cpp:26:\n 13044 libs/thread/src/pthread/timeconv.inl: In function 'void {anonymou\n s}::to_duration(boost::xtime, int&)':",
"post_context": " st::xtime cur' has incomplete type and cannot be defined\n 13046 89 | boost::xtime cur;\n 13047 | ^~~\n >> 13048 libs/thread/src/pthread/timeconv.inl:91:18: error: 'xtime_get' is\n not a member of 'boost'; did you mean 'xtime_get'?\n 13049 91 | res = boost::xtime_get(&cur, boost::TIME_UTC);",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 470,
"repeat_count": 0,
"start": 464,
"end": 477,
"text": ">> 13048 libs/thread/src/pthread/timeconv.inl:91:18: error: 'xtime_get' is",
"pre_context": " 13044 libs/thread/src/pthread/timeconv.inl: In function 'void {anonymou\n s}::to_duration(boost::xtime, int&)':\n >> 13045 libs/thread/src/pthread/timeconv.inl:89:18: error: aggregate 'boo\n st::xtime cur' has incomplete type and cannot be defined\n 13046 89 | boost::xtime cur;\n 13047 | ^~~",
"post_context": " not a member of 'boost'; did you mean 'xtime_get'?\n 13049 91 | res = boost::xtime_get(&cur, boost::TIME_UTC);\n 13050 | ^~~~~~~~~\n 13051 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 13052 from ./boost/thread/mutex.hpp:16,\n 13053 from ./boost/thread/pthread/thread_data.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 489,
"repeat_count": 0,
"start": 483,
"end": 496,
"text": ">> 13069 libs/thread/src/pthread/timeconv.inl:91:41: error: expected unqua",
"pre_context": " 13064 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/string:55,\n 13065 from ./boost/thread/exceptions.hpp:19,\n 13066 from ./boost/thread/pthread/thread_data.hpp:9,\n 13067 from ./boost/thread/thread.hpp:17,\n 13068 from libs/thread/src/pthread/thread.cpp:10:",
"post_context": " lified-id before numeric constant\n 13070 91 | res = boost::xtime_get(&cur, boost::TIME_UTC);\n 13071 | ^~~~~~~~\n 13072 In file included from libs/thread/src/pthread/thread.cpp:26:\n >> 13073 libs/thread/src/pthread/timeconv.inl:94:16: error: 'xtime_cmp' is\n not a member of 'boost'; did you mean 'xtime_cmp'?",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 494,
"repeat_count": 0,
"start": 488,
"end": 501,
"text": ">> 13073 libs/thread/src/pthread/timeconv.inl:94:16: error: 'xtime_cmp' is",
"pre_context": " 13068 from libs/thread/src/pthread/thread.cpp:10:\n >> 13069 libs/thread/src/pthread/timeconv.inl:91:41: error: expected unqua\n lified-id before numeric constant\n 13070 91 | res = boost::xtime_get(&cur, boost::TIME_UTC);\n 13071 | ^~~~~~~~\n 13072 In file included from libs/thread/src/pthread/thread.cpp:26:",
"post_context": " not a member of 'boost'; did you mean 'xtime_cmp'?\n 13074 94 | if (boost::xtime_cmp(xt, cur) <= 0)\n 13075 | ^~~~~~~~~\n 13076 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 13077 from ./boost/thread/mutex.hpp:16,\n 13078 from ./boost/thread/pthread/thread_data.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 508,
"repeat_count": 0,
"start": 502,
"end": 515,
"text": ">> 13086 libs/thread/src/pthread/timeconv.inl:109:43: error: 'xt' has inco",
"pre_context": " 13080 from libs/thread/src/pthread/thread.cpp:10:\n 13081 ./boost/thread/xtime.hpp:80:12: note: 'xtime_cmp' declared here\n 13082 80 | inline int xtime_cmp(const xtime& xt1, const xtime& xt2)\n 13083 | ^~~~~~~~~\n 13084 In file included from libs/thread/src/pthread/thread.cpp:26:\n 13085 libs/thread/src/pthread/timeconv.inl: At global scope:",
"post_context": " mplete type\n 13087 109 | inline void to_microduration(boost::xtime xt, int& micros\n econds)\n 13088 | ~~~~~~~~~~~~~^~\n 13089 In file included from ./boost/thread/pthread/mutex.hpp:12,\n 13090 from ./boost/thread/mutex.hpp:16,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 525,
"repeat_count": 0,
"start": 519,
"end": 532,
"text": ">> 13099 libs/thread/src/pthread/timeconv.inl:111:18: error: aggregate 'bo",
"pre_context": " uct boost::xtime'\n 13095 20 | struct xtime;\n 13096 | ^~~~~\n 13097 In file included from libs/thread/src/pthread/thread.cpp:26:\n 13098 libs/thread/src/pthread/timeconv.inl: In function 'void {anonymou\n s}::to_microduration(boost::xtime, int&)':",
"post_context": " ost::xtime cur' has incomplete type and cannot be defined\n 13100 111 | boost::xtime cur;\n 13101 | ^~~\n >> 13102 libs/thread/src/pthread/timeconv.inl:113:18: error: 'xtime_get' i\n s not a member of 'boost'; did you mean 'xtime_get'?\n 13103 113 | res = boost::xtime_get(&cur, boost::TIME_UTC);",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 529,
"repeat_count": 0,
"start": 523,
"end": 536,
"text": ">> 13102 libs/thread/src/pthread/timeconv.inl:113:18: error: 'xtime_get' i",
"pre_context": " 13098 libs/thread/src/pthread/timeconv.inl: In function 'void {anonymou\n s}::to_microduration(boost::xtime, int&)':\n >> 13099 libs/thread/src/pthread/timeconv.inl:111:18: error: aggregate 'bo\n ost::xtime cur' has incomplete type and cannot be defined\n 13100 111 | boost::xtime cur;\n 13101 | ^~~",
"post_context": " s not a member of 'boost'; did you mean 'xtime_get'?\n 13103 113 | res = boost::xtime_get(&cur, boost::TIME_UTC);\n 13104 | ^~~~~~~~~\n 13105 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 13106 from ./boost/thread/mutex.hpp:16,\n 13107 from ./boost/thread/pthread/thread_data.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 548,
"repeat_count": 0,
"start": 542,
"end": 555,
"text": ">> 13123 libs/thread/src/pthread/timeconv.inl:113:41: error: expected unqu",
"pre_context": " 13118 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/string:55,\n 13119 from ./boost/thread/exceptions.hpp:19,\n 13120 from ./boost/thread/pthread/thread_data.hpp:9,\n 13121 from ./boost/thread/thread.hpp:17,\n 13122 from libs/thread/src/pthread/thread.cpp:10:",
"post_context": " alified-id before numeric constant\n 13124 113 | res = boost::xtime_get(&cur, boost::TIME_UTC);\n 13125 | ^~~~~~~~\n 13126 In file included from libs/thread/src/pthread/thread.cpp:26:\n >> 13127 libs/thread/src/pthread/timeconv.inl:116:16: error: 'xtime_cmp' i\n s not a member of 'boost'; did you mean 'xtime_cmp'?",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 553,
"repeat_count": 0,
"start": 547,
"end": 560,
"text": ">> 13127 libs/thread/src/pthread/timeconv.inl:116:16: error: 'xtime_cmp' i",
"pre_context": " 13122 from libs/thread/src/pthread/thread.cpp:10:\n >> 13123 libs/thread/src/pthread/timeconv.inl:113:41: error: expected unqu\n alified-id before numeric constant\n 13124 113 | res = boost::xtime_get(&cur, boost::TIME_UTC);\n 13125 | ^~~~~~~~\n 13126 In file included from libs/thread/src/pthread/thread.cpp:26:",
"post_context": " s not a member of 'boost'; did you mean 'xtime_cmp'?\n 13128 116 | if (boost::xtime_cmp(xt, cur) <= 0)\n 13129 | ^~~~~~~~~\n 13130 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 13131 from ./boost/thread/mutex.hpp:16,\n 13132 from ./boost/thread/pthread/thread_data.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 567,
"repeat_count": 0,
"start": 561,
"end": 574,
"text": ">> 13139 libs/thread/src/pthread/thread.cpp:331:29: error: variable 'const",
"pre_context": " 13134 from libs/thread/src/pthread/thread.cpp:10:\n 13135 ./boost/thread/xtime.hpp:80:12: note: 'xtime_cmp' declared here\n 13136 80 | inline int xtime_cmp(const xtime& xt1, const xtime& xt2)\n 13137 | ^~~~~~~~~\n 13138 libs/thread/src/pthread/thread.cpp: In function 'void boost::this\n _thread::sleep(const system_time&)':",
"post_context": " boost::xtime xt' has initializer but incomplete type\n 13140 331 | xtime const xt=get_xtime(st);\n 13141 | ^~\n >> 13142 libs/thread/src/pthread/thread.cpp:341:21: error: 'to_timespec_du\n ration' was not declared in this scope\n 13143 341 | to_timespec_duration(xt, ts);",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 571,
"repeat_count": 0,
"start": 565,
"end": 578,
"text": ">> 13142 libs/thread/src/pthread/thread.cpp:341:21: error: 'to_timespec_du",
"pre_context": " 13138 libs/thread/src/pthread/thread.cpp: In function 'void boost::this\n _thread::sleep(const system_time&)':\n >> 13139 libs/thread/src/pthread/thread.cpp:331:29: error: variable 'const\n boost::xtime xt' has initializer but incomplete type\n 13140 331 | xtime const xt=get_xtime(st);\n 13141 | ^~",
"post_context": " ration' was not declared in this scope\n 13143 341 | to_timespec_duration(xt, ts);\n 13144 | ^~~~~~~~~~~~~~~~~~~~\n >> 13145 libs/thread/src/pthread/thread.cpp:352:27: error: aggregate 'boos\n t::xtime cur' has incomplete type and cannot be defined\n 13146 352 | xtime cur;",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 575,
"repeat_count": 0,
"start": 569,
"end": 582,
"text": ">> 13145 libs/thread/src/pthread/thread.cpp:352:27: error: aggregate 'boos",
"pre_context": " 13140 331 | xtime const xt=get_xtime(st);\n 13141 | ^~\n >> 13142 libs/thread/src/pthread/thread.cpp:341:21: error: 'to_timespec_du\n ration' was not declared in this scope\n 13143 341 | to_timespec_duration(xt, ts);\n 13144 | ^~~~~~~~~~~~~~~~~~~~",
"post_context": " t::xtime cur' has incomplete type and cannot be defined\n 13146 352 | xtime cur;\n 13147 | ^~~\n 13148\n 13149 \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g++\" -\n ftemplate-depth-128 -O3 -finline-functions -Wno-inline -Wall -pth",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 604,
"repeat_count": 0,
"start": 598,
"end": 611,
"text": ">> 13160 ./boost/config/requires_threads.hpp:29:4: error: #error \"Threadin",
"pre_context": " hreading-multi/shared\n 13156 gcc.compile.c++ bin.v2/libs/locale/build/gcc-9/release/link-stati\n c/threading-multi/shared/date_time.o\n 13157 In file included from ./boost/thread/detail/platform.hpp:17,\n 13158 from ./boost/thread/mutex.hpp:12,\n 13159 from libs/locale/src/shared/date_time.cpp:11:",
"post_context": " g support unavaliable: it has been explicitly disabled with BOOST\n _DISABLE_THREADS\"\n 13161 29 | # error \"Threading support unavaliable: it has been expl\n icitly disabled with BOOST_DISABLE_THREADS\"\n 13162 | ^~~~~\n 13163 In file included from /usr/include/pthread.h:24,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 629,
"repeat_count": 0,
"start": 623,
"end": 636,
"text": ">> 13174 ./boost/thread/xtime.hpp:23:5: error: expected identifier before",
"pre_context": " ude/c++/9/bits/locale_classes.h:40,\n 13170 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/locale:39,\n 13171 from ./boost/locale/date_time_facet.hpp:18,\n 13172 from ./boost/locale/date_time.hpp:18,\n 13173 from libs/locale/src/shared/date_time.cpp:9:",
"post_context": " numeric constant\n 13175 23 | TIME_UTC=1\n 13176 | ^~~~~~~~\n >> 13177 ./boost/thread/xtime.hpp:23:5: error: expected '}' before numeric\n constant\n 13178 In file included from ./boost/thread/pthread/mutex.hpp:14,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 633,
"repeat_count": 0,
"start": 627,
"end": 640,
"text": ">> 13177 ./boost/thread/xtime.hpp:23:5: error: expected '}' before numeric",
"pre_context": " 13172 from ./boost/locale/date_time.hpp:18,\n 13173 from libs/locale/src/shared/date_time.cpp:9:\n >> 13174 ./boost/thread/xtime.hpp:23:5: error: expected identifier before\n numeric constant\n 13175 23 | TIME_UTC=1\n 13176 | ^~~~~~~~",
"post_context": " constant\n 13178 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 13179 from ./boost/thread/mutex.hpp:16,\n 13180 from libs/locale/src/shared/date_time.cpp:11:\n 13181 ./boost/thread/xtime.hpp:22:1: note: to match this '{'\n 13182 22 | {",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 653,
"repeat_count": 0,
"start": 647,
"end": 660,
"text": ">> 13195 ./boost/thread/xtime.hpp:23:5: error: expected unqualified-id bef",
"pre_context": " ude/c++/9/bits/locale_classes.h:40,\n 13191 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/locale:39,\n 13192 from ./boost/locale/date_time_facet.hpp:18,\n 13193 from ./boost/locale/date_time.hpp:18,\n 13194 from libs/locale/src/shared/date_time.cpp:9:",
"post_context": " ore numeric constant\n 13196 23 | TIME_UTC=1\n 13197 | ^~~~~~~~\n 13198 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 13199 from ./boost/thread/mutex.hpp:16,\n 13200 from libs/locale/src/shared/date_time.cpp:11:",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 660,
"repeat_count": 0,
"start": 654,
"end": 667,
"text": ">> 13201 ./boost/thread/xtime.hpp:46:14: error: expected type-specifier be",
"pre_context": " ore numeric constant\n 13196 23 | TIME_UTC=1\n 13197 | ^~~~~~~~\n 13198 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 13199 from ./boost/thread/mutex.hpp:16,\n 13200 from libs/locale/src/shared/date_time.cpp:11:",
"post_context": " fore 'system_time'\n 13202 46 | operator system_time() const\n 13203 | ^~~~~~~~~~~\n 13204 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 13205 from ./boost/thread/mutex.hpp:16,\n 13206 from libs/locale/src/shared/date_time.cpp:11:",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 669,
"repeat_count": 0,
"start": 663,
"end": 676,
"text": ">> 13208 ./boost/thread/xtime.hpp:73:24: error: 'get_system_time' was not",
"pre_context": " 13203 | ^~~~~~~~~~~\n 13204 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 13205 from ./boost/thread/mutex.hpp:16,\n 13206 from libs/locale/src/shared/date_time.cpp:11:\n 13207 ./boost/thread/xtime.hpp: In function 'int xtime_get(xtime*, int)\n ':",
"post_context": " declared in this scope; did you mean 'boost::get_system_time'?\n 13209 73 | *xtp=get_xtime(get_system_time());\n 13210 | ^~~~~~~~~~~~~~~\n 13211 | boost::get_system_time\n 13212 In file included from ./boost/thread/locks.hpp:12,\n 13213 from ./boost/thread/pthread/mutex.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 686,
"repeat_count": 0,
"start": 680,
"end": 693,
"text": ">> 13223 ./boost/thread/xtime.hpp:88:1: error: expected declaration before",
"pre_context": " 13217 19 | inline system_time get_system_time()\n 13218 | ^~~~~~~~~~~~~~~\n 13219 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 13220 from ./boost/thread/mutex.hpp:16,\n 13221 from libs/locale/src/shared/date_time.cpp:11:\n 13222 ./boost/thread/xtime.hpp: At global scope:",
"post_context": " '}' token\n 13224 88 | } // namespace boost\n 13225 | ^\n 13226 In file included from ./boost/thread/mutex.hpp:16,\n 13227 from libs/locale/src/shared/date_time.cpp:11:\n 13228 ./boost/thread/pthread/mutex.hpp: In member function 'bool boost:",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 694,
"repeat_count": 0,
"start": 688,
"end": 701,
"text": ">> 13229 ./boost/thread/pthread/mutex.hpp:131:56: error: no matching funct",
"pre_context": " 13224 88 | } // namespace boost\n 13225 | ^\n 13226 In file included from ./boost/thread/mutex.hpp:16,\n 13227 from libs/locale/src/shared/date_time.cpp:11:\n 13228 ./boost/thread/pthread/mutex.hpp: In member function 'bool boost:\n :timed_mutex::timed_lock(const boost::xtime&)':",
"post_context": " ion for call to 'boost::posix_time::ptime::ptime(const boost::xti\n me&)'\n 13230 131 | return timed_lock(system_time(absolute_time))\n ;\n 13231 | ^\n 13232 In file included from ./boost/date_time/posix_time/posix_time_typ",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 718,
"repeat_count": 0,
"start": 712,
"end": 725,
"text": ">> 17501 ./boost/config/requires_threads.hpp:29:4: error: #error \"Threadin",
"pre_context": " 0-arcelvm6fsmfph6i72ppntpjxkiospvj/lib/libboost_graph.a\n 17497 gcc.compile.c++ bin.v2/libs/locale/build/gcc-9/release/link-stati\n c/threading-multi/shared/generator.o\n 17498 In file included from ./boost/thread/detail/platform.hpp:17,\n 17499 from ./boost/thread/mutex.hpp:12,\n 17500 from libs/locale/src/shared/generator.cpp:16:",
"post_context": " g support unavaliable: it has been explicitly disabled with BOOST\n _DISABLE_THREADS\"\n 17502 29 | # error \"Threading support unavaliable: it has been expl\n icitly disabled with BOOST_DISABLE_THREADS\"\n 17503 | ^~~~~\n 17504 In file included from /usr/include/pthread.h:24,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 737,
"repeat_count": 0,
"start": 731,
"end": 744,
"text": ">> 17512 ./boost/thread/xtime.hpp:23:5: error: expected identifier before",
"pre_context": " 17508 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/bits/basic_string.h:39,\n 17509 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/string:55,\n 17510 from ./boost/locale/generator.hpp:16,\n 17511 from libs/locale/src/shared/generator.cpp:9:",
"post_context": " numeric constant\n 17513 23 | TIME_UTC=1\n 17514 | ^~~~~~~~\n >> 17515 ./boost/thread/xtime.hpp:23:5: error: expected '}' before numeric\n constant\n 17516 In file included from ./boost/thread/pthread/mutex.hpp:14,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 741,
"repeat_count": 0,
"start": 735,
"end": 748,
"text": ">> 17515 ./boost/thread/xtime.hpp:23:5: error: expected '}' before numeric",
"pre_context": " 17510 from ./boost/locale/generator.hpp:16,\n 17511 from libs/locale/src/shared/generator.cpp:9:\n >> 17512 ./boost/thread/xtime.hpp:23:5: error: expected identifier before\n numeric constant\n 17513 23 | TIME_UTC=1\n 17514 | ^~~~~~~~",
"post_context": " constant\n 17516 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 17517 from ./boost/thread/mutex.hpp:16,\n 17518 from libs/locale/src/shared/generator.cpp:16:\n 17519 ./boost/thread/xtime.hpp:22:1: note: to match this '{'\n 17520 22 | {",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 762,
"repeat_count": 0,
"start": 756,
"end": 769,
"text": ">> 17530 ./boost/thread/xtime.hpp:23:5: error: expected unqualified-id bef",
"pre_context": " 17526 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/bits/basic_string.h:39,\n 17527 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/string:55,\n 17528 from ./boost/locale/generator.hpp:16,\n 17529 from libs/locale/src/shared/generator.cpp:9:",
"post_context": " ore numeric constant\n 17531 23 | TIME_UTC=1\n 17532 | ^~~~~~~~\n 17533 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 17534 from ./boost/thread/mutex.hpp:16,\n 17535 from libs/locale/src/shared/generator.cpp:16:",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 769,
"repeat_count": 0,
"start": 763,
"end": 776,
"text": ">> 17536 ./boost/thread/xtime.hpp:46:14: error: expected type-specifier be",
"pre_context": " ore numeric constant\n 17531 23 | TIME_UTC=1\n 17532 | ^~~~~~~~\n 17533 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 17534 from ./boost/thread/mutex.hpp:16,\n 17535 from libs/locale/src/shared/generator.cpp:16:",
"post_context": " fore 'system_time'\n 17537 46 | operator system_time() const\n 17538 | ^~~~~~~~~~~\n 17539 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 17540 from ./boost/thread/mutex.hpp:16,\n 17541 from libs/locale/src/shared/generator.cpp:16:",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 778,
"repeat_count": 0,
"start": 772,
"end": 785,
"text": ">> 17543 ./boost/thread/xtime.hpp:73:24: error: 'get_system_time' was not",
"pre_context": " 17538 | ^~~~~~~~~~~\n 17539 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 17540 from ./boost/thread/mutex.hpp:16,\n 17541 from libs/locale/src/shared/generator.cpp:16:\n 17542 ./boost/thread/xtime.hpp: In function 'int xtime_get(xtime*, int)\n ':",
"post_context": " declared in this scope; did you mean 'boost::get_system_time'?\n 17544 73 | *xtp=get_xtime(get_system_time());\n 17545 | ^~~~~~~~~~~~~~~\n 17546 | boost::get_system_time\n 17547 In file included from ./boost/thread/locks.hpp:12,\n 17548 from ./boost/thread/pthread/mutex.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 795,
"repeat_count": 0,
"start": 789,
"end": 802,
"text": ">> 17558 ./boost/thread/xtime.hpp:88:1: error: expected declaration before",
"pre_context": " 17552 19 | inline system_time get_system_time()\n 17553 | ^~~~~~~~~~~~~~~\n 17554 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 17555 from ./boost/thread/mutex.hpp:16,\n 17556 from libs/locale/src/shared/generator.cpp:16:\n 17557 ./boost/thread/xtime.hpp: At global scope:",
"post_context": " '}' token\n 17559 88 | } // namespace boost\n 17560 | ^\n 17561 In file included from ./boost/thread/mutex.hpp:16,\n 17562 from libs/locale/src/shared/generator.cpp:16:\n 17563 ./boost/thread/pthread/mutex.hpp: In member function 'bool boost:",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 803,
"repeat_count": 0,
"start": 797,
"end": 810,
"text": ">> 17564 ./boost/thread/pthread/mutex.hpp:131:56: error: no matching funct",
"pre_context": " 17559 88 | } // namespace boost\n 17560 | ^\n 17561 In file included from ./boost/thread/mutex.hpp:16,\n 17562 from libs/locale/src/shared/generator.cpp:16:\n 17563 ./boost/thread/pthread/mutex.hpp: In member function 'bool boost:\n :timed_mutex::timed_lock(const boost::xtime&)':",
"post_context": " ion for call to 'boost::posix_time::ptime::ptime(const boost::xti\n me&)'\n 17565 131 | return timed_lock(system_time(absolute_time))\n ;\n 17566 | ^\n 17567 In file included from ./boost/date_time/posix_time/posix_time_typ",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 826,
"repeat_count": 0,
"start": 820,
"end": 833,
"text": ">> 17729 ./boost/config/requires_threads.hpp:29:4: error: #error \"Threadin",
"pre_context": " 17725 gcc.compile.c++ bin.v2/libs/locale/build/gcc-9/release/link-stati\n c/threading-multi/shared/localization_backend.o\n 17726 In file included from ./boost/thread/detail/platform.hpp:17,\n 17727 from ./boost/thread/mutex.hpp:12,\n 17728 from libs/locale/src/shared/localization_backend\n .cpp:11:",
"post_context": " g support unavaliable: it has been explicitly disabled with BOOST\n _DISABLE_THREADS\"\n 17730 29 | # error \"Threading support unavaliable: it has been expl\n icitly disabled with BOOST_DISABLE_THREADS\"\n 17731 | ^~~~~\n 17732 In file included from /usr/include/pthread.h:24,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 847,
"repeat_count": 0,
"start": 841,
"end": 854,
"text": ">> 17741 ./boost/thread/xtime.hpp:23:5: error: expected identifier before",
"pre_context": " 17737 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/string:55,\n 17738 from ./boost/locale/generator.hpp:16,\n 17739 from ./boost/locale/localization_backend.hpp:11,\n 17740 from libs/locale/src/shared/localization_backend\n .cpp:9:",
"post_context": " numeric constant\n 17742 23 | TIME_UTC=1\n 17743 | ^~~~~~~~\n >> 17744 ./boost/thread/xtime.hpp:23:5: error: expected '}' before numeric\n constant\n 17745 In file included from ./boost/thread/pthread/mutex.hpp:14,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 851,
"repeat_count": 0,
"start": 845,
"end": 858,
"text": ">> 17744 ./boost/thread/xtime.hpp:23:5: error: expected '}' before numeric",
"pre_context": " 17740 from libs/locale/src/shared/localization_backend\n .cpp:9:\n >> 17741 ./boost/thread/xtime.hpp:23:5: error: expected identifier before\n numeric constant\n 17742 23 | TIME_UTC=1\n 17743 | ^~~~~~~~",
"post_context": " constant\n 17745 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 17746 from ./boost/thread/mutex.hpp:16,\n 17747 from libs/locale/src/shared/localization_backend\n .cpp:11:\n 17748 ./boost/thread/xtime.hpp:22:1: note: to match this '{'",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 873,
"repeat_count": 0,
"start": 867,
"end": 880,
"text": ">> 17760 ./boost/thread/xtime.hpp:23:5: error: expected unqualified-id bef",
"pre_context": " 17756 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/string:55,\n 17757 from ./boost/locale/generator.hpp:16,\n 17758 from ./boost/locale/localization_backend.hpp:11,\n 17759 from libs/locale/src/shared/localization_backend\n .cpp:9:",
"post_context": " ore numeric constant\n 17761 23 | TIME_UTC=1\n 17762 | ^~~~~~~~\n 17763 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 17764 from ./boost/thread/mutex.hpp:16,\n 17765 from libs/locale/src/shared/localization_backend",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 881,
"repeat_count": 0,
"start": 875,
"end": 888,
"text": ">> 17766 ./boost/thread/xtime.hpp:46:14: error: expected type-specifier be",
"pre_context": " 17761 23 | TIME_UTC=1\n 17762 | ^~~~~~~~\n 17763 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 17764 from ./boost/thread/mutex.hpp:16,\n 17765 from libs/locale/src/shared/localization_backend\n .cpp:11:",
"post_context": " fore 'system_time'\n 17767 46 | operator system_time() const\n 17768 | ^~~~~~~~~~~\n 17769 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 17770 from ./boost/thread/mutex.hpp:16,\n 17771 from libs/locale/src/shared/localization_backend",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 891,
"repeat_count": 0,
"start": 885,
"end": 898,
"text": ">> 17773 ./boost/thread/xtime.hpp:73:24: error: 'get_system_time' was not",
"pre_context": " 17769 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 17770 from ./boost/thread/mutex.hpp:16,\n 17771 from libs/locale/src/shared/localization_backend\n .cpp:11:\n 17772 ./boost/thread/xtime.hpp: In function 'int xtime_get(xtime*, int)\n ':",
"post_context": " declared in this scope; did you mean 'boost::get_system_time'?\n 17774 73 | *xtp=get_xtime(get_system_time());\n 17775 | ^~~~~~~~~~~~~~~\n 17776 | boost::get_system_time\n 17777 In file included from ./boost/thread/locks.hpp:12,\n 17778 from ./boost/thread/pthread/mutex.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 909,
"repeat_count": 0,
"start": 903,
"end": 916,
"text": ">> 17788 ./boost/thread/xtime.hpp:88:1: error: expected declaration before",
"pre_context": " 17783 | ^~~~~~~~~~~~~~~\n 17784 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 17785 from ./boost/thread/mutex.hpp:16,\n 17786 from libs/locale/src/shared/localization_backend\n .cpp:11:\n 17787 ./boost/thread/xtime.hpp: At global scope:",
"post_context": " '}' token\n 17789 88 | } // namespace boost\n 17790 | ^\n 17791 In file included from ./boost/thread/mutex.hpp:16,\n 17792 from libs/locale/src/shared/localization_backend\n .cpp:11:",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 918,
"repeat_count": 0,
"start": 912,
"end": 925,
"text": ">> 17794 ./boost/thread/pthread/mutex.hpp:131:56: error: no matching funct",
"pre_context": " 17790 | ^\n 17791 In file included from ./boost/thread/mutex.hpp:16,\n 17792 from libs/locale/src/shared/localization_backend\n .cpp:11:\n 17793 ./boost/thread/pthread/mutex.hpp: In member function 'bool boost:\n :timed_mutex::timed_lock(const boost::xtime&)':",
"post_context": " ion for call to 'boost::posix_time::ptime::ptime(const boost::xti\n me&)'\n 17795 131 | return timed_lock(system_time(absolute_time))\n ;\n 17796 | ^\n 17797 In file included from ./boost/date_time/posix_time/posix_time_typ",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 940,
"repeat_count": 0,
"start": 934,
"end": 947,
"text": ">> 17970 ./boost/config/requires_threads.hpp:29:4: error: #error \"Threadin",
"pre_context": " 17965 gcc.compile.c++ bin.v2/libs/locale/build/gcc-9/release/link-stati\n c/threading-multi/icu/collator.o\n 17966 In file included from ./boost/thread/detail/platform.hpp:17,\n 17967 from ./boost/thread/thread.hpp:12,\n 17968 from ./boost/thread.hpp:13,\n 17969 from libs/locale/src/icu/collator.cpp:11:",
"post_context": " g support unavaliable: it has been explicitly disabled with BOOST\n _DISABLE_THREADS\"\n 17971 29 | # error \"Threading support unavaliable: it has been expl\n icitly disabled with BOOST_DISABLE_THREADS\"\n 17972 | ^~~~~\n 17973 In file included from /usr/include/pthread.h:24,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 963,
"repeat_count": 0,
"start": 957,
"end": 970,
"text": ">> 17983 ./boost/thread/xtime.hpp:23:5: error: expected identifier before",
"pre_context": " 17979 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/bits/locale_classes.h:40,\n 17980 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/locale:39,\n 17981 from ./boost/locale/collator.hpp:16,\n 17982 from libs/locale/src/icu/collator.cpp:9:",
"post_context": " numeric constant\n 17984 23 | TIME_UTC=1\n 17985 | ^~~~~~~~\n >> 17986 ./boost/thread/xtime.hpp:23:5: error: expected '}' before numeric\n constant\n 17987 In file included from ./boost/thread/pthread/mutex.hpp:14,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 967,
"repeat_count": 0,
"start": 961,
"end": 974,
"text": ">> 17986 ./boost/thread/xtime.hpp:23:5: error: expected '}' before numeric",
"pre_context": " 17981 from ./boost/locale/collator.hpp:16,\n 17982 from libs/locale/src/icu/collator.cpp:9:\n >> 17983 ./boost/thread/xtime.hpp:23:5: error: expected identifier before\n numeric constant\n 17984 23 | TIME_UTC=1\n 17985 | ^~~~~~~~",
"post_context": " constant\n 17987 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 17988 from ./boost/thread/mutex.hpp:16,\n 17989 from ./boost/thread/pthread/thread_data.hpp:12,\n 17990 from ./boost/thread/thread.hpp:17,\n 17991 from ./boost/thread.hpp:13,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 988,
"repeat_count": 0,
"start": 982,
"end": 995,
"text": ">> 18006 ./boost/thread/xtime.hpp:23:5: error: expected unqualified-id bef",
"pre_context": " 18002 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/bits/locale_classes.h:40,\n 18003 from /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/incl\n ude/c++/9/locale:39,\n 18004 from ./boost/locale/collator.hpp:16,\n 18005 from libs/locale/src/icu/collator.cpp:9:",
"post_context": " ore numeric constant\n 18007 23 | TIME_UTC=1\n 18008 | ^~~~~~~~\n 18009 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 18010 from ./boost/thread/mutex.hpp:16,\n 18011 from ./boost/thread/pthread/thread_data.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 998,
"repeat_count": 0,
"start": 992,
"end": 1005,
"text": ">> 18015 ./boost/thread/xtime.hpp:46:14: error: expected type-specifier be",
"pre_context": " 18009 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 18010 from ./boost/thread/mutex.hpp:16,\n 18011 from ./boost/thread/pthread/thread_data.hpp:12,\n 18012 from ./boost/thread/thread.hpp:17,\n 18013 from ./boost/thread.hpp:13,\n 18014 from libs/locale/src/icu/collator.cpp:11:",
"post_context": " fore 'system_time'\n 18016 46 | operator system_time() const\n 18017 | ^~~~~~~~~~~\n 18018 In file included from ./boost/thread/pthread/mutex.hpp:14,\n 18019 from ./boost/thread/mutex.hpp:16,\n 18020 from ./boost/thread/pthread/thread_data.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1010,
"repeat_count": 0,
"start": 1004,
"end": 1017,
"text": ">> 18025 ./boost/thread/xtime.hpp:73:24: error: 'get_system_time' was not",
"pre_context": " 18020 from ./boost/thread/pthread/thread_data.hpp:12,\n 18021 from ./boost/thread/thread.hpp:17,\n 18022 from ./boost/thread.hpp:13,\n 18023 from libs/locale/src/icu/collator.cpp:11:\n 18024 ./boost/thread/xtime.hpp: In function 'int xtime_get(xtime*, int)\n ':",
"post_context": " declared in this scope; did you mean 'boost::get_system_time'?\n 18026 73 | *xtp=get_xtime(get_system_time());\n 18027 | ^~~~~~~~~~~~~~~\n 18028 | boost::get_system_time\n 18029 In file included from ./boost/thread/locks.hpp:12,\n 18030 from ./boost/thread/pthread/mutex.hpp:12,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1027,
"repeat_count": 0,
"start": 1021,
"end": 1034,
"text": ">> 18046 ./boost/thread/xtime.hpp:88:1: error: expected declaration before",
"pre_context": " 18040 from ./boost/thread/mutex.hpp:16,\n 18041 from ./boost/thread/pthread/thread_data.hpp:12,\n 18042 from ./boost/thread/thread.hpp:17,\n 18043 from ./boost/thread.hpp:13,\n 18044 from libs/locale/src/icu/collator.cpp:11:\n 18045 ./boost/thread/xtime.hpp: At global scope:",
"post_context": " '}' token\n 18047 88 | } // namespace boost\n 18048 | ^\n 18049 In file included from ./boost/thread/mutex.hpp:16,\n 18050 from ./boost/thread/pthread/thread_data.hpp:12,\n 18051 from ./boost/thread/thread.hpp:17,",
"hash": "arcelvm6fsmfph6i72ppntpjxkiospvj"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1038,
"repeat_count": 0,
"start": 1032,