-
Notifications
You must be signed in to change notification settings - Fork 0
/
_log_oprofile.txt
2022 lines (2022 loc) · 186 KB
/
_log_oprofile.txt
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
[ 0s] Using BUILD_ROOT=/var/cache/obs/worker/root_21/.mount
[ 0s] Using BUILD_ARCH=riscv64
[ 0s] Doing kvm build in /var/cache/obs/worker/root_21/root
[ 0s]
[ 0s]
[ 0s] i03-ch2a started "build oprofile.spec" at Fri Mar 22 06:35:51 UTC 2024.
[ 0s]
[ 0s] Building oprofile for project 'home:wangyuxuan' repository 'openSUSE_Factory_RISCV' arch 'riscv64' srcmd5 '36079049ab6f8ec0d0d3de0e78662243'
[ 0s]
[ 0s] processing recipe /var/cache/obs/worker/root_21/.build-srcdir/oprofile.spec ...
[ 0s] running changelog2spec --target rpm --file /var/cache/obs/worker/root_21/.build-srcdir/oprofile.spec
[ 0s] init_buildsystem --configdir /var/run/obs/worker/21/build/configs --cachedir /var/cache/build --prepare --clean --rpmlist /var/cache/obs/worker/root_21/.build.rpmlist /var/cache/obs/worker/root_21/.build-srcdir/oprofile.spec build ...
[ 0s] cycle: rpm-config-SUSE -> rpm
[ 0s] breaking dependency rpm-config-SUSE -> rpm
[ 0s] [1/34] preinstalling filesystem...
[ 0s] [2/34] preinstalling permissions...
[ 0s] [3/34] preinstalling glibc...
[ 0s] [4/34] preinstalling diffutils...
[ 0s] [5/34] preinstalling fillup...
[ 0s] [6/34] preinstalling libacl1...
[ 0s] [7/34] preinstalling libattr1...
[ 1s] [8/34] preinstalling libbz2-1...
[ 1s] [9/34] preinstalling libcap2...
[ 1s] [10/34] preinstalling libgcc_s1...
[ 1s] [11/34] preinstalling libgpg-error0...
[ 1s] [12/34] preinstalling liblua5_4-5...
[ 1s] [13/34] preinstalling liblzma5...
[ 1s] [14/34] preinstalling libpcre2-8-0...
[ 1s] [15/34] preinstalling libpopt0...
[ 1s] [16/34] preinstalling libz1...
[ 1s] [17/34] preinstalling libzstd1...
[ 1s] [18/34] preinstalling attr...
[ 1s] [19/34] preinstalling libgcrypt20...
[ 1s] [20/34] preinstalling libncurses6...
[ 1s] [21/34] preinstalling libselinux1...
[ 1s] [22/34] preinstalling libelf1...
[ 1s] [23/34] preinstalling libreadline8...
[ 1s] [24/34] preinstalling sed...
[ 1s] [25/34] preinstalling tar...
[ 1s] [26/34] preinstalling bash...
[ 1s] [27/34] preinstalling bash-sh...
[ 1s] [28/34] preinstalling qemu-linux-user...
[ 1s] [29/34] preinstalling grep...
[ 1s] [30/34] preinstalling pam...
[ 1s] [31/34] preinstalling coreutils...
[ 1s] [32/34] preinstalling aaa_base...
[ 1s] [33/34] preinstalling rpm-config-SUSE...
[ 1s] [34/34] preinstalling rpm...
[ 1s]
[ 1s] [1/9] preinstalling kernel-obs-build...
[ 1s] [2/9] preinstalling libblkid1...
[ 1s] [3/9] preinstalling libcrypt1...
[ 1s] [4/9] preinstalling libdb-4_8...
[ 1s] [5/9] preinstalling libsmartcols1...
[ 1s] [6/9] preinstalling libuuid1...
[ 1s] [7/9] preinstalling libmount1...
[ 1s] [8/9] preinstalling perl-base...
[ 2s] [9/9] preinstalling util-linux...
[ 2s] copying packages...
[ 2s] reordering...cycle: libncurses6 -> terminfo-base
[ 2s] breaking dependency terminfo-base -> libncurses6
[ 2s] cycle: binutils -> libctf0
[ 2s] breaking dependency binutils -> libctf0
[ 2s] cycle: fontconfig -> libfontconfig1
[ 2s] breaking dependency libfontconfig1 -> fontconfig
[ 2s] cycle: rpm-config-SUSE -> rpm
[ 2s] breaking dependency rpm-config-SUSE -> rpm
[ 2s] cycle: libsoftokn3 -> mozilla-nss
[ 2s] breaking dependency mozilla-nss -> libsoftokn3
[ 2s] done
[ 2s] Detected virtio-serial support
[ 3s] booting kvm...
[ 3s] ### VM INTERACTION START ###
[ 3s] Using virtio-serial support and enabling console input
[ 3s] /usr/bin/qemu-kvm -nodefaults -no-reboot -nographic -vga none -cpu host -M pc,accel=kvm,usb=off,dump-guest-core=off,vmport=off -sandbox on -bios /usr/share/qemu/qboot.rom -object rng-random,filename=/dev/random,id=rng0 -device virtio-rng-pci,rng=rng0 -object iothread,id=io0 -runas qemu -net none -kernel /var/cache/obs/worker/root_21/.mount/boot/kernel -initrd /var/cache/obs/worker/root_21/.mount/boot/initrd -append root=/dev/disk/by-id/virtio-0 rootfstype=ext4 rootflags=noatime elevator=noop nmi_watchdog=0 rw ia32_emulation=1 oops=panic panic=1 quiet console=hvc0 init=/.build/initvm.x86_64 -m 16384 -drive file=/var/cache/obs/worker/root_21/root,format=raw,if=none,id=disk,cache=unsafe,aio=io_uring -device virtio-blk-pci,iothread=io0,drive=disk,serial=0 -drive file=/var/cache/obs/worker/root_21/swap,format=raw,if=none,id=swap,cache=unsafe,aio=io_uring -device virtio-blk-pci,iothread=io0,drive=swap,serial=1 -device virtio-serial,max_ports=2 -device virtconsole,chardev=virtiocon0 -chardev stdio,mux=on,id=virtiocon0 -mon chardev=virtiocon0 -chardev socket,id=monitor,server=on,wait=off,path=/var/cache/obs/worker/root_21/root.qemu/monitor -mon chardev=monitor,mode=readline -smp 4
[ 4s] [ 0.699019][ T1] systemd[1]: Failed to start Virtual Console Setup.
[ 4s] [[0;1;31mFAILED[0m] Failed to start [0;1;39mVirtual Console Setup[0m.
[ 4s] [ 0.938639] dracut-pre-udev[308]: sh: line 1: /usr/lib/module-init-tools/unblacklist: No such file or directory
[ 5s] [[0;1;31mFAILED[0m] Failed to start [0;1;39mVirtual Console Setup[0m.
[ 6s] ### VM INTERACTION END ###
[ 6s] 2nd stage started in virtual machine
[ 6s] machine type: riscv64
[ 6s] Linux version: 6.8.1-1-default #1 SMP PREEMPT_DYNAMIC Tue Mar 19 07:32:20 UTC 2024 (d922afa)
[ 6s] Time: Fri Mar 22 06:35:56 UTC 2024
[ 6s] Increasing log level from now on...
[ 6s] [ 2.535835][ T409] sysrq: Changing Loglevel
[ 6s] [ 2.535892][ T409] sysrq: Loglevel set to 4
[ 6s] Enable sysrq operations
[ 6s] Setting up swapspace version 1, size = 4 GiB (4294963200 bytes)
[ 6s] no label, UUID=b68b211f-1ed8-4dc9-b802-3a756ffdfc6d
[ 6s] swapon: /dev/vdb: found signature [pagesize=4096, signature=swap]
[ 6s] swapon: /dev/vdb: pagesize=4096, swapsize=4294967296, devsize=4294967296
[ 6s] swapon /dev/vdb
[ 6s] WARNING: udev not running, creating extra device nodes
[ 6s] logging output to //.build.log...
[ 6s] processing recipe /.build-srcdir/oprofile.spec ...
[ 6s] init_buildsystem --configdir /.build/configs --cachedir /var/cache/build /.build-srcdir/oprofile.spec build ...
[ 7s] initializing rpm db...
[ 7s] querying package ids...
[ 13s] [1/191] cumulate compat-usrmerge-tools-84.87-5.4
[ 13s] [2/191] cumulate file-magic-5.45-2.1
[ 13s] [3/191] cumulate javapackages-filesystem-6.2.0-4.1
[ 13s] [4/191] cumulate kernel-obs-build-6.8.1-1.1
[ 13s] [5/191] cumulate libX11-data-1.8.7-3.1
[ 13s] [6/191] cumulate libsemanage-conf-3.6-1.2
[ 13s] [7/191] cumulate pkgconf-m4-2.1.1-1.1
[ 13s] [8/191] cumulate system-user-root-20190513-2.3
[ 13s] [9/191] cumulate javapackages-tools-6.2.0-4.1
[ 13s] [10/191] cumulate filesystem-84.87-15.1
[ 13s] [11/191] cumulate glibc-2.39-4.1
[ 13s] [12/191] cumulate diffutils-3.10-1.2
[ 13s] [13/191] cumulate fillup-1.42-281.1
[ 13s] [14/191] cumulate libICE6-1.1.1-1.2
[ 13s] [15/191] cumulate libXau6-1.0.11-1.2
[ 13s] [16/191] cumulate libacl1-2.3.2-1.1
[ 13s] [17/191] cumulate libasound2-1.2.11-1.1
[ 13s] [18/191] cumulate libatomic1-14.0.1+git9355-1.1
[ 13s] [19/191] cumulate libattr1-2.5.2-1.1
[ 13s] [20/191] cumulate libaudit1-3.1.1-1.2
[ 13s] [21/191] cumulate libblkid1-2.39.3-4.1
[ 13s] [22/191] cumulate libbrotlicommon1-1.1.0-1.1
[ 13s] [23/191] cumulate libbz2-1-1.0.8-5.2
[ 13s] [24/191] cumulate libcap-ng0-0.8.4-1.2
[ 13s] [25/191] cumulate libcap2-2.69-1.2
[ 13s] [26/191] cumulate libcrypt1-4.4.36-1.2
[ 13s] [27/191] cumulate libeconf0-0.6.2-1.1
[ 13s] [28/191] cumulate libexpat1-2.6.2-1.1
[ 13s] [29/191] cumulate libffi8-3.4.6-1.1
[ 13s] [30/191] cumulate libfreebl3-3.97-2.1
[ 13s] [31/191] cumulate libgcc_s1-14.0.1+git9355-1.1
[ 13s] [32/191] cumulate libgdbm6-1.23-3.2
[ 13s] [33/191] cumulate libgif7-5.2.2-1.1
[ 13s] [34/191] cumulate libgmp10-6.3.0-3.1
[ 13s] [35/191] cumulate libgomp1-14.0.1+git9355-1.1
[ 13s] [36/191] cumulate libgpg-error0-1.48-1.1
[ 13s] [37/191] cumulate libitm1-14.0.1+git9355-1.1
[ 13s] [38/191] cumulate libjpeg8-8.3.2-79.1
[ 13s] [39/191] cumulate liblcms2-2-2.16-1.1
[ 13s] [40/191] cumulate libltdl7-2.4.7-3.4
[ 13s] [41/191] cumulate liblua5_4-5-5.4.6-3.2
[ 13s] [42/191] cumulate liblzma5-5.6.1-1.1
[ 13s] [43/191] cumulate libpcre2-8-0-10.43-1.1
[ 13s] [44/191] cumulate libpcsclite1-2.0.3-1.1
[ 13s] [45/191] cumulate libpkgconf4-2.1.1-1.1
[ 13s] [46/191] cumulate libpopt0-1.19-1.3
[ 13s] [47/191] cumulate libseccomp2-2.5.5-1.2
[ 13s] [48/191] cumulate libsepol2-3.6-1.2
[ 13s] [49/191] cumulate libsmartcols1-2.39.3-4.1
[ 13s] [50/191] cumulate libsqlite3-0-3.45.2-1.1
[ 13s] [51/191] cumulate libtasn1-6-4.19.0-1.2
[ 13s] [52/191] cumulate libuuid1-2.39.3-4.1
[ 13s] [53/191] cumulate libz1-1.3.1-1.1
[ 13s] [54/191] cumulate libzstd1-1.5.5-6.1
[ 13s] [55/191] cumulate mozilla-nspr-4.35-1.2
[ 13s] [56/191] cumulate patch-2.7.6-7.1
[ 13s] [57/191] cumulate update-alternatives-1.22.5-1.1
[ 13s] [58/191] cumulate attr-2.5.2-1.1
[ 13s] [59/191] cumulate libbrotlidec1-1.1.0-1.1
[ 13s] [60/191] cumulate libctf-nobfd0-2.42-2.1
[ 13s] [61/191] cumulate libgcrypt20-1.10.3-3.2
[ 13s] [62/191] cumulate libgdbm_compat4-1.23-3.2
[ 13s] [63/191] cumulate libisl23-0.26-1.2
[ 13s] [64/191] cumulate libmpfr6-4.2.1-1.2
[ 13s] [65/191] cumulate libp11-kit0-0.25.3-1.1
[ 13s] [66/191] cumulate libpng16-16-1.6.43-1.1
[ 13s] [67/191] cumulate libselinux1-3.6-1.2
[ 13s] [68/191] cumulate libstdc++6-14.0.1+git9355-1.1
[ 13s] [69/191] cumulate libxcb1-1.16.1-3.1
[ 13s] [70/191] cumulate mozilla-nss-certs-3.97-2.1
[ 13s] [71/191] cumulate perl-base-5.38.2-2.1
[ 13s] [72/191] cumulate pkgconf-2.1.1-1.1
[ 13s] [73/191] cumulate chkstat-1699_20240307-1.1
[ 13s] [74/191] cumulate libelf1-0.191-1.1
[ 13s] [75/191] cumulate libfdisk1-2.39.3-4.1
[ 13s] [76/191] cumulate libxml2-2-2.11.6-2.1
[ 13s] [77/191] cumulate libmagic1-5.45-2.1
[ 13s] [78/191] cumulate build-mkbaselibs-20240313-1.1
[ 13s] [79/191] cumulate rpm-build-perl-4.19.1.1-3.1
[ 13s] [80/191] cumulate dwz-0.15-3.1
[ 13s] [81/191] cumulate findutils-4.9.0-4.1
[ 13s] [82/191] cumulate libxslt1-1.1.39-1.1
[ 13s] [83/191] cumulate fdupes-2.3.0-1.1
[ 13s] [84/191] cumulate file-5.45-2.1
[ 13s] [85/191] cumulate libX11-6-1.8.7-3.1
[ 13s] [86/191] cumulate libasan8-14.0.1+git9355-1.1
[ 13s] [87/191] cumulate libdb-4_8-4.8.30-43.1
[ 13s] [88/191] cumulate libmount1-2.39.3-4.1
[ 13s] [89/191] cumulate libmpc3-1.3.1-1.4
[ 13s] [90/191] cumulate libsubid4-4.14.6-1.1
[ 13s] [91/191] cumulate libubsan1-14.0.1+git9355-1.1
[ 13s] [92/191] cumulate p11-kit-0.25.3-1.1
[ 13s] [93/191] cumulate p11-kit-tools-0.25.3-1.1
[ 13s] [94/191] cumulate sed-4.9-2.2
[ 13s] [95/191] cumulate tar-1.35-2.1
[ 13s] [96/191] cumulate libfreetype6-2.13.2-2.1
[ 13s] [97/191] cumulate libdw1-0.191-1.1
[ 13s] [98/191] cumulate libsemanage2-3.6-1.2
[ 13s] [99/191] cumulate libXext6-1.3.6-1.1
[ 13s] [100/191] cumulate libXrender1-0.9.11-1.2
[ 13s] [101/191] cumulate libasm1-0.191-1.1
[ 13s] [102/191] cumulate libexslt0-1.1.39-1.1
[ 13s] [103/191] cumulate cpp13-13.2.1+git8285-3.1
[ 13s] [104/191] cumulate perl-5.38.2-2.1
[ 13s] [105/191] cumulate brp-check-suse-84.87+git20230324.8680ce4-1.1
[ 13s] [106/191] cumulate perl-SGMLS-1.1-1.11
[ 13s] [107/191] cumulate libXi6-1.8.1-1.1
[ 13s] [108/191] cumulate libXtst6-1.2.4-1.2
[ 13s] [109/191] cumulate libxslt-tools-1.1.39-1.1
[ 13s] [110/191] cumulate terminfo-base-6.4.20240224-32.1
[ 13s] [111/191] cumulate libfontconfig1-2.15.0-1.1
[ 13s] [112/191] cumulate mozilla-nss-3.97-2.1
[ 13s] [113/191] cumulate fontconfig-2.15.0-1.1
[ 13s] [114/191] cumulate libncurses6-6.4.20240224-32.1
[ 13s] [115/191] cumulate libsoftokn3-3.97-2.1
[ 13s] [116/191] cumulate libreadline8-8.2.10-1.2
[ 13s] [117/191] cumulate ncurses-utils-6.4.20240224-32.1
[ 13s] [118/191] cumulate bash-5.2.26-11.1
[ 13s] [119/191] cumulate libxml2-tools-2.11.6-2.1
[ 13s] [120/191] cumulate bash-sh-5.2.26-11.1
[ 13s] [121/191] cumulate login_defs-4.14.6-1.1
[ 13s] [122/191] cumulate qemu-linux-user-8.2.2-68.1
[ 13s] [123/191] cumulate cpio-2.15-2.1
[ 13s] [124/191] cumulate cpp-13-2.1
[ 13s] [125/191] cumulate gzip-1.13-3.1
[ 13s] [126/191] cumulate m4-1.4.18-8.1
[ 13s] [127/191] cumulate make-4.4.1-3.1
[ 13s] [128/191] cumulate which-2.21-5.3
[ 13s] [129/191] cumulate bzip2-1.0.8-5.2
[ 13s] [130/191] cumulate gettext-runtime-mini-0.22.5-1.1
[ 13s] [131/191] cumulate grep-3.11-2.1
[ 13s] [132/191] cumulate pkgconf-pkg-config-2.1.1-1.1
[ 13s] [133/191] cumulate rpm-config-SUSE-20240214-1.1
[ 13s] [134/191] cumulate xz-5.6.1-1.1
[ 13s] [135/191] cumulate gawk-5.3.0-1.2
[ 13s] [136/191] cumulate lua54-5.4.6-3.2
[ 13s] [137/191] cumulate binutils-2.42-2.1
[ 13s] [138/191] cumulate coreutils-9.4-5.1
[ 13s] [139/191] cumulate elfutils-0.191-1.1
[ 13s] [140/191] cumulate compat-usrmerge-build-84.87-5.4
[ 13s] [141/191] cumulate systemd-rpm-macros-24-1.2
[ 13s] [142/191] cumulate xorgproto-devel-2023.2-1.1
[ 13s] [143/191] cumulate libxcrypt-devel-4.4.36-1.2
[ 13s] [144/191] cumulate linux-glibc-devel-6.8-1.1
[ 13s] [145/191] cumulate autoconf-2.71-2.3
[ 13s] [146/191] cumulate glibc-locale-base-2.39-4.1
[ 13s] [147/191] cumulate libctf0-2.42-2.1
[ 13s] [148/191] cumulate ca-certificates-2+git20230406.2dae8b7-1.1
[ 13s] [149/191] cumulate gettext-tools-mini-0.22.5-1.1
[ 13s] [150/191] cumulate permissions-config-1699_20240307-1.1
[ 13s] [151/191] cumulate polkit-default-privs-1550+20240311.559e6ac-1.1
[ 13s] [152/191] cumulate sgml-skel-0.7.2-1.2
[ 13s] [153/191] cumulate aaa_base-84.87+git20240202.9526d46-2.1
[ 13s] [154/191] cumulate debugedit-5.0-5.3
[ 13s] [155/191] cumulate rpm-4.19.1.1-3.1
[ 13s] [156/191] cumulate aaa_base-malloccheck-84.87+git20240202.9526d46-2.1
[ 13s] [157/191] cumulate iso_ent-2000.11.03-830.1
[ 13s] [158/191] cumulate permissions-1699_20240307-1.1
[ 13s] [159/191] cumulate glibc-devel-2.39-4.1
[ 13s] [160/191] cumulate libICE-devel-1.1.1-1.2
[ 13s] [161/191] cumulate automake-1.16.5-3.3
[ 13s] [162/191] cumulate opensp-1.5.2-203.1
[ 13s] [163/191] cumulate rpmlint-mini-2.5.0+git20240308.ec22ec6-15.39
[ 13s] [164/191] cumulate build-compare-20230617T171717.50241a8-1.1
[ 13s] [165/191] cumulate librpmbuild10-4.19.1.1-3.1
[ 13s] [166/191] cumulate java-21-openjdk-headless-21.0.2.0-5.1
[ 13s] [167/191] cumulate libstdc++6-devel-gcc13-13.2.1+git8285-3.1
[ 13s] [168/191] cumulate libzstd-devel-1.5.5-6.1
[ 13s] [169/191] cumulate popt-devel-1.19-1.3
[ 13s] [170/191] cumulate zlib-devel-1.3.1-1.1
[ 13s] [171/191] cumulate openjade-1.3.2-374.1
[ 13s] [172/191] cumulate docbook_4-4.5-144.1
[ 13s] [173/191] cumulate libtool-2.4.7-3.4
[ 13s] [174/191] cumulate pam-1.6.0-4.1
[ 13s] [175/191] cumulate post-build-checks-84.87+git20240215.a1dbe5c-1.1
[ 13s] [176/191] cumulate java-21-openjdk-21.0.2.0-5.1
[ 13s] [177/191] cumulate gcc13-13.2.1+git8285-3.1
[ 13s] [178/191] cumulate gcc13-PIE-13.2.1+git8285-3.1
[ 13s] [179/191] cumulate gcc-13-2.1
[ 13s] [180/191] cumulate binutils-devel-2.42-2.1
[ 13s] [181/191] cumulate docbook-xsl-stylesheets-1.79.2.2-2.1
[ 13s] [182/191] cumulate docbook_3-3.1-773.1
[ 13s] [183/191] cumulate java-21-openjdk-devel-21.0.2.0-5.1
[ 13s] [184/191] cumulate gcc13-c++-13.2.1+git8285-3.1
[ 13s] [185/191] cumulate shadow-4.14.6-1.1
[ 13s] [186/191] cumulate util-linux-2.39.3-4.1
[ 13s] [187/191] cumulate gcc-PIE-13-2.1
[ 13s] [188/191] cumulate gcc-c++-13-2.1
[ 13s] [189/191] cumulate docbook-dsssl-stylesheets-1.79-176.3
[ 13s] [190/191] cumulate rpm-build-4.19.1.1-3.1
[ 13s] [191/191] cumulate docbook-utils-minimal-0.6.14-241.1
[ 13s] now installing cumulated packages
[ 14s] Preparing... ########################################
[ 14s] Updating / installing...
[ 14s] system-user-root-20190513-2.3 ########################################
[ 14s] pkgconf-m4-2.1.1-1.1 ########################################
[ 14s] libsemanage-conf-3.6-1.2 ########################################
[ 14s] libX11-data-1.8.7-3.1 ########################################
[ 14s] javapackages-filesystem-6.2.0-4.1 ########################################
[ 14s] javapackages-tools-6.2.0-4.1 ########################################
[ 15s] file-magic-5.45-2.1 ########################################
[ 15s] compat-usrmerge-tools-84.87-5.4 ########################################
[ 15s] filesystem-84.87-15.1 ########################################
[ 15s] glibc-2.39-4.1 ########################################
[ 15s] libz1-1.3.1-1.1 ########################################
[ 15s] libgcc_s1-14.0.1+git9355-1.1 ########################################
[ 15s] libstdc++6-14.0.1+git9355-1.1 ########################################
[ 15s] libzstd1-1.5.5-6.1 ########################################
[ 15s] libgmp10-6.3.0-3.1 ########################################
[ 15s] libelf1-0.191-1.1 ########################################
[ 15s] libbz2-1-1.0.8-5.2 ########################################
[ 16s] libcrypt1-4.4.36-1.2 ########################################
[ 16s] perl-base-5.38.2-2.1 ########################################
[ 16s] libmpfr6-4.2.1-1.2 ########################################
[ 16s] libacl1-2.3.2-1.1 ########################################
[ 16s] libaudit1-3.1.1-1.2 ########################################
[ 16s] liblzma5-5.6.1-1.1 ########################################
[ 16s] libxml2-2-2.11.6-2.1 ########################################
[ 16s] libdw1-0.191-1.1 ########################################
[ 16s] terminfo-base-6.4.20240224-32.1 ########################################
[ 17s] libncurses6-6.4.20240224-32.1 ########################################
[ 17s] ncurses-utils-6.4.20240224-32.1 ########################################
[ 17s] libreadline8-8.2.10-1.2 ########################################
[ 17s] bash-5.2.26-11.1 ########################################
[ 17s] bash-sh-5.2.26-11.1 ########################################
[ 17s] gawk-5.3.0-1.2 ########################################
[ 17s] xz-5.6.1-1.1 ########################################
[ 17s] fillup-1.42-281.1 ########################################
[ 17s] libcap2-2.69-1.2 ########################################
[ 17s] libpopt0-1.19-1.3 ########################################
[ 17s] update-alternatives-1.22.5-1.1 ########################################
[ 17s] login_defs-4.14.6-1.1 ########################################
[ 17s] cpio-2.15-2.1 ########################################
[ 17s] libxml2-tools-2.11.6-2.1 ########################################
[ 17s] libmagic1-5.45-2.1 ########################################
[ 17s] libmpc3-1.3.1-1.4 ########################################
[ 18s] libisl23-0.26-1.2 ########################################
[ 18s] libblkid1-2.39.3-4.1 ########################################
[ 18s] libeconf0-0.6.2-1.1 ########################################
[ 18s] libgomp1-14.0.1+git9355-1.1 ########################################
[ 18s] liblua5_4-5-5.4.6-3.2 ########################################
[ 18s] mozilla-nspr-4.35-1.2 ########################################
[ 20s] cpp13-13.2.1+git8285-3.1 ########################################
[ 20s] chkstat-1699_20240307-1.1 ########################################
[ 20s] m4-1.4.18-8.1 ########################################
[ 20s] libxslt1-1.1.39-1.1 ########################################
[ 20s] dwz-0.15-3.1 ########################################
[ 20s] libpng16-16-1.6.43-1.1 ########################################
[ 20s] diffutils-3.10-1.2 ########################################
[ 20s] libattr1-2.5.2-1.1 ########################################
[ 20s] libfreebl3-3.97-2.1 ########################################
[ 20s] libgdbm6-1.23-3.2 ########################################
[ 20s] libjpeg8-8.3.2-79.1 ########################################
[ 20s] libpcre2-8-0-10.43-1.1 ########################################
[ 20s] libselinux1-3.6-1.2 ########################################
[ 21s] coreutils-9.4-5.1 ########################################
[ 21s] sed-4.9-2.2 ########################################
[ 21s] grep-3.11-2.1 ########################################
[ 21s] findutils-4.9.0-4.1 ########################################
[ 21s] aaa_base-84.87+git20240202.9526d46-2.1########################################
[ 21s] Updating /etc/sysconfig/language ...
[ 21s] Updating /etc/sysconfig/proxy ...
[ 21s] Updating /etc/sysconfig/windowmanager ...
[ 21s] tar-1.35-2.1 ########################################
[ 21s] libtasn1-6-4.19.0-1.2 ########################################
[ 21s] libuuid1-2.39.3-4.1 ########################################
[ 21s] libfdisk1-2.39.3-4.1 ########################################
[ 21s] aaa_base-malloccheck-84.87+git20240202########################################
[ 21s] systemd-rpm-macros-24-1.2 ########################################
[ 22s] linux-glibc-devel-6.8-1.1 ########################################
[ 22s] glibc-locale-base-2.39-4.1 ########################################
[ 23s] permissions-config-1699_20240307-1.1 ########################################
[ 23s] Updating /etc/sysconfig/security ...
[ 23s] Checking permissions and ownerships - using the permissions files
[ 23s] /usr/share/permissions/permissions
[ 23s] /usr/share/permissions/permissions.easy
[ 23s] /etc/permissions.local
[ 23s] /usr/sbin/unix2_chkpwd: setting to root:shadow 4755 (wrong owner/group root:root)
[ 23s] /usr/sbin/unix_chkpwd: setting to root:shadow 4755 (wrong owner/group root:root)
[ 23s] permissions-1699_20240307-1.1 ########################################
[ 23s] pam-1.6.0-4.1 ########################################
[ 23s] polkit-default-privs-1550+20240311.559########################################
[ 23s] Updating /etc/sysconfig/security ...
[ 24s] can't open /etc/polkit-1/rules.d/90-default-privs.rules.new: No such file or directory
[ 24s] warning: %post(polkit-default-privs-1550+20240311.559e6ac-1.1.noarch) scriptlet failed, exit status 2
[ 24s] libmount1-2.39.3-4.1 ########################################
[ 24s] libsubid4-4.14.6-1.1 ########################################
[ 24s] libgdbm_compat4-1.23-3.2 ########################################
[ 24s] autoconf-2.71-2.3 ########################################
[ 24s] cpp-13-2.1 ########################################
[ 24s] mozilla-nss-certs-3.97-2.1 ########################################
[ 24s] lua54-5.4.6-3.2 ########################################
[ 24s] update-alternatives: using /usr/bin/lua5.4 to provide /usr/bin/lua (lua) in auto mode
[ 24s] gzip-1.13-3.1 ########################################
[ 24s] make-4.4.1-3.1 ########################################
[ 24s] which-2.21-5.3 ########################################
[ 24s] bzip2-1.0.8-5.2 ########################################
[ 25s] gettext-runtime-mini-0.22.5-1.1 ########################################
[ 25s] gettext-tools-mini-0.22.5-1.1 ########################################
[ 25s] libasm1-0.191-1.1 ########################################
[ 25s] elfutils-0.191-1.1 ########################################
[ 25s] rpm-build-perl-4.19.1.1-3.1 ########################################
[ 25s] libasan8-14.0.1+git9355-1.1 ########################################
[ 26s] libdb-4_8-4.8.30-43.1 ########################################
[ 29s] perl-5.38.2-2.1 ########################################
[ 29s] perl-SGMLS-1.1-1.11 ########################################
[ 29s] automake-1.16.5-3.3 ########################################
[ 29s] libubsan1-14.0.1+git9355-1.1 ########################################
[ 29s] libctf-nobfd0-2.42-2.1 ########################################
[ 32s] binutils-2.42-2.1 ########################################
[ 32s] update-alternatives: using /usr/bin/ld.bfd to provide /usr/bin/ld (ld) in auto mode
[ 32s] libctf0-2.42-2.1 ########################################
[ 32s] debugedit-5.0-5.3 ########################################
[ 32s] libICE6-1.1.1-1.2 ########################################
[ 32s] libXau6-1.0.11-1.2 ########################################
[ 32s] libxcb1-1.16.1-3.1 ########################################
[ 33s] libX11-6-1.8.7-3.1 ########################################
[ 33s] libXext6-1.3.6-1.1 ########################################
[ 33s] libXi6-1.8.1-1.1 ########################################
[ 33s] libXtst6-1.2.4-1.2 ########################################
[ 33s] libXrender1-0.9.11-1.2 ########################################
[ 33s] libasound2-1.2.11-1.1 ########################################
[ 33s] libatomic1-14.0.1+git9355-1.1 ########################################
[ 33s] libbrotlicommon1-1.1.0-1.1 ########################################
[ 33s] libbrotlidec1-1.1.0-1.1 ########################################
[ 33s] libfreetype6-2.13.2-2.1 ########################################
[ 33s] libcap-ng0-0.8.4-1.2 ########################################
[ 33s] libexpat1-2.6.2-1.1 ########################################
[ 33s] libfontconfig1-2.15.0-1.1 ########################################
[ 33s] fontconfig-2.15.0-1.1 ########################################
[ 33s] libffi8-3.4.6-1.1 ########################################
[ 33s] libp11-kit0-0.25.3-1.1 ########################################
[ 34s] p11-kit-0.25.3-1.1 ########################################
[ 34s] p11-kit-tools-0.25.3-1.1 ########################################
[ 34s] libgif7-5.2.2-1.1 ########################################
[ 34s] libgpg-error0-1.48-1.1 ########################################
[ 34s] libgcrypt20-1.10.3-3.2 ########################################
[ 34s] rpm-config-SUSE-20240214-1.1 ########################################
[ 34s] rpm-4.19.1.1-3.1 ########################################
[ 34s] Updating /etc/sysconfig/services ...
[ 34s] librpmbuild10-4.19.1.1-3.1 ########################################
[ 34s] libexslt0-1.1.39-1.1 ########################################
[ 34s] libxslt-tools-1.1.39-1.1 ########################################
[ 35s] sgml-skel-0.7.2-1.2 ########################################
[ 35s] iso_ent-2000.11.03-830.1 ########################################
[ 35s] docbook_4-4.5-144.1 ########################################
[ 37s] docbook_3-3.1-773.1 ########################################
[ 37s] opensp-1.5.2-203.1 ########################################
[ 38s] openjade-1.3.2-374.1 ########################################
[ 38s] docbook-dsssl-stylesheets-1.79-176.3 ########################################
[ 39s] libitm1-14.0.1+git9355-1.1 ########################################
[ 39s] liblcms2-2-2.16-1.1 ########################################
[ 39s] libltdl7-2.4.7-3.4 ########################################
[ 39s] libpcsclite1-2.0.3-1.1 ########################################
[ 39s] libpkgconf4-2.1.1-1.1 ########################################
[ 39s] pkgconf-2.1.1-1.1 ########################################
[ 39s] pkgconf-pkg-config-2.1.1-1.1 ########################################
[ 39s] xorgproto-devel-2023.2-1.1 ########################################
[ 39s] libxcrypt-devel-4.4.36-1.2 ########################################
[ 39s] glibc-devel-2.39-4.1 ########################################
[ 48s] gcc13-13.2.1+git8285-3.1 ########################################
[ 48s] gcc-13-2.1 ########################################
[ 48s] gcc13-PIE-13.2.1+git8285-3.1 ########################################
[ 55s] libstdc++6-devel-gcc13-13.2.1+git8285-########################################
[ 57s] gcc13-c++-13.2.1+git8285-3.1 ########################################
[ 57s] libzstd-devel-1.5.5-6.1 ########################################
[ 57s] zlib-devel-1.3.1-1.1 ########################################
[ 57s] libseccomp2-2.5.5-1.2 ########################################
[ 57s] file-5.45-2.1 ########################################
[ 57s] libsepol2-3.6-1.2 ########################################
[ 57s] libsemanage2-3.6-1.2 ########################################
[ 57s] libsmartcols1-2.39.3-4.1 ########################################
[ 58s] util-linux-2.39.3-4.1 ########################################
[ 58s] libsqlite3-0-3.45.2-1.1 ########################################
[ 58s] mozilla-nss-3.97-2.1 ########################################
[ 58s] libsoftokn3-3.97-2.1 ########################################
[ 70s] java-21-openjdk-headless-21.0.2.0-5.1 ########################################
[ 70s] update-alternatives: using /usr/lib64/jvm/jre-21-openjdk/bin/java to provide /usr/bin/java (java) in auto mode
[ 70s] update-alternatives: using /usr/lib64/jvm/jre-21-openjdk to provide /usr/lib64/jvm/jre-openjdk (jre_openjdk) in auto mode
[ 70s] update-alternatives: using /usr/lib64/jvm/jre-21-openjdk to provide /usr/lib64/jvm/jre-21 (jre_21) in auto mode
[ 70s] java-21-openjdk-21.0.2.0-5.1 ########################################
[ 70s] patch-2.7.6-7.1 ########################################
[ 70s] rpm-build-4.19.1.1-3.1 ########################################
[ 71s] java-21-openjdk-devel-21.0.2.0-5.1 ########################################
[ 71s] update-alternatives: using /usr/lib64/jvm/java-21-openjdk/bin/javac to provide /usr/bin/javac (javac) in auto mode
[ 71s] update-alternatives: using /usr/lib64/jvm/java-21-openjdk to provide /usr/lib64/jvm/java-openjdk (java_sdk_openjdk) in auto mode
[ 71s] update-alternatives: using /usr/lib64/jvm/java-21-openjdk to provide /usr/lib64/jvm/java-21 (java_sdk_21) in auto mode
[ 71s] shadow-4.14.6-1.1 ########################################
[ 72s] /usr/bin/newgidmap: setting to root:root 0755 "cap_setgid=ep". (wrong owner/group root:shadow, wrong permissions 4755, missing capabilities)
[ 72s] /usr/bin/newuidmap: setting to root:root 0755 "cap_setuid=ep". (wrong owner/group root:shadow, wrong permissions 4755, missing capabilities)
[ 72s] build-compare-20230617T171717.50241a8-########################################
[ 82s] binutils-devel-2.42-2.1 ########################################
[ 82s] gcc-c++-13-2.1 ########################################
[ 82s] gcc-PIE-13-2.1 ########################################
[ 82s] popt-devel-1.19-1.3 ########################################
[ 82s] libICE-devel-1.1.1-1.2 ########################################
[ 83s] libtool-2.4.7-3.4 ########################################
[ 83s] docbook-utils-minimal-0.6.14-241.1 ########################################
[ 84s] docbook-xsl-stylesheets-1.79.2.2-2.1 ########################################
[ 84s] ca-certificates-2+git20230406.2dae8b7-########################################
[ 85s] brp-check-suse-84.87+git20230324.8680c########################################
[ 85s] compat-usrmerge-build-84.87-5.4 ########################################
[ 87s] rpmlint-mini-2.5.0+git20240308.ec22ec6########################################
[ 87s] post-build-checks-84.87+git20240215.a1########################################
[ 87s] attr-2.5.2-1.1 ########################################
[ 93s] qemu-linux-user-8.2.2-68.1 ########################################
[ 93s] build-mkbaselibs-20240313-1.1 ########################################
[ 93s] fdupes-2.3.0-1.1 ########################################
[ 94s] kernel-obs-build-6.8.1-1.1 ########################################
[ 99s] now finalizing build dir...
[ 100s] ... running 01-add_abuild_user_to_trusted_group
[ 100s] ... running 02-set_timezone_to_utc
[ 100s] ... running 03-set-permissions-secure
[ 100s] ... running 11-hack_uname_version_to_kernel_version
[ 101s] setting SOURCE_DATE_EPOCH_MTIME to 1695865973
[ 104s] -----------------------------------------------------------------
[ 104s] I have the following modifications for oprofile.spec:
[ 104s] 21c21
[ 104s] < Release: 0
[ 104s] ---
[ 104s] > Release: 86.1
[ 107s] build target is riscv64-suse-linux
[ 107s] -----------------------------------------------------------------
[ 107s] ----- building oprofile.spec (user abuild)
[ 107s] -----------------------------------------------------------------
[ 107s] -----------------------------------------------------------------
[ 110s] setting SOURCE_DATE_EPOCH_MTIME to 1695865973
[ 110s] + exec rpmbuild -ba --define '_srcdefattr (-,root,root)' --nosignature --target=riscv64-suse-linux --undefine _enable_debug_packages --define 'disturl obs://build.opensuse.org/home:wangyuxuan/openSUSE_Factory_RISCV/36079049ab6f8ec0d0d3de0e78662243-oprofile' /home/abuild/rpmbuild/SOURCES/oprofile.spec
[ 110s] Building target platforms: riscv64-suse-linux
[ 110s] Building for target riscv64-suse-linux
[ 110s] using SOURCE_DATE_EPOCH with value 1695865972 as build time
[ 110s] Executing(%prep): /usr/bin/bash -e /var/tmp/rpm-tmp.2n3Par
[ 110s] + umask 022
[ 110s] + cd /home/abuild/rpmbuild/BUILD
[ 110s] + cd /home/abuild/rpmbuild/BUILD
[ 110s] + rm -rf oprofile-1.4.0
[ 110s] + /usr/lib/rpm/rpmuncompress -x /home/abuild/rpmbuild/SOURCES/oprofile-1.4.0.tar.gz
[ 110s] + STATUS=0
[ 110s] + '[' 0 -ne 0 ']'
[ 110s] + cd oprofile-1.4.0
[ 110s] + rm -rf /home/abuild/rpmbuild/BUILD/oprofile-1.4.0-SPECPARTS
[ 110s] + /usr/bin/mkdir -p /home/abuild/rpmbuild/BUILD/oprofile-1.4.0-SPECPARTS
[ 110s] + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w .
[ 110s] + /usr/lib/rpm/rpmuncompress /home/abuild/rpmbuild/SOURCES/oprofile-no-libjvm-version.patch
[ 110s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f
[ 111s] + /usr/lib/rpm/rpmuncompress /home/abuild/rpmbuild/SOURCES/oprofile-pfm-ppc.patch
[ 111s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f
[ 111s] + /usr/lib/rpm/rpmuncompress /home/abuild/rpmbuild/SOURCES/oprofile-binutils.patch
[ 111s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f
[ 111s] + mkdir -p java/include
[ 111s] + ln -s /usr/lib64/jvm/java/include/classfile_constants.h /usr/lib64/jvm/java/include/jawt.h /usr/lib64/jvm/java/include/jdwpTransport.h /usr/lib64/jvm/java/include/jni.h /usr/lib64/jvm/java/include/jvmti.h /usr/lib64/jvm/java/include/jvmticmlr.h /usr/lib64/jvm/java/include/linux java/include
[ 111s] + test -f java/include/jvmpi.h
[ 111s] + ln -s /home/abuild/rpmbuild/SOURCES/jvmpi.h java/include
[ 111s] + RPM_EC=0
[ 111s] ++ jobs -p
[ 111s] + exit 0
[ 111s] Executing(%build): /usr/bin/bash -e /var/tmp/rpm-tmp.24flio
[ 111s] + umask 022
[ 111s] + cd /home/abuild/rpmbuild/BUILD
[ 111s] + /usr/bin/rm -rf /home/abuild/rpmbuild/BUILDROOT/oprofile-1.4.0-86.1.riscv64
[ 111s] ++ dirname /home/abuild/rpmbuild/BUILDROOT/oprofile-1.4.0-86.1.riscv64
[ 111s] + /usr/bin/mkdir -p /home/abuild/rpmbuild/BUILDROOT
[ 111s] + /usr/bin/mkdir /home/abuild/rpmbuild/BUILDROOT/oprofile-1.4.0-86.1.riscv64
[ 111s] + cd oprofile-1.4.0
[ 111s] + ref=/usr/lib/rpm
[ 111s] + mints=0
[ 111s] + case $(uname -m) in
[ 111s] ++ uname -m
[ 111s] + mints=20160911
[ 111s] + for s in guess sub
[ 111s] ++ find -maxdepth 8 -name config.guess
[ 112s] + for c in $(find -maxdepth 8 -name "config.$s")
[ 112s] + grep -q config-patches@ ./config.guess
[ 112s] ++ sed -n '/^timestamp=/{s///;s/[-'\''"]//g;p;q;}' ./config.guess
[ 112s] + timestamp=20140323
[ 112s] + test -n 20140323
[ 112s] + test 20140323 -ge 20160911
[ 112s] + install -m 755 /usr/lib/rpm/config.guess ./config.guess
[ 112s] + for s in guess sub
[ 112s] ++ find -maxdepth 8 -name config.sub
[ 112s] + for c in $(find -maxdepth 8 -name "config.$s")
[ 112s] + grep -q config-patches@ ./config.sub
[ 112s] ++ sed -n '/^timestamp=/{s///;s/[-'\''"]//g;p;q;}' ./config.sub
[ 112s] + timestamp=20140728
[ 112s] + test -n 20140728
[ 112s] + test 20140728 -ge 20160911
[ 112s] + install -m 755 /usr/lib/rpm/config.sub ./config.sub
[ 112s] + ./autogen.sh
[ 120s] Running aclocal -I m4 ...
[ 125s] Running autoheader ...
[ 129s] Running automake --foreign --add-missing --copy ...
[ 139s] Running autoconf ...
[ 142s] configure.ac:21: warning: The macro `AC_PROG_LIBTOOL' is obsolete.
[ 142s] configure.ac:21: You should run autoupdate.
[ 142s] m4/libtool.m4:100: AC_PROG_LIBTOOL is expanded from...
[ 142s] configure.ac:21: the top level
[ 142s] configure.ac:98: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:98: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/kernelversion.m4:2: AX_KERNEL_VERSION is expanded from...
[ 142s] configure.ac:98: the top level
[ 142s] configure.ac:278: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:278: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/mallocattribute.m4:2: AX_MALLOC_ATTRIBUTE is expanded from...
[ 142s] configure.ac:278: the top level
[ 142s] configure.ac:279: warning: The macro `AC_TRY_LINK' is obsolete.
[ 142s] configure.ac:279: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2920: AC_TRY_LINK is expanded from...
[ 142s] m4/builtinexpect.m4:2: AX_BUILTIN_EXPECT is expanded from...
[ 142s] configure.ac:279: the top level
[ 142s] configure.ac:304: warning: The macro `AC_LANG_CPLUSPLUS' is obsolete.
[ 142s] configure.ac:304: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:262: AC_LANG_CPLUSPLUS is expanded from...
[ 142s] configure.ac:304: the top level
[ 142s] configure.ac:306: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:306: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/poptconst.m4:2: AX_POPT_CONST is expanded from...
[ 142s] configure.ac:306: the top level
[ 142s] configure.ac:307: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:307: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/sstream.m4:2: AX_CHECK_SSTREAM is expanded from...
[ 142s] configure.ac:307: the top level
[ 142s] configure.ac:311: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:311: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] configure.ac:311: the top level
[ 142s] configure.ac:316: warning: The macro `AC_LANG_C' is obsolete.
[ 142s] configure.ac:316: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
[ 142s] m4/typedef.m4:5: AX_CHECK_TYPEDEF is expanded from...
[ 142s] m4/typedef.m4:33: AX_TYPEDEFED_NAME is expanded from...
[ 142s] configure.ac:316: the top level
[ 142s] configure.ac:316: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:316: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/typedef.m4:5: AX_CHECK_TYPEDEF is expanded from...
[ 142s] m4/typedef.m4:33: AX_TYPEDEFED_NAME is expanded from...
[ 142s] configure.ac:316: the top level
[ 142s] configure.ac:318: warning: The macro `AC_LANG_C' is obsolete.
[ 142s] configure.ac:318: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
[ 142s] m4/typedef.m4:5: AX_CHECK_TYPEDEF is expanded from...
[ 142s] m4/typedef.m4:33: AX_TYPEDEFED_NAME is expanded from...
[ 142s] configure.ac:318: the top level
[ 142s] configure.ac:318: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:318: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/typedef.m4:5: AX_CHECK_TYPEDEF is expanded from...
[ 142s] m4/typedef.m4:33: AX_TYPEDEFED_NAME is expanded from...
[ 142s] configure.ac:318: the top level
[ 142s] configure.ac:328: warning: The macro `AC_LANG_CPLUSPLUS' is obsolete.
[ 142s] configure.ac:328: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:262: AC_LANG_CPLUSPLUS is expanded from...
[ 142s] m4/precompiledheader.m4:3: AX_CHECK_PRECOMPILED_HEADER is expanded from...
[ 142s] configure.ac:328: the top level
[ 142s] configure.ac:328: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:328: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/precompiledheader.m4:3: AX_CHECK_PRECOMPILED_HEADER is expanded from...
[ 142s] configure.ac:328: the top level
[ 142s] configure.ac:345: warning: The macro `AC_LANG_C' is obsolete.
[ 142s] configure.ac:345: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
[ 142s] m4/compileroption.m4:3: AX_CFLAGS_OPTION is expanded from...
[ 142s] configure.ac:345: the top level
[ 142s] configure.ac:345: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:345: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/compileroption.m4:3: AX_CFLAGS_OPTION is expanded from...
[ 142s] configure.ac:345: the top level
[ 142s] configure.ac:346: warning: The macro `AC_LANG_CPLUSPLUS' is obsolete.
[ 142s] configure.ac:346: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:262: AC_LANG_CPLUSPLUS is expanded from...
[ 142s] m4/compileroption.m4:17: AX_CXXFLAGS_OPTION is expanded from...
[ 142s] configure.ac:346: the top level
[ 142s] configure.ac:346: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:346: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/compileroption.m4:17: AX_CXXFLAGS_OPTION is expanded from...
[ 142s] configure.ac:346: the top level
[ 142s] configure.ac:347: warning: The macro `AC_LANG_C' is obsolete.
[ 142s] configure.ac:347: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
[ 142s] m4/compileroption.m4:3: AX_CFLAGS_OPTION is expanded from...
[ 142s] configure.ac:347: the top level
[ 142s] configure.ac:347: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:347: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/compileroption.m4:3: AX_CFLAGS_OPTION is expanded from...
[ 142s] configure.ac:347: the top level
[ 142s] configure.ac:348: warning: The macro `AC_LANG_CPLUSPLUS' is obsolete.
[ 142s] configure.ac:348: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:262: AC_LANG_CPLUSPLUS is expanded from...
[ 142s] m4/compileroption.m4:17: AX_CXXFLAGS_OPTION is expanded from...
[ 142s] configure.ac:348: the top level
[ 142s] configure.ac:348: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:348: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/compileroption.m4:17: AX_CXXFLAGS_OPTION is expanded from...
[ 142s] configure.ac:348: the top level
[ 142s] configure.ac:349: warning: The macro `AC_LANG_C' is obsolete.
[ 142s] configure.ac:349: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
[ 142s] m4/compileroption.m4:3: AX_CFLAGS_OPTION is expanded from...
[ 142s] configure.ac:349: the top level
[ 142s] configure.ac:349: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:349: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/compileroption.m4:3: AX_CFLAGS_OPTION is expanded from...
[ 142s] configure.ac:349: the top level
[ 142s] configure.ac:350: warning: The macro `AC_LANG_CPLUSPLUS' is obsolete.
[ 142s] configure.ac:350: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:262: AC_LANG_CPLUSPLUS is expanded from...
[ 142s] m4/compileroption.m4:17: AX_CXXFLAGS_OPTION is expanded from...
[ 142s] configure.ac:350: the top level
[ 142s] configure.ac:350: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:350: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/compileroption.m4:17: AX_CXXFLAGS_OPTION is expanded from...
[ 142s] configure.ac:350: the top level
[ 142s] configure.ac:351: warning: The macro `AC_LANG_C' is obsolete.
[ 142s] configure.ac:351: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
[ 142s] m4/compileroption.m4:3: AX_CFLAGS_OPTION is expanded from...
[ 142s] configure.ac:351: the top level
[ 142s] configure.ac:351: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:351: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/compileroption.m4:3: AX_CFLAGS_OPTION is expanded from...
[ 142s] configure.ac:351: the top level
[ 142s] configure.ac:358: warning: The macro `AC_LANG_C' is obsolete.
[ 142s] configure.ac:358: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
[ 142s] m4/compileroption.m4:3: AX_CFLAGS_OPTION is expanded from...
[ 142s] configure.ac:358: the top level
[ 142s] configure.ac:358: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:358: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/compileroption.m4:3: AX_CFLAGS_OPTION is expanded from...
[ 142s] configure.ac:358: the top level
[ 142s] configure.ac:359: warning: The macro `AC_LANG_CPLUSPLUS' is obsolete.
[ 142s] configure.ac:359: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:262: AC_LANG_CPLUSPLUS is expanded from...
[ 142s] m4/compileroption.m4:17: AX_CXXFLAGS_OPTION is expanded from...
[ 142s] configure.ac:359: the top level
[ 142s] configure.ac:359: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:359: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/compileroption.m4:17: AX_CXXFLAGS_OPTION is expanded from...
[ 142s] configure.ac:359: the top level
[ 142s] configure.ac:360: warning: The macro `AC_LANG_C' is obsolete.
[ 142s] configure.ac:360: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
[ 142s] m4/compileroption.m4:3: AX_CFLAGS_OPTION is expanded from...
[ 142s] configure.ac:360: the top level
[ 142s] configure.ac:360: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:360: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/compileroption.m4:3: AX_CFLAGS_OPTION is expanded from...
[ 142s] configure.ac:360: the top level
[ 142s] configure.ac:361: warning: The macro `AC_LANG_CPLUSPLUS' is obsolete.
[ 142s] configure.ac:361: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:262: AC_LANG_CPLUSPLUS is expanded from...
[ 142s] m4/compileroption.m4:17: AX_CXXFLAGS_OPTION is expanded from...
[ 142s] configure.ac:361: the top level
[ 142s] configure.ac:361: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:361: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/compileroption.m4:17: AX_CXXFLAGS_OPTION is expanded from...
[ 142s] configure.ac:361: the top level
[ 142s] configure.ac:370: warning: The macro `AC_LANG_C' is obsolete.
[ 142s] configure.ac:370: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
[ 142s] m4/compileroption.m4:3: AX_CFLAGS_OPTION is expanded from...
[ 142s] configure.ac:370: the top level
[ 142s] configure.ac:370: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:370: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/compileroption.m4:3: AX_CFLAGS_OPTION is expanded from...
[ 142s] configure.ac:370: the top level
[ 142s] configure.ac:371: warning: The macro `AC_LANG_CPLUSPLUS' is obsolete.
[ 142s] configure.ac:371: You should run autoupdate.
[ 142s] ./lib/autoconf/c.m4:262: AC_LANG_CPLUSPLUS is expanded from...
[ 142s] m4/compileroption.m4:17: AX_CXXFLAGS_OPTION is expanded from...
[ 142s] configure.ac:371: the top level
[ 142s] configure.ac:371: warning: The macro `AC_TRY_COMPILE' is obsolete.
[ 142s] configure.ac:371: You should run autoupdate.
[ 142s] ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[ 142s] m4/compileroption.m4:17: AX_CXXFLAGS_OPTION is expanded from...
[ 142s] configure.ac:371: the top level
[ 142s] configure.ac:420: warning: AC_OUTPUT should be used without arguments.
[ 142s] configure.ac:420: You should run autoupdate.
[ 144s] + CONFIG_SHELL=/usr/bin/bash
[ 144s] + export CONFIG_SHELL
[ 144s] + CFLAGS='-O2 -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -Werror=return-type -flto=auto'
[ 144s] + export CFLAGS
[ 144s] + CXXFLAGS='-O2 -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -Werror=return-type -flto=auto'
[ 144s] + export CXXFLAGS
[ 144s] + FFLAGS='-O2 -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -Werror=return-type -flto=auto '
[ 144s] + export FFLAGS
[ 144s] + FCFLAGS='-O2 -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -Werror=return-type -flto=auto '
[ 144s] + export FCFLAGS
[ 144s] + LDFLAGS=-flto=auto
[ 144s] + export LDFLAGS
[ 144s] + ./configure --host=riscv64-suse-linux --build=riscv64-suse-linux --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-java=/home/abuild/rpmbuild/BUILD/oprofile-1.4.0/java
[ 147s] checking for a BSD-compatible install... /usr/bin/install -c
[ 147s] checking whether build environment is sane... yes
[ 147s] checking for a race-free mkdir -p... /usr/bin/mkdir -p
[ 147s] checking for gawk... gawk
[ 147s] checking whether make sets $(MAKE)... yes
[ 147s] checking whether make supports nested variables... yes
[ 147s] checking whether make supports the include directive... yes (GNU style)
[ 147s] checking for riscv64-suse-linux-gcc... no
[ 148s] checking for gcc... gcc
[ 150s] checking whether the C compiler works... yes
[ 150s] checking for C compiler default output file name... a.out
[ 151s] checking for suffix of executables...
[ 153s] checking whether we are cross compiling... no
[ 153s] checking for suffix of object files... o
[ 154s] checking whether the compiler supports GNU C... yes
[ 154s] checking whether gcc accepts -g... yes
[ 155s] checking for gcc option to enable C11 features... none needed
[ 156s] checking whether gcc understands -c and -o together... yes
[ 156s] checking dependency style of gcc... none
[ 157s] checking for gcc options needed to detect all undeclared functions... none needed
[ 157s] checking whether basename is declared... yes
[ 157s] checking for riscv64-suse-linux-ranlib... no
[ 157s] checking for ranlib... ranlib
[ 157s] checking build system type... riscv64-suse-linux-gnu
[ 158s] checking host system type... riscv64-suse-linux-gnu
[ 158s] checking how to print strings... printf
[ 158s] checking for a sed that does not truncate output... /usr/bin/sed
[ 158s] checking for grep that handles long lines and -e... /usr/bin/grep
[ 158s] checking for egrep... /usr/bin/grep -E
[ 158s] checking for fgrep... /usr/bin/grep -F
[ 158s] checking for ld used by gcc... /usr/riscv64-suse-linux/bin/ld
[ 158s] checking if the linker (/usr/riscv64-suse-linux/bin/ld) is GNU ld... yes
[ 158s] checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
[ 159s] checking the name lister (/usr/bin/nm -B) interface... BSD nm
[ 159s] checking whether ln -s works... yes
[ 159s] checking the maximum length of command line arguments... 1572864
[ 159s] checking how to convert riscv64-suse-linux-gnu file names to riscv64-suse-linux-gnu format... func_convert_file_noop
[ 159s] checking how to convert riscv64-suse-linux-gnu file names to toolchain format... func_convert_file_noop
[ 159s] checking for /usr/riscv64-suse-linux/bin/ld option to reload object files... -r
[ 159s] checking for riscv64-suse-linux-file... no
[ 159s] checking for file... file
[ 159s] checking for riscv64-suse-linux-objdump... no
[ 159s] checking for objdump... objdump
[ 159s] checking how to recognize dependent libraries... pass_all
[ 159s] checking for riscv64-suse-linux-dlltool... no
[ 159s] checking for dlltool... no
[ 159s] checking how to associate runtime and link libraries... printf %s\n
[ 159s] checking for riscv64-suse-linux-ar... no
[ 159s] checking for ar... ar
[ 159s] checking for archiver @FILE support... @
[ 159s] checking for riscv64-suse-linux-strip... no
[ 159s] checking for strip... strip
[ 159s] checking for riscv64-suse-linux-ranlib... ranlib
[ 162s] checking command to parse /usr/bin/nm -B output from gcc object... ok
[ 162s] checking for sysroot... no
[ 162s] checking for a working dd... /usr/bin/dd
[ 162s] checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
[ 162s] checking for riscv64-suse-linux-mt... no
[ 162s] checking for mt... no
[ 162s] checking if : is a manifest tool... no
[ 162s] checking for stdio.h... yes
[ 163s] checking for stdlib.h... yes
[ 164s] checking for string.h... yes
[ 164s] checking for inttypes.h... yes
[ 165s] checking for stdint.h... yes
[ 165s] checking for strings.h... yes
[ 166s] checking for sys/stat.h... yes
[ 166s] checking for sys/types.h... yes
[ 167s] checking for unistd.h... yes
[ 168s] checking for dlfcn.h... yes
[ 168s] checking for objdir... .libs
[ 170s] checking if gcc supports -fno-rtti -fno-exceptions... no
[ 170s] checking for gcc option to produce PIC... -fPIC -DPIC
[ 170s] checking if gcc PIC flag -fPIC -DPIC works... yes
[ 171s] checking if gcc static flag -static works... no
[ 171s] checking if gcc supports -c -o file.o... yes
[ 171s] checking if gcc supports -c -o file.o... (cached) yes
[ 172s] checking whether the gcc linker (/usr/riscv64-suse-linux/bin/ld) supports shared libraries... yes
[ 173s] checking whether -lc should be explicitly linked in... no
[ 175s] checking dynamic linker characteristics... GNU/Linux ld.so
[ 175s] checking how to hardcode library paths into programs... immediate
[ 175s] checking whether stripping libraries is possible... yes
[ 175s] checking if libtool supports shared libraries... yes
[ 175s] checking whether to build shared libraries... yes
[ 175s] checking whether to build static libraries... yes
[ 175s] checking for riscv64-suse-linux-pkg-config... no
[ 175s] checking for pkg-config... /usr/bin/pkg-config
[ 175s] checking pkg-config is at least version 0.9.0... yes
[ 175s] checking for riscv64-suse-linux-gcc... gcc
[ 175s] checking whether the compiler supports GNU C... (cached) yes
[ 175s] checking whether gcc accepts -g... (cached) yes
[ 175s] checking for gcc option to enable C11 features... (cached) none needed
[ 175s] checking whether gcc understands -c and -o together... (cached) yes
[ 175s] checking dependency style of gcc... (cached) none
[ 176s] checking how to run the C preprocessor... gcc -E
[ 177s] checking for riscv64-suse-linux-g++... no
[ 177s] checking for riscv64-suse-linux-c++... no
[ 177s] checking for riscv64-suse-linux-gpp... no
[ 177s] checking for riscv64-suse-linux-aCC... no
[ 177s] checking for riscv64-suse-linux-CC... no
[ 177s] checking for riscv64-suse-linux-cxx... no
[ 177s] checking for riscv64-suse-linux-cc++... no
[ 177s] checking for riscv64-suse-linux-cl.exe... no
[ 177s] checking for riscv64-suse-linux-FCC... no
[ 177s] checking for riscv64-suse-linux-KCC... no
[ 177s] checking for riscv64-suse-linux-RCC... no
[ 177s] checking for riscv64-suse-linux-xlC_r... no
[ 177s] checking for riscv64-suse-linux-xlC... no
[ 177s] checking for riscv64-suse-linux-clang++... no
[ 177s] checking for g++... g++
[ 177s] checking whether the compiler supports GNU C++... yes
[ 178s] checking whether g++ accepts -g... yes
[ 179s] checking for g++ option to enable C++11 features... none needed
[ 179s] checking dependency style of g++... none
[ 180s] checking how to run the C++ preprocessor... g++ -E
[ 183s] checking for ld used by g++... /usr/riscv64-suse-linux/bin/ld
[ 183s] checking if the linker (/usr/riscv64-suse-linux/bin/ld) is GNU ld... yes
[ 183s] checking whether the g++ linker (/usr/riscv64-suse-linux/bin/ld) supports shared libraries... yes
[ 184s] checking for g++ option to produce PIC... -fPIC -DPIC
[ 185s] checking if g++ PIC flag -fPIC -DPIC works... yes
[ 185s] checking if g++ static flag -static works... no
[ 186s] checking if g++ supports -c -o file.o... yes
[ 186s] checking if g++ supports -c -o file.o... (cached) yes
[ 186s] checking whether the g++ linker (/usr/riscv64-suse-linux/bin/ld) supports shared libraries... yes
[ 186s] checking dynamic linker characteristics... (cached) GNU/Linux ld.so
[ 186s] checking how to hardcode library paths into programs... immediate
[ 186s] checking for ld... /usr/riscv64-suse-linux/bin/ld
[ 187s] checking for /usr/include/linux/perf_event.h... yes
[ 189s] checking kernel supports perf_events... yes
[ 190s] checking whether PERF_RECORD_MISC_GUEST_KERNEL is defined in perf_event.h... yes
[ 192s] checking whether precise_ip is defined in perf_event.h... yes
[ 194s] checking whether binutils 2.34 is being used... yes
[ 194s] checking for "/home/abuild/rpmbuild/BUILD/oprofile-1.4.0/java/include/jvmti.h"... yes
[ 194s] checking for "/home/abuild/rpmbuild/BUILD/oprofile-1.4.0/java/include/jvmpi.h"... yes
[ 194s] checking whether malloc attribute is understood... no
[ 195s] checking whether __builtin_expect is understood... no
[ 196s] checking for sched_setaffinity... yes
[ 198s] checking for perfmonctl... no
[ 200s] checking for poptGetContext in -lpopt... yes
[ 200s] checking for libiberty.h... yes
[ 202s] checking for cplus_demangle in -liberty... yes
[ 204s] checking for xcalloc... yes
[ 205s] checking for xmemdup... yes
[ 207s] checking for dlopen in -ldl... yes
[ 208s] checking for main in -lintl... no
[ 216s] checking for bfd_openr in -lbfd... no
[ 218s] checking for compress in -lz... yes
[ 227s] checking for bfd_fdopenr in -lbfd... no
[ 235s] checking for bfd_openstreamr in -lbfd... yes
[ 245s] checking whether bfd_get_synthetic_symtab() exists in BFD library... yes
[ 245s] checking popt prototype... takes const char **
[ 249s] checking whether to use included sstream... no
[ 250s] checking whether bfd defines bool... no
[ 251s] checking type of size_t... unsigned long
[ 252s] checking type of ptrdiff_t... long
[ 253s] checking for X... no
[ 253s] checking for xsltproc... xsltproc
[ 254s] checking whether xsltproc works... yes
[ 254s] checking whether gcc -W is understood... yes
[ 254s] checking whether g++ -W is understood... yes
[ 255s] checking whether gcc -Wall is understood... yes
[ 255s] checking whether g++ -Wall is understood... yes
[ 256s] checking whether gcc -fno-common is understood... yes
[ 256s] checking whether g++ -fno-common is understood... yes
[ 257s] checking whether gcc -Wdeclaration-after-statement is understood... yes
[ 259s] checking for clock_gettime... yes
[ 259s] checking that generated files are newer than configure... done
[ 259s] configure: creating ./config.status
[ 269s] config.status: creating Makefile
[ 269s] config.status: creating pe_counting/Makefile
[ 270s] config.status: creating libpe_utils/Makefile
[ 270s] config.status: creating pe_profiling/Makefile
[ 270s] config.status: creating libperf_events/Makefile
[ 270s] config.status: creating m4/Makefile
[ 271s] config.status: creating libutil/Makefile
[ 271s] config.status: creating libutil/tests/Makefile
[ 271s] config.status: creating libutil++/Makefile
[ 272s] config.status: creating libutil++/tests/Makefile
[ 272s] config.status: creating libop/Makefile
[ 272s] config.status: creating libop/tests/Makefile
[ 273s] config.status: creating libopagent/Makefile
[ 273s] config.status: creating libopt++/Makefile
[ 273s] config.status: creating libdb/Makefile
[ 273s] config.status: creating libdb/tests/Makefile
[ 274s] config.status: creating libabi/Makefile
[ 274s] config.status: creating libabi/tests/Makefile
[ 274s] config.status: creating libregex/Makefile
[ 275s] config.status: creating libregex/tests/Makefile
[ 275s] config.status: creating libregex/stl.pat
[ 275s] config.status: creating libregex/tests/mangled-name
[ 276s] config.status: creating events/Makefile
[ 276s] config.status: creating utils/Makefile
[ 276s] config.status: creating doc/Makefile