-
Notifications
You must be signed in to change notification settings - Fork 2
/
nrm_error.json
7910 lines (7910 loc) · 576 KB
/
nrm_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": 657,
"repeat_count": 0,
"start": 651,
"end": 664,
"text": ">> 112 collect2: error: ld returned 1 exit status",
"pre_context": " st.o -o _configtest\n 110 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 111 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.14.0-bjwoovoeupz3\n xnm5u73gfnwjiee7k2sm/spack-src/_configtest.c:6: undefined referenc\n e to `exp'",
"post_context": " 113 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 114 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.14.0-bjwoovoeupz3\n xnm5u73gfnwjiee7k2sm/spack-src/_configtest.c:6: undefined referenc\n e to `exp'\n >> 115 collect2: error: ld returned 1 exit status",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 663,
"repeat_count": 0,
"start": 657,
"end": 670,
"text": ">> 115 collect2: error: ld returned 1 exit status",
"pre_context": " >> 112 collect2: error: ld returned 1 exit status\n 113 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 114 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.14.0-bjwoovoeupz3\n xnm5u73gfnwjiee7k2sm/spack-src/_configtest.c:6: undefined referenc\n e to `exp'",
"post_context": " 116 failure.\n 117 removing: _configtest.c _configtest.o\n 118 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 119",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 693,
"repeat_count": 0,
"start": 687,
"end": 700,
"text": ">> 169 _configtest.c:1:10: fatal error: sys/endian.h: No such file or dir",
"pre_context": " y/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inump\n y/core/src/umath -Inumpy/core/src/npysort -I/p/vast1/koparasy/BUIL\n D/spack_cluster_installer/quartz/nrm/spack_env_dir/linux-rhel7-bro\n adwell/gcc-9.3.1/python-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/in\n clude/python3.8 -c'\n 168 gcc: _configtest.c",
"post_context": " ectory\n 170 1 | #include <sys/endian.h>\n 171 | ^~~~~~~~~~~~~~\n 172 compilation terminated.\n >> 173 _configtest.c:1:10: fatal error: sys/endian.h: No such file or dir\n ectory",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 698,
"repeat_count": 0,
"start": 692,
"end": 705,
"text": ">> 173 _configtest.c:1:10: fatal error: sys/endian.h: No such file or dir",
"pre_context": " 168 gcc: _configtest.c\n >> 169 _configtest.c:1:10: fatal error: sys/endian.h: No such file or dir\n ectory\n 170 1 | #include <sys/endian.h>\n 171 | ^~~~~~~~~~~~~~\n 172 compilation terminated.",
"post_context": " ectory\n 174 1 | #include <sys/endian.h>\n 175 | ^~~~~~~~~~~~~~\n 176 compilation terminated.\n 177 failure.\n 178 removing: _configtest.c _configtest.o",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 724,
"repeat_count": 0,
"start": 718,
"end": 731,
"text": ">> 286 _configtest.c:7:12: error: 'SIZEOF_LONGDOUBLE' undeclared (first u",
"pre_context": " y/core/src/umath -Inumpy/core/src/npysort -I/p/vast1/koparasy/BUIL\n D/spack_cluster_installer/quartz/nrm/spack_env_dir/linux-rhel7-bro\n adwell/gcc-9.3.1/python-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/in\n clude/python3.8 -c'\n 284 gcc: _configtest.c\n 285 _configtest.c: In function 'main':",
"post_context": " se in this function); did you mean 'SIZEOF_LONG_DOUBLE'?\n 287 7 | (void) SIZEOF_LONGDOUBLE;\n 288 | ^~~~~~~~~~~~~~~~~\n 289 | SIZEOF_LONG_DOUBLE\n 290 _configtest.c:7:12: note: each undeclared identifier is reported o\n nly once for each function it appears in",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 732,
"repeat_count": 0,
"start": 726,
"end": 739,
"text": ">> 292 _configtest.c:7:12: error: 'SIZEOF_LONGDOUBLE' undeclared (first u",
"pre_context": " 287 7 | (void) SIZEOF_LONGDOUBLE;\n 288 | ^~~~~~~~~~~~~~~~~\n 289 | SIZEOF_LONG_DOUBLE\n 290 _configtest.c:7:12: note: each undeclared identifier is reported o\n nly once for each function it appears in\n 291 _configtest.c: In function 'main':",
"post_context": " se in this function); did you mean 'SIZEOF_LONG_DOUBLE'?\n 293 7 | (void) SIZEOF_LONGDOUBLE;\n 294 | ^~~~~~~~~~~~~~~~~\n 295 | SIZEOF_LONG_DOUBLE\n 296 _configtest.c:7:12: note: each undeclared identifier is reported o\n nly once for each function it appears in",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 755,
"repeat_count": 0,
"start": 749,
"end": 762,
"text": ">> 432 collect2: error: ld returned 1 exit status",
"pre_context": " st.o -o _configtest\n 430 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 431 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.14.0-bjwoovoeupz3\n xnm5u73gfnwjiee7k2sm/spack-src/_configtest.c:6: undefined referenc\n e to `exp'",
"post_context": " 433 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 434 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.14.0-bjwoovoeupz3\n xnm5u73gfnwjiee7k2sm/spack-src/_configtest.c:6: undefined referenc\n e to `exp'\n >> 435 collect2: error: ld returned 1 exit status",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 761,
"repeat_count": 0,
"start": 755,
"end": 768,
"text": ">> 435 collect2: error: ld returned 1 exit status",
"pre_context": " >> 432 collect2: error: ld returned 1 exit status\n 433 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 434 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.14.0-bjwoovoeupz3\n xnm5u73gfnwjiee7k2sm/spack-src/_configtest.c:6: undefined referenc\n e to `exp'",
"post_context": " 436 failure.\n 437 removing: _configtest.c _configtest.o\n 438 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 439",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 790,
"repeat_count": 0,
"start": 784,
"end": 797,
"text": ">> 869 _configtest.c:5:24: error: expected declaration specifiers before",
"pre_context": " 864 gcc: _configtest.c\n 865 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk\n nown-pragmas]\n 866 3 | #pragma clang diagnostic error \"-Wattributes\"\n 867 |\n 868 _configtest.c: In function '__declspec':",
"post_context": " 'foo'\n 870 5 | int __declspec(thread) foo;\n 871 | ^~~\n >> 872 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 873 9 | {",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 794,
"repeat_count": 0,
"start": 788,
"end": 801,
"text": ">> 872 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr",
"pre_context": " 867 |\n 868 _configtest.c: In function '__declspec':\n >> 869 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'\n 870 5 | int __declspec(thread) foo;\n 871 | ^~~",
"post_context": " ibute__' before '{' token\n 873 9 | {\n 874 | ^\n 875 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W\n implicit-int]\n 876 5 | int __declspec(thread) foo;",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 802,
"repeat_count": 0,
"start": 796,
"end": 809,
"text": ">> 878 _configtest.c:11: error: expected '{' at end of input",
"pre_context": " 873 9 | {\n 874 | ^\n 875 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W\n implicit-int]\n 876 5 | int __declspec(thread) foo;\n 877 | ^~~~~~~~~~",
"post_context": " 879 11 | }\n 880 |\n 881 _configtest.c:11: warning: control reaches end of non-void functio\n n [-Wreturn-type]\n 882 11 | }\n 883 |",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 814,
"repeat_count": 0,
"start": 808,
"end": 821,
"text": ">> 888 _configtest.c:5:24: error: expected declaration specifiers before",
"pre_context": " 883 |\n 884 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk\n nown-pragmas]\n 885 3 | #pragma clang diagnostic error \"-Wattributes\"\n 886 |\n 887 _configtest.c: In function '__declspec':",
"post_context": " 'foo'\n 889 5 | int __declspec(thread) foo;\n 890 | ^~~\n >> 891 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 892 9 | {",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 818,
"repeat_count": 0,
"start": 812,
"end": 825,
"text": ">> 891 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr",
"pre_context": " 886 |\n 887 _configtest.c: In function '__declspec':\n >> 888 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'\n 889 5 | int __declspec(thread) foo;\n 890 | ^~~",
"post_context": " ibute__' before '{' token\n 892 9 | {\n 893 | ^\n 894 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W\n implicit-int]\n 895 5 | int __declspec(thread) foo;",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 826,
"repeat_count": 0,
"start": 820,
"end": 833,
"text": ">> 897 _configtest.c:11: error: expected '{' at end of input",
"pre_context": " 892 9 | {\n 893 | ^\n 894 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W\n implicit-int]\n 895 5 | int __declspec(thread) foo;\n 896 | ^~~~~~~~~~",
"post_context": " 898 11 | }\n 899 |\n 900 _configtest.c:11: warning: control reaches end of non-void functio\n n [-Wreturn-type]\n 901 11 | }\n 902 |",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 850,
"repeat_count": 0,
"start": 844,
"end": 857,
"text": ">> 1232 _configtest.c:8:12: error: 'HAVE_DECL_SIGNBIT' undeclared (first u",
"pre_context": " y/core/src/umath -Inumpy/core/src/npysort -I/p/vast1/koparasy/BUIL\n D/spack_cluster_installer/quartz/nrm/spack_env_dir/linux-rhel7-bro\n adwell/gcc-9.3.1/python-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/in\n clude/python3.8 -c'\n 1230 gcc: _configtest.c\n 1231 _configtest.c: In function 'main':",
"post_context": " se in this function); did you mean 'HAVE_DECL_ISNAN'?\n 1233 8 | (void) HAVE_DECL_SIGNBIT;\n 1234 | ^~~~~~~~~~~~~~~~~\n 1235 | HAVE_DECL_ISNAN\n 1236 _configtest.c:8:12: note: each undeclared identifier is reported o\n nly once for each function it appears in",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 858,
"repeat_count": 0,
"start": 852,
"end": 865,
"text": ">> 1238 _configtest.c:8:12: error: 'HAVE_DECL_SIGNBIT' undeclared (first u",
"pre_context": " 1233 8 | (void) HAVE_DECL_SIGNBIT;\n 1234 | ^~~~~~~~~~~~~~~~~\n 1235 | HAVE_DECL_ISNAN\n 1236 _configtest.c:8:12: note: each undeclared identifier is reported o\n nly once for each function it appears in\n 1237 _configtest.c: In function 'main':",
"post_context": " se in this function); did you mean 'HAVE_DECL_ISNAN'?\n 1239 8 | (void) HAVE_DECL_SIGNBIT;\n 1240 | ^~~~~~~~~~~~~~~~~\n 1241 | HAVE_DECL_ISNAN\n 1242 _configtest.c:8:12: note: each undeclared identifier is reported o\n nly once for each function it appears in",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 881,
"repeat_count": 0,
"start": 875,
"end": 888,
"text": ">> 1826 collect2: error: ld returned 1 exit status",
"pre_context": " st.o -o _configtest\n 1824 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 1825 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.14.0-bjwoovoeupz3\n xnm5u73gfnwjiee7k2sm/spack-src/_configtest.c:6: undefined referenc\n e to `exp'",
"post_context": " 1827 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 1828 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.14.0-bjwoovoeupz3\n xnm5u73gfnwjiee7k2sm/spack-src/_configtest.c:6: undefined referenc\n e to `exp'\n >> 1829 collect2: error: ld returned 1 exit status",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 887,
"repeat_count": 0,
"start": 881,
"end": 894,
"text": ">> 1829 collect2: error: ld returned 1 exit status",
"pre_context": " >> 1826 collect2: error: ld returned 1 exit status\n 1827 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 1828 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.14.0-bjwoovoeupz3\n xnm5u73gfnwjiee7k2sm/spack-src/_configtest.c:6: undefined referenc\n e to `exp'",
"post_context": " 1830 failure.\n 1831 removing: _configtest.c _configtest.o\n 1832 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 1833",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 917,
"repeat_count": 0,
"start": 911,
"end": 924,
"text": ">> 4015 numpy/random/mtrand/mtrand.c:45472:21: error: 'PyThreadState' {aka",
"pre_context": " nidc7o5wtbfqu64d3ld/include/python3.8/cpython/object.h:260:30: not\n e: declared here\n 4012 260 | Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *,\n int);\n 4013 | ^~~~~~~~\n 4014 numpy/random/mtrand/mtrand.c: In function '__Pyx__ExceptionSave':",
"post_context": " 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4016 45472 | *type = tstate->exc_type;\n 4017 | ^~~~~~~~\n 4018 | curexc_type\n >> 4019 numpy/random/mtrand/mtrand.c:45473:22: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 923,
"repeat_count": 0,
"start": 917,
"end": 930,
"text": ">> 4019 numpy/random/mtrand/mtrand.c:45473:22: error: 'PyThreadState' {aka",
"pre_context": " >> 4015 numpy/random/mtrand/mtrand.c:45472:21: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4016 45472 | *type = tstate->exc_type;\n 4017 | ^~~~~~~~\n 4018 | curexc_type",
"post_context": " 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4020 45473 | *value = tstate->exc_value;\n 4021 | ^~~~~~~~~\n 4022 | curexc_value\n >> 4023 numpy/random/mtrand/mtrand.c:45474:19: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 929,
"repeat_count": 0,
"start": 923,
"end": 936,
"text": ">> 4023 numpy/random/mtrand/mtrand.c:45474:19: error: 'PyThreadState' {aka",
"pre_context": " >> 4019 numpy/random/mtrand/mtrand.c:45473:22: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4020 45473 | *value = tstate->exc_value;\n 4021 | ^~~~~~~~~\n 4022 | curexc_value",
"post_context": " 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4024 45474 | *tb = tstate->exc_traceback;\n 4025 | ^~~~~~~~~~~~~\n 4026 | curexc_traceback\n 4027 numpy/random/mtrand/mtrand.c: In function '__Pyx__ExceptionReset':",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 936,
"repeat_count": 0,
"start": 930,
"end": 943,
"text": ">> 4028 numpy/random/mtrand/mtrand.c:45481:24: error: 'PyThreadState' {aka",
"pre_context": " 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4024 45474 | *tb = tstate->exc_traceback;\n 4025 | ^~~~~~~~~~~~~\n 4026 | curexc_traceback\n 4027 numpy/random/mtrand/mtrand.c: In function '__Pyx__ExceptionReset':",
"post_context": " 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4029 45481 | tmp_type = tstate->exc_type;\n 4030 | ^~~~~~~~\n 4031 | curexc_type\n >> 4032 numpy/random/mtrand/mtrand.c:45482:25: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 942,
"repeat_count": 0,
"start": 936,
"end": 949,
"text": ">> 4032 numpy/random/mtrand/mtrand.c:45482:25: error: 'PyThreadState' {aka",
"pre_context": " >> 4028 numpy/random/mtrand/mtrand.c:45481:24: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4029 45481 | tmp_type = tstate->exc_type;\n 4030 | ^~~~~~~~\n 4031 | curexc_type",
"post_context": " 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4033 45482 | tmp_value = tstate->exc_value;\n 4034 | ^~~~~~~~~\n 4035 | curexc_value\n >> 4036 numpy/random/mtrand/mtrand.c:45483:22: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 948,
"repeat_count": 0,
"start": 942,
"end": 955,
"text": ">> 4036 numpy/random/mtrand/mtrand.c:45483:22: error: 'PyThreadState' {aka",
"pre_context": " >> 4032 numpy/random/mtrand/mtrand.c:45482:25: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4033 45482 | tmp_value = tstate->exc_value;\n 4034 | ^~~~~~~~~\n 4035 | curexc_value",
"post_context": " 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4037 45483 | tmp_tb = tstate->exc_traceback;\n 4038 | ^~~~~~~~~~~~~\n 4039 | curexc_traceback\n >> 4040 numpy/random/mtrand/mtrand.c:45484:13: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 954,
"repeat_count": 0,
"start": 948,
"end": 961,
"text": ">> 4040 numpy/random/mtrand/mtrand.c:45484:13: error: 'PyThreadState' {aka",
"pre_context": " >> 4036 numpy/random/mtrand/mtrand.c:45483:22: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4037 45483 | tmp_tb = tstate->exc_traceback;\n 4038 | ^~~~~~~~~~~~~\n 4039 | curexc_traceback",
"post_context": " 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4041 45484 | tstate->exc_type = type;\n 4042 | ^~~~~~~~\n 4043 | curexc_type\n >> 4044 numpy/random/mtrand/mtrand.c:45485:13: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 960,
"repeat_count": 0,
"start": 954,
"end": 967,
"text": ">> 4044 numpy/random/mtrand/mtrand.c:45485:13: error: 'PyThreadState' {aka",
"pre_context": " >> 4040 numpy/random/mtrand/mtrand.c:45484:13: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4041 45484 | tstate->exc_type = type;\n 4042 | ^~~~~~~~\n 4043 | curexc_type",
"post_context": " 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4045 45485 | tstate->exc_value = value;\n 4046 | ^~~~~~~~~\n 4047 | curexc_value\n >> 4048 numpy/random/mtrand/mtrand.c:45486:13: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 966,
"repeat_count": 0,
"start": 960,
"end": 973,
"text": ">> 4048 numpy/random/mtrand/mtrand.c:45486:13: error: 'PyThreadState' {aka",
"pre_context": " >> 4044 numpy/random/mtrand/mtrand.c:45485:13: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4045 45485 | tstate->exc_value = value;\n 4046 | ^~~~~~~~~\n 4047 | curexc_value",
"post_context": " 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4049 45486 | tstate->exc_traceback = tb;\n 4050 | ^~~~~~~~~~~~~\n 4051 | curexc_traceback\n 4052 numpy/random/mtrand/mtrand.c: In function '__Pyx__GetException':",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 973,
"repeat_count": 0,
"start": 967,
"end": 980,
"text": ">> 4053 numpy/random/mtrand/mtrand.c:45541:24: error: 'PyThreadState' {aka",
"pre_context": " 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4049 45486 | tstate->exc_traceback = tb;\n 4050 | ^~~~~~~~~~~~~\n 4051 | curexc_traceback\n 4052 numpy/random/mtrand/mtrand.c: In function '__Pyx__GetException':",
"post_context": " 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4054 45541 | tmp_type = tstate->exc_type;\n 4055 | ^~~~~~~~\n 4056 | curexc_type\n >> 4057 numpy/random/mtrand/mtrand.c:45542:25: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 979,
"repeat_count": 0,
"start": 973,
"end": 986,
"text": ">> 4057 numpy/random/mtrand/mtrand.c:45542:25: error: 'PyThreadState' {aka",
"pre_context": " >> 4053 numpy/random/mtrand/mtrand.c:45541:24: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4054 45541 | tmp_type = tstate->exc_type;\n 4055 | ^~~~~~~~\n 4056 | curexc_type",
"post_context": " 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4058 45542 | tmp_value = tstate->exc_value;\n 4059 | ^~~~~~~~~\n 4060 | curexc_value\n >> 4061 numpy/random/mtrand/mtrand.c:45543:22: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 985,
"repeat_count": 0,
"start": 979,
"end": 992,
"text": ">> 4061 numpy/random/mtrand/mtrand.c:45543:22: error: 'PyThreadState' {aka",
"pre_context": " >> 4057 numpy/random/mtrand/mtrand.c:45542:25: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4058 45542 | tmp_value = tstate->exc_value;\n 4059 | ^~~~~~~~~\n 4060 | curexc_value",
"post_context": " 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4062 45543 | tmp_tb = tstate->exc_traceback;\n 4063 | ^~~~~~~~~~~~~\n 4064 | curexc_traceback\n >> 4065 numpy/random/mtrand/mtrand.c:45544:13: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 991,
"repeat_count": 0,
"start": 985,
"end": 998,
"text": ">> 4065 numpy/random/mtrand/mtrand.c:45544:13: error: 'PyThreadState' {aka",
"pre_context": " >> 4061 numpy/random/mtrand/mtrand.c:45543:22: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4062 45543 | tmp_tb = tstate->exc_traceback;\n 4063 | ^~~~~~~~~~~~~\n 4064 | curexc_traceback",
"post_context": " 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4066 45544 | tstate->exc_type = local_type;\n 4067 | ^~~~~~~~\n 4068 | curexc_type\n >> 4069 numpy/random/mtrand/mtrand.c:45545:13: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 997,
"repeat_count": 0,
"start": 991,
"end": 1004,
"text": ">> 4069 numpy/random/mtrand/mtrand.c:45545:13: error: 'PyThreadState' {aka",
"pre_context": " >> 4065 numpy/random/mtrand/mtrand.c:45544:13: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4066 45544 | tstate->exc_type = local_type;\n 4067 | ^~~~~~~~\n 4068 | curexc_type",
"post_context": " 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4070 45545 | tstate->exc_value = local_value;\n 4071 | ^~~~~~~~~\n 4072 | curexc_value\n >> 4073 numpy/random/mtrand/mtrand.c:45546:13: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1003,
"repeat_count": 0,
"start": 997,
"end": 1010,
"text": ">> 4073 numpy/random/mtrand/mtrand.c:45546:13: error: 'PyThreadState' {aka",
"pre_context": " >> 4069 numpy/random/mtrand/mtrand.c:45545:13: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4070 45545 | tstate->exc_value = local_value;\n 4071 | ^~~~~~~~~\n 4072 | curexc_value",
"post_context": " 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4074 45546 | tstate->exc_traceback = local_tb;\n 4075 | ^~~~~~~~~~~~~\n 4076 | curexc_traceback\n 4077 Running from numpy source directory.",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1051,
"repeat_count": 0,
"start": 1045,
"end": 1058,
"text": ">> 4096 numpy/random/mtrand/mtrand.c:45472:21: error: 'PyThreadState' {aka",
"pre_context": " nidc7o5wtbfqu64d3ld/include/python3.8/cpython/object.h:260:30: not\n e: declared here\n 4093 260 | Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *,\n int);\n 4094 | ^~~~~~~~\n 4095 numpy/random/mtrand/mtrand.c: In function '__Pyx__ExceptionSave':",
"post_context": " 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4097 45472 | *type = tstate->exc_type;\n 4098 | ^~~~~~~~\n 4099 | curexc_type\n >> 4100 numpy/random/mtrand/mtrand.c:45473:22: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1057,
"repeat_count": 0,
"start": 1051,
"end": 1064,
"text": ">> 4100 numpy/random/mtrand/mtrand.c:45473:22: error: 'PyThreadState' {aka",
"pre_context": " >> 4096 numpy/random/mtrand/mtrand.c:45472:21: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4097 45472 | *type = tstate->exc_type;\n 4098 | ^~~~~~~~\n 4099 | curexc_type",
"post_context": " 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4101 45473 | *value = tstate->exc_value;\n 4102 | ^~~~~~~~~\n 4103 | curexc_value\n >> 4104 numpy/random/mtrand/mtrand.c:45474:19: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1063,
"repeat_count": 0,
"start": 1057,
"end": 1070,
"text": ">> 4104 numpy/random/mtrand/mtrand.c:45474:19: error: 'PyThreadState' {aka",
"pre_context": " >> 4100 numpy/random/mtrand/mtrand.c:45473:22: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4101 45473 | *value = tstate->exc_value;\n 4102 | ^~~~~~~~~\n 4103 | curexc_value",
"post_context": " 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4105 45474 | *tb = tstate->exc_traceback;\n 4106 | ^~~~~~~~~~~~~\n 4107 | curexc_traceback\n 4108 numpy/random/mtrand/mtrand.c: In function '__Pyx__ExceptionReset':",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1070,
"repeat_count": 0,
"start": 1064,
"end": 1077,
"text": ">> 4109 numpy/random/mtrand/mtrand.c:45481:24: error: 'PyThreadState' {aka",
"pre_context": " 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4105 45474 | *tb = tstate->exc_traceback;\n 4106 | ^~~~~~~~~~~~~\n 4107 | curexc_traceback\n 4108 numpy/random/mtrand/mtrand.c: In function '__Pyx__ExceptionReset':",
"post_context": " 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4110 45481 | tmp_type = tstate->exc_type;\n 4111 | ^~~~~~~~\n 4112 | curexc_type\n >> 4113 numpy/random/mtrand/mtrand.c:45482:25: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1076,
"repeat_count": 0,
"start": 1070,
"end": 1083,
"text": ">> 4113 numpy/random/mtrand/mtrand.c:45482:25: error: 'PyThreadState' {aka",
"pre_context": " >> 4109 numpy/random/mtrand/mtrand.c:45481:24: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4110 45481 | tmp_type = tstate->exc_type;\n 4111 | ^~~~~~~~\n 4112 | curexc_type",
"post_context": " 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4114 45482 | tmp_value = tstate->exc_value;\n 4115 | ^~~~~~~~~\n 4116 | curexc_value\n >> 4117 numpy/random/mtrand/mtrand.c:45483:22: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1082,
"repeat_count": 0,
"start": 1076,
"end": 1089,
"text": ">> 4117 numpy/random/mtrand/mtrand.c:45483:22: error: 'PyThreadState' {aka",
"pre_context": " >> 4113 numpy/random/mtrand/mtrand.c:45482:25: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4114 45482 | tmp_value = tstate->exc_value;\n 4115 | ^~~~~~~~~\n 4116 | curexc_value",
"post_context": " 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4118 45483 | tmp_tb = tstate->exc_traceback;\n 4119 | ^~~~~~~~~~~~~\n 4120 | curexc_traceback\n >> 4121 numpy/random/mtrand/mtrand.c:45484:13: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1088,
"repeat_count": 0,
"start": 1082,
"end": 1095,
"text": ">> 4121 numpy/random/mtrand/mtrand.c:45484:13: error: 'PyThreadState' {aka",
"pre_context": " >> 4117 numpy/random/mtrand/mtrand.c:45483:22: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4118 45483 | tmp_tb = tstate->exc_traceback;\n 4119 | ^~~~~~~~~~~~~\n 4120 | curexc_traceback",
"post_context": " 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4122 45484 | tstate->exc_type = type;\n 4123 | ^~~~~~~~\n 4124 | curexc_type\n >> 4125 numpy/random/mtrand/mtrand.c:45485:13: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1094,
"repeat_count": 0,
"start": 1088,
"end": 1101,
"text": ">> 4125 numpy/random/mtrand/mtrand.c:45485:13: error: 'PyThreadState' {aka",
"pre_context": " >> 4121 numpy/random/mtrand/mtrand.c:45484:13: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4122 45484 | tstate->exc_type = type;\n 4123 | ^~~~~~~~\n 4124 | curexc_type",
"post_context": " 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4126 45485 | tstate->exc_value = value;\n 4127 | ^~~~~~~~~\n 4128 | curexc_value\n >> 4129 numpy/random/mtrand/mtrand.c:45486:13: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1100,
"repeat_count": 0,
"start": 1094,
"end": 1107,
"text": ">> 4129 numpy/random/mtrand/mtrand.c:45486:13: error: 'PyThreadState' {aka",
"pre_context": " >> 4125 numpy/random/mtrand/mtrand.c:45485:13: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4126 45485 | tstate->exc_value = value;\n 4127 | ^~~~~~~~~\n 4128 | curexc_value",
"post_context": " 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4130 45486 | tstate->exc_traceback = tb;\n 4131 | ^~~~~~~~~~~~~\n 4132 | curexc_traceback\n 4133 numpy/random/mtrand/mtrand.c: In function '__Pyx__GetException':",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1107,
"repeat_count": 0,
"start": 1101,
"end": 1114,
"text": ">> 4134 numpy/random/mtrand/mtrand.c:45541:24: error: 'PyThreadState' {aka",
"pre_context": " 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4130 45486 | tstate->exc_traceback = tb;\n 4131 | ^~~~~~~~~~~~~\n 4132 | curexc_traceback\n 4133 numpy/random/mtrand/mtrand.c: In function '__Pyx__GetException':",
"post_context": " 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4135 45541 | tmp_type = tstate->exc_type;\n 4136 | ^~~~~~~~\n 4137 | curexc_type\n >> 4138 numpy/random/mtrand/mtrand.c:45542:25: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1113,
"repeat_count": 0,
"start": 1107,
"end": 1120,
"text": ">> 4138 numpy/random/mtrand/mtrand.c:45542:25: error: 'PyThreadState' {aka",
"pre_context": " >> 4134 numpy/random/mtrand/mtrand.c:45541:24: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4135 45541 | tmp_type = tstate->exc_type;\n 4136 | ^~~~~~~~\n 4137 | curexc_type",
"post_context": " 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4139 45542 | tmp_value = tstate->exc_value;\n 4140 | ^~~~~~~~~\n 4141 | curexc_value\n >> 4142 numpy/random/mtrand/mtrand.c:45543:22: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1119,
"repeat_count": 0,
"start": 1113,
"end": 1126,
"text": ">> 4142 numpy/random/mtrand/mtrand.c:45543:22: error: 'PyThreadState' {aka",
"pre_context": " >> 4138 numpy/random/mtrand/mtrand.c:45542:25: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4139 45542 | tmp_value = tstate->exc_value;\n 4140 | ^~~~~~~~~\n 4141 | curexc_value",
"post_context": " 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4143 45543 | tmp_tb = tstate->exc_traceback;\n 4144 | ^~~~~~~~~~~~~\n 4145 | curexc_traceback\n >> 4146 numpy/random/mtrand/mtrand.c:45544:13: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1125,
"repeat_count": 0,
"start": 1119,
"end": 1132,
"text": ">> 4146 numpy/random/mtrand/mtrand.c:45544:13: error: 'PyThreadState' {aka",
"pre_context": " >> 4142 numpy/random/mtrand/mtrand.c:45543:22: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4143 45543 | tmp_tb = tstate->exc_traceback;\n 4144 | ^~~~~~~~~~~~~\n 4145 | curexc_traceback",
"post_context": " 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4147 45544 | tstate->exc_type = local_type;\n 4148 | ^~~~~~~~\n 4149 | curexc_type\n >> 4150 numpy/random/mtrand/mtrand.c:45545:13: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1131,
"repeat_count": 0,
"start": 1125,
"end": 1138,
"text": ">> 4150 numpy/random/mtrand/mtrand.c:45545:13: error: 'PyThreadState' {aka",
"pre_context": " >> 4146 numpy/random/mtrand/mtrand.c:45544:13: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_type'; did you mean 'curex\n c_type'?\n 4147 45544 | tstate->exc_type = local_type;\n 4148 | ^~~~~~~~\n 4149 | curexc_type",
"post_context": " 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4151 45545 | tstate->exc_value = local_value;\n 4152 | ^~~~~~~~~\n 4153 | curexc_value\n >> 4154 numpy/random/mtrand/mtrand.c:45546:13: error: 'PyThreadState' {aka",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 1137,
"repeat_count": 0,
"start": 1131,
"end": 1144,
"text": ">> 4154 numpy/random/mtrand/mtrand.c:45546:13: error: 'PyThreadState' {aka",
"pre_context": " >> 4150 numpy/random/mtrand/mtrand.c:45545:13: error: 'PyThreadState' {aka\n 'struct _ts'} has no member named 'exc_value'; did you mean 'cure\n xc_value'?\n 4151 45545 | tstate->exc_value = local_value;\n 4152 | ^~~~~~~~~\n 4153 | curexc_value",
"post_context": " 'struct _ts'} has no member named 'exc_traceback'; did you mean '\n curexc_traceback'?\n 4155 45546 | tstate->exc_traceback = local_tb;\n 4156 | ^~~~~~~~~~~~~\n 4157 | curexc_traceback\n >> 4158 error: Command \"/p/vast1/koparasy/BUILD/head/spack/lib/spack/env/g",
"hash": "2dwpnunwmhptwdeib53tcisbtktbwyuw"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 657,
"repeat_count": 0,
"start": 651,
"end": 664,
"text": ">> 100 collect2: error: ld returned 1 exit status",
"pre_context": " st.o -o _configtest\n 98 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 99 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.13.1-5tt7xjmu52za\n uct7tscq4r3qjpp5g4lw/spack-src/_configtest.c:6: undefined referenc\n e to `exp'",
"post_context": " 101 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 102 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.13.1-5tt7xjmu52za\n uct7tscq4r3qjpp5g4lw/spack-src/_configtest.c:6: undefined referenc\n e to `exp'\n >> 103 collect2: error: ld returned 1 exit status",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 663,
"repeat_count": 0,
"start": 657,
"end": 670,
"text": ">> 103 collect2: error: ld returned 1 exit status",
"pre_context": " >> 100 collect2: error: ld returned 1 exit status\n 101 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 102 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.13.1-5tt7xjmu52za\n uct7tscq4r3qjpp5g4lw/spack-src/_configtest.c:6: undefined referenc\n e to `exp'",
"post_context": " 104 failure.\n 105 removing: _configtest.c _configtest.o\n 106 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 107",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 693,
"repeat_count": 0,
"start": 687,
"end": 700,
"text": ">> 157 _configtest.c:1:10: fatal error: sys/endian.h: No such file or dir",
"pre_context": " y/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inump\n y/core/src/umath -Inumpy/core/src/npysort -I/p/vast1/koparasy/BUIL\n D/spack_cluster_installer/quartz/nrm/spack_env_dir/linux-rhel7-bro\n adwell/gcc-9.3.1/python-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/in\n clude/python3.8 -c'\n 156 gcc: _configtest.c",
"post_context": " ectory\n 158 1 | #include <sys/endian.h>\n 159 | ^~~~~~~~~~~~~~\n 160 compilation terminated.\n >> 161 _configtest.c:1:10: fatal error: sys/endian.h: No such file or dir\n ectory",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 698,
"repeat_count": 0,
"start": 692,
"end": 705,
"text": ">> 161 _configtest.c:1:10: fatal error: sys/endian.h: No such file or dir",
"pre_context": " 156 gcc: _configtest.c\n >> 157 _configtest.c:1:10: fatal error: sys/endian.h: No such file or dir\n ectory\n 158 1 | #include <sys/endian.h>\n 159 | ^~~~~~~~~~~~~~\n 160 compilation terminated.",
"post_context": " ectory\n 162 1 | #include <sys/endian.h>\n 163 | ^~~~~~~~~~~~~~\n 164 compilation terminated.\n 165 failure.\n 166 removing: _configtest.c _configtest.o",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 724,
"repeat_count": 0,
"start": 718,
"end": 731,
"text": ">> 274 _configtest.c:7:12: error: 'SIZEOF_LONGDOUBLE' undeclared (first u",
"pre_context": " y/core/src/umath -Inumpy/core/src/npysort -I/p/vast1/koparasy/BUIL\n D/spack_cluster_installer/quartz/nrm/spack_env_dir/linux-rhel7-bro\n adwell/gcc-9.3.1/python-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/in\n clude/python3.8 -c'\n 272 gcc: _configtest.c\n 273 _configtest.c: In function 'main':",
"post_context": " se in this function); did you mean 'SIZEOF_LONG_DOUBLE'?\n 275 7 | (void) SIZEOF_LONGDOUBLE;\n 276 | ^~~~~~~~~~~~~~~~~\n 277 | SIZEOF_LONG_DOUBLE\n 278 _configtest.c:7:12: note: each undeclared identifier is reported o\n nly once for each function it appears in",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 732,
"repeat_count": 0,
"start": 726,
"end": 739,
"text": ">> 280 _configtest.c:7:12: error: 'SIZEOF_LONGDOUBLE' undeclared (first u",
"pre_context": " 275 7 | (void) SIZEOF_LONGDOUBLE;\n 276 | ^~~~~~~~~~~~~~~~~\n 277 | SIZEOF_LONG_DOUBLE\n 278 _configtest.c:7:12: note: each undeclared identifier is reported o\n nly once for each function it appears in\n 279 _configtest.c: In function 'main':",
"post_context": " se in this function); did you mean 'SIZEOF_LONG_DOUBLE'?\n 281 7 | (void) SIZEOF_LONGDOUBLE;\n 282 | ^~~~~~~~~~~~~~~~~\n 283 | SIZEOF_LONG_DOUBLE\n 284 _configtest.c:7:12: note: each undeclared identifier is reported o\n nly once for each function it appears in",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 755,
"repeat_count": 0,
"start": 749,
"end": 762,
"text": ">> 420 collect2: error: ld returned 1 exit status",
"pre_context": " st.o -o _configtest\n 418 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 419 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.13.1-5tt7xjmu52za\n uct7tscq4r3qjpp5g4lw/spack-src/_configtest.c:6: undefined referenc\n e to `exp'",
"post_context": " 421 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 422 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.13.1-5tt7xjmu52za\n uct7tscq4r3qjpp5g4lw/spack-src/_configtest.c:6: undefined referenc\n e to `exp'\n >> 423 collect2: error: ld returned 1 exit status",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 761,
"repeat_count": 0,
"start": 755,
"end": 768,
"text": ">> 423 collect2: error: ld returned 1 exit status",
"pre_context": " >> 420 collect2: error: ld returned 1 exit status\n 421 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 422 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.13.1-5tt7xjmu52za\n uct7tscq4r3qjpp5g4lw/spack-src/_configtest.c:6: undefined referenc\n e to `exp'",
"post_context": " 424 failure.\n 425 removing: _configtest.c _configtest.o\n 426 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 427",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 790,
"repeat_count": 0,
"start": 784,
"end": 797,
"text": ">> 857 _configtest.c:5:24: error: expected declaration specifiers before",
"pre_context": " 852 gcc: _configtest.c\n 853 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk\n nown-pragmas]\n 854 3 | #pragma clang diagnostic error \"-Wattributes\"\n 855 |\n 856 _configtest.c: In function '__declspec':",
"post_context": " 'foo'\n 858 5 | int __declspec(thread) foo;\n 859 | ^~~\n >> 860 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 861 9 | {",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 794,
"repeat_count": 0,
"start": 788,
"end": 801,
"text": ">> 860 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr",
"pre_context": " 855 |\n 856 _configtest.c: In function '__declspec':\n >> 857 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'\n 858 5 | int __declspec(thread) foo;\n 859 | ^~~",
"post_context": " ibute__' before '{' token\n 861 9 | {\n 862 | ^\n 863 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W\n implicit-int]\n 864 5 | int __declspec(thread) foo;",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 802,
"repeat_count": 0,
"start": 796,
"end": 809,
"text": ">> 866 _configtest.c:11: error: expected '{' at end of input",
"pre_context": " 861 9 | {\n 862 | ^\n 863 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W\n implicit-int]\n 864 5 | int __declspec(thread) foo;\n 865 | ^~~~~~~~~~",
"post_context": " 867 11 | }\n 868 |\n 869 _configtest.c:11: warning: control reaches end of non-void functio\n n [-Wreturn-type]\n 870 11 | }\n 871 |",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 814,
"repeat_count": 0,
"start": 808,
"end": 821,
"text": ">> 876 _configtest.c:5:24: error: expected declaration specifiers before",
"pre_context": " 871 |\n 872 _configtest.c:3: warning: ignoring #pragma clang diagnostic [-Wunk\n nown-pragmas]\n 873 3 | #pragma clang diagnostic error \"-Wattributes\"\n 874 |\n 875 _configtest.c: In function '__declspec':",
"post_context": " 'foo'\n 877 5 | int __declspec(thread) foo;\n 878 | ^~~\n >> 879 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr\n ibute__' before '{' token\n 880 9 | {",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 818,
"repeat_count": 0,
"start": 812,
"end": 825,
"text": ">> 879 _configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attr",
"pre_context": " 874 |\n 875 _configtest.c: In function '__declspec':\n >> 876 _configtest.c:5:24: error: expected declaration specifiers before\n 'foo'\n 877 5 | int __declspec(thread) foo;\n 878 | ^~~",
"post_context": " ibute__' before '{' token\n 880 9 | {\n 881 | ^\n 882 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W\n implicit-int]\n 883 5 | int __declspec(thread) foo;",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 826,
"repeat_count": 0,
"start": 820,
"end": 833,
"text": ">> 885 _configtest.c:11: error: expected '{' at end of input",
"pre_context": " 880 9 | {\n 881 | ^\n 882 _configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-W\n implicit-int]\n 883 5 | int __declspec(thread) foo;\n 884 | ^~~~~~~~~~",
"post_context": " 886 11 | }\n 887 |\n 888 _configtest.c:11: warning: control reaches end of non-void functio\n n [-Wreturn-type]\n 889 11 | }\n 890 |",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 850,
"repeat_count": 0,
"start": 844,
"end": 857,
"text": ">> 1220 _configtest.c:8:12: error: 'HAVE_DECL_SIGNBIT' undeclared (first u",
"pre_context": " y/core/src/umath -Inumpy/core/src/npysort -I/p/vast1/koparasy/BUIL\n D/spack_cluster_installer/quartz/nrm/spack_env_dir/linux-rhel7-bro\n adwell/gcc-9.3.1/python-3.8.12-zq6ku5weq2g2lnidc7o5wtbfqu64d3ld/in\n clude/python3.8 -c'\n 1218 gcc: _configtest.c\n 1219 _configtest.c: In function 'main':",
"post_context": " se in this function); did you mean 'HAVE_DECL_ISNAN'?\n 1221 8 | (void) HAVE_DECL_SIGNBIT;\n 1222 | ^~~~~~~~~~~~~~~~~\n 1223 | HAVE_DECL_ISNAN\n 1224 _configtest.c:8:12: note: each undeclared identifier is reported o\n nly once for each function it appears in",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 858,
"repeat_count": 0,
"start": 852,
"end": 865,
"text": ">> 1226 _configtest.c:8:12: error: 'HAVE_DECL_SIGNBIT' undeclared (first u",
"pre_context": " 1221 8 | (void) HAVE_DECL_SIGNBIT;\n 1222 | ^~~~~~~~~~~~~~~~~\n 1223 | HAVE_DECL_ISNAN\n 1224 _configtest.c:8:12: note: each undeclared identifier is reported o\n nly once for each function it appears in\n 1225 _configtest.c: In function 'main':",
"post_context": " se in this function); did you mean 'HAVE_DECL_ISNAN'?\n 1227 8 | (void) HAVE_DECL_SIGNBIT;\n 1228 | ^~~~~~~~~~~~~~~~~\n 1229 | HAVE_DECL_ISNAN\n 1230 _configtest.c:8:12: note: each undeclared identifier is reported o\n nly once for each function it appears in",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 881,
"repeat_count": 0,
"start": 875,
"end": 888,
"text": ">> 1814 collect2: error: ld returned 1 exit status",
"pre_context": " st.o -o _configtest\n 1812 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 1813 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.13.1-5tt7xjmu52za\n uct7tscq4r3qjpp5g4lw/spack-src/_configtest.c:6: undefined referenc\n e to `exp'",
"post_context": " 1815 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 1816 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.13.1-5tt7xjmu52za\n uct7tscq4r3qjpp5g4lw/spack-src/_configtest.c:6: undefined referenc\n e to `exp'\n >> 1817 collect2: error: ld returned 1 exit status",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 887,
"repeat_count": 0,
"start": 881,
"end": 894,
"text": ">> 1817 collect2: error: ld returned 1 exit status",
"pre_context": " >> 1814 collect2: error: ld returned 1 exit status\n 1815 /usr/tce/packages/gcc/gcc-9.3.1/rh/usr/bin/../libexec/gcc/x86_64-r\n edhat-linux/9/ld: _configtest.o: in function `main':\n >> 1816 /tmp/koparasy/spack-stage/spack-stage-py-numpy-1.13.1-5tt7xjmu52za\n uct7tscq4r3qjpp5g4lw/spack-src/_configtest.c:6: undefined referenc\n e to `exp'",
"post_context": " 1818 failure.\n 1819 removing: _configtest.c _configtest.o\n 1820 C compiler: /p/vast1/koparasy/BUILD/head/spack/lib/spack/env/gcc/g\n cc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall\n -fPIC -fPIC\n 1821",
"hash": "73r5duw42kgcqcxpohcfo4ju7ce3qxbd"
},
{
"phase": "N/A",
"source_file": [
null
],
"source_line_no": 0,
"line_no": 918,
"repeat_count": 0,
"start": 912,