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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061 |
This is a big file! Only the last 128KiB is shown. Click here to download the full log.
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I../include -Iinclude -I../src -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -O2 -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -Wall -fexceptions -MT src/x86/ffi64.lo -MD -MP -MF src/x86/.deps/ffi64.Tpo -c ../src/x86/ffi64.c -fPIC -DPIC -o src/x86/.libs/ffi64.o
touch /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/.configured_68b329da9893e34099c7d8ad5cb9c940
rm -f /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/.built
touch /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/.built_check
CFLAGS="-Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -I/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include " CXXFLAGS="-Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -I/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include " LDFLAGS="-L/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib -znow -zrelro " make -j1 -C /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/. AR="x86_64-openwrt-linux-gnu-gcc-ar" AS="x86_64-openwrt-linux-gnu-gcc -c -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro" LD=x86_64-openwrt-linux-gnu-ld NM="x86_64-openwrt-linux-gnu-gcc-nm" CC="x86_64-openwrt-linux-gnu-gcc" GCC="x86_64-openwrt-linux-gnu-gcc" CXX="x86_64-openwrt-linux-gnu-g++" RANLIB="x86_64-openwrt-linux-gnu-gcc-ranlib" STRIP=x86_64-openwrt-linux-gnu-strip OBJCOPY=x86_64-openwrt-linux-gnu-objcopy OBJDUMP=x86_64-openwrt-linux-gnu-objdump SIZE=x86_64-openwrt-linux-gnu-size CROSS="x86_64-openwrt-linux-gnu-" ARCH="x86_64" BUILD_CC="cc" BUILD_CFLAGS="-fpic -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/include" CFLAGS="-Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro" LD="x86_64-openwrt-linux-gnu-gcc -Wl,-x -shared" LDFLAGS="-L/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib -znow -zrelro" INDENT="| true" PAM_CAP="no" RAISE_SETFCAP="no" DYNAMIC="yes" lib="lib" ;
make[4]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27'
make -C libcap all
make[5]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap'
=> making cap_names.list.h from /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/../libcap/include/uapi/linux/capability.h
perl -e 'while ($l=<>) { if ($l =~ /^\#define[ \t](CAP[_A-Z]+)[ \t]+([0-9]+)\s+$/) { $tok=$1; $val=$2; $tok =~ tr/A-Z/a-z/; print "{\"$tok\",$val},\n"; } }' /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/../libcap/include/uapi/linux/capability.h | fgrep -v 0x > cap_names.list.h
cc -fpic -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/include _makenames.c -o _makenames
./_makenames > cap_names.h
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fPIC -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/../libcap/include/uapi -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/../libcap/include -c cap_alloc.c -o cap_alloc.o
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fPIC -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/../libcap/include/uapi -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/../libcap/include -c cap_proc.c -o cap_proc.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I../include -Iinclude -I../src -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -O2 -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -Wall -fexceptions -MT src/x86/ffi64.lo -MD -MP -MF src/x86/.deps/ffi64.Tpo -c ../src/x86/ffi64.c -o src/x86/ffi64.o >/dev/null 2>&1
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fPIC -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/../libcap/include/uapi -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/../libcap/include -c cap_extint.c -o cap_extint.o
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fPIC -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/../libcap/include/uapi -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/../libcap/include -c cap_flag.c -o cap_flag.o
depbase=`echo src/x86/unix64.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/usr/bin/env bash ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I../include -Iinclude -I../src -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -I. -I../include -Iinclude -I../src -O2 -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -MT src/x86/unix64.lo -MD -MP -MF $depbase.Tpo -c -o src/x86/unix64.lo ../src/x86/unix64.S &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I../include -Iinclude -I../src -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -I. -I../include -Iinclude -I../src -O2 -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -MT src/x86/unix64.lo -MD -MP -MF src/x86/.deps/unix64.Tpo -c ../src/x86/unix64.S -fPIC -DPIC -o src/x86/.libs/unix64.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I../include -Iinclude -I../src -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -I. -I../include -Iinclude -I../src -O2 -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -MT src/x86/unix64.lo -MD -MP -MF src/x86/.deps/unix64.Tpo -c ../src/x86/unix64.S -o src/x86/unix64.o >/dev/null 2>&1
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fPIC -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/../libcap/include/uapi -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/../libcap/include -c cap_text.c -o cap_text.o
depbase=`echo src/x86/ffi.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/usr/bin/env bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I../include -Iinclude -I../src -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -O2 -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -Wall -fexceptions -MT src/x86/ffi.lo -MD -MP -MF $depbase.Tpo -c -o src/x86/ffi.lo ../src/x86/ffi.c &&\
mv -f $depbase.Tpo $depbase.Plo
cap_text.c: In function 'cap_to_name':
cap_text.c:296:2: warning: ignoring return value of 'asprintf', declared with attribute warn_unused_result [-Wunused-result]
asprintf(&tmp, "%u", cap);
^~~~~~~~~~~~~~~~~~~~~~~~~
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I../include -Iinclude -I../src -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -O2 -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -Wall -fexceptions -MT src/x86/ffi.lo -MD -MP -MF src/x86/.deps/ffi.Tpo -c ../src/x86/ffi.c -fPIC -DPIC -o src/x86/.libs/ffi.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I../include -Iinclude -I../src -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -O2 -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -Wall -fexceptions -MT src/x86/ffi.lo -MD -MP -MF src/x86/.deps/ffi.Tpo -c ../src/x86/ffi.c -o src/x86/ffi.o >/dev/null 2>&1
depbase=`echo src/x86/sysv.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/usr/bin/env bash ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I../include -Iinclude -I../src -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -I. -I../include -Iinclude -I../src -O2 -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -MT src/x86/sysv.lo -MD -MP -MF $depbase.Tpo -c -o src/x86/sysv.lo ../src/x86/sysv.S &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I../include -Iinclude -I../src -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -I. -I../include -Iinclude -I../src -O2 -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -MT src/x86/sysv.lo -MD -MP -MF src/x86/.deps/sysv.Tpo -c ../src/x86/sysv.S -fPIC -DPIC -o src/x86/.libs/sysv.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I../include -Iinclude -I../src -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -I. -I../include -Iinclude -I../src -O2 -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -MT src/x86/sysv.lo -MD -MP -MF src/x86/.deps/sysv.Tpo -c ../src/x86/sysv.S -o src/x86/sysv.o >/dev/null 2>&1
/usr/bin/env bash ./libtool --tag=CC --mode=link gcc -O2 -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -Wall -fexceptions -L/home/user/openwrt/staging_dir/host/lib -L/home/user/openwrt/staging_dir/hostpkg/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/host/lib -o libffi_convenience.la src/prep_cif.lo src/types.lo src/raw_api.lo src/java_raw_api.lo src/closures.lo src/x86/ffi64.lo src/x86/unix64.lo src/x86/ffi.lo src/x86/sysv.lo
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fPIC -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/../libcap/include/uapi -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/../libcap/include -c cap_file.c -o cap_file.o
libtool: link: ar cru .libs/libffi_convenience.a src/.libs/prep_cif.o src/.libs/types.o src/.libs/raw_api.o src/.libs/java_raw_api.o src/.libs/closures.o src/x86/.libs/ffi64.o src/x86/.libs/unix64.o src/x86/.libs/ffi.o src/x86/.libs/sysv.o
ar: `u' modifier ignored since `D' is the default (see `U')
libtool: link: ranlib .libs/libffi_convenience.a
libtool: link: ( cd ".libs" && rm -f "libffi_convenience.la" && ln -s "../libffi_convenience.la" "libffi_convenience.la" )
/usr/bin/env bash ./libtool --tag=CC --mode=link gcc -O2 -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include -Wall -fexceptions -no-undefined -version-info `grep -v '^#' ../libtool-version` '-L/home/user/openwrt/staging_dir/host/lib' '-L/home/user/openwrt/staging_dir/hostpkg/lib' '-L/home/user/openwrt/staging_dir/target-x86_64_glibc/host/lib' -L/home/user/openwrt/staging_dir/host/lib -L/home/user/openwrt/staging_dir/hostpkg/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/host/lib -o libffi.la -rpath /home/user/openwrt/staging_dir/hostpkg/lib src/prep_cif.lo src/types.lo src/raw_api.lo src/java_raw_api.lo src/closures.lo src/x86/ffi64.lo src/x86/unix64.lo src/x86/ffi.lo src/x86/sysv.lo
x86_64-openwrt-linux-gnu-gcc -Wl,-x -shared -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -L/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib -znow -zrelro -Wl,-soname,libcap.so.2 -o libcap.so.2.27 cap_alloc.o cap_proc.o cap_extint.o cap_flag.o cap_text.o cap_file.o
libtool: link: gcc -shared -fPIC -DPIC src/.libs/prep_cif.o src/.libs/types.o src/.libs/raw_api.o src/.libs/java_raw_api.o src/.libs/closures.o src/x86/.libs/ffi64.o src/x86/.libs/unix64.o src/x86/.libs/ffi.o src/x86/.libs/sysv.o -L/home/user/openwrt/staging_dir/host/lib -L/home/user/openwrt/staging_dir/hostpkg/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/host/lib -O2 -Wl,-soname -Wl,libffi.so.6 -o .libs/libffi.so.6.0.4
ln -sf libcap.so.2.27 libcap.so.2
ln -sf libcap.so.2 libcap.so
x86_64-openwrt-linux-gnu-gcc-ar rcs libcap.a cap_alloc.o cap_proc.o cap_extint.o cap_flag.o cap_text.o cap_file.o
x86_64-openwrt-linux-gnu-gcc-ranlib libcap.a
sed -e 's,@prefix@,/usr,' \
-e 's,@exec_prefix@,,' \
-e 's,@libdir@,/lib,' \
-e 's,@includedir@,/usr/include,' \
-e 's,@VERSION@,2.27,' \
-e 's,@deps@,,' \
libcap.pc.in >libcap.pc
make[5]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap'
make -C progs all
make[5]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/progs'
x86_64-openwrt-linux-gnu-gcc -fPIC -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/progs/../libcap/include/uapi -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/progs/../libcap/include -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -c getpcaps.c -o getpcaps.o
libtool: link: (cd ".libs" && rm -f "libffi.so.6" && ln -s "libffi.so.6.0.4" "libffi.so.6")
libtool: link: (cd ".libs" && rm -f "libffi.so" && ln -s "libffi.so.6.0.4" "libffi.so")
libtool: link: ar cru .libs/libffi.a src/prep_cif.o src/types.o src/raw_api.o src/java_raw_api.o src/closures.o src/x86/ffi64.o src/x86/unix64.o src/x86/ffi.o src/x86/sysv.o
ar: `u' modifier ignored since `D' is the default (see `U')
libtool: link: ranlib .libs/libffi.a
libtool: link: ( cd ".libs" && rm -f "libffi.la" && ln -s "../libffi.la" "libffi.la" )
make[7]: Leaving directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu'
make[6]: Leaving directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu'
make[5]: Leaving directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu'
make[4]: Leaving directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1'
touch /home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/.built
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -L/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib -znow -zrelro -o getpcaps getpcaps.o -L../libcap -lcap
CFLAGS="-O2 -I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include" CPPFLAGS="-I/home/user/openwrt/staging_dir/host/include -I/home/user/openwrt/staging_dir/hostpkg/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/host/include" CXXFLAGS="" LDFLAGS="-L/home/user/openwrt/staging_dir/host/lib -L/home/user/openwrt/staging_dir/hostpkg/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/host/lib" make -j1 -C /home/user/openwrt/build_dir/hostpkg/libffi-3.2.1 install
make[4]: Entering directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1'
x86_64-openwrt-linux-gnu-gcc -fPIC -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/progs/../libcap/include/uapi -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/progs/../libcap/include -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -c capsh.c -o capsh.o
MAKE x86_64-pc-linux-gnu : 0 * install
make[5]: Entering directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu'
Making install in include
make[6]: Entering directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu/include'
make[7]: Entering directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu/include'
make[7]: Nothing to be done for 'install-exec-am'.
/bin/mkdir -p '/home/user/openwrt/staging_dir/hostpkg/lib/libffi-3.2.1/include'
/usr/bin/install -c -m 644 ffi.h ffitarget.h '/home/user/openwrt/staging_dir/hostpkg/lib/libffi-3.2.1/include'
make[7]: Leaving directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu/include'
make[6]: Leaving directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu/include'
Making install in testsuite
make[6]: Entering directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu/testsuite'
make[7]: Entering directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu/testsuite'
make[7]: Nothing to be done for 'install-exec-am'.
make[7]: Nothing to be done for 'install-data-am'.
make[7]: Leaving directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu/testsuite'
make[6]: Leaving directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu/testsuite'
Making install in man
make[6]: Entering directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu/man'
make[7]: Entering directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu/man'
make[7]: Nothing to be done for 'install-exec-am'.
/bin/mkdir -p '/home/user/openwrt/staging_dir/hostpkg/share/man/man3'
/usr/bin/install -c -m 644 ../../man/ffi.3 ../../man/ffi_call.3 ../../man/ffi_prep_cif.3 ../../man/ffi_prep_cif_var.3 '/home/user/openwrt/staging_dir/hostpkg/share/man/man3'
make[7]: Leaving directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu/man'
make[6]: Leaving directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu/man'
make[6]: Entering directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu'
make[7]: Entering directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu'
/bin/mkdir -p '/home/user/openwrt/staging_dir/hostpkg/lib'
/usr/bin/env bash ./libtool --mode=install /usr/bin/install -c libffi.la '/home/user/openwrt/staging_dir/hostpkg/lib'
libtool: install: /usr/bin/install -c .libs/libffi.so.6.0.4 /home/user/openwrt/staging_dir/hostpkg/lib/libffi.so.6.0.4
libtool: install: (cd /home/user/openwrt/staging_dir/hostpkg/lib && { ln -s -f libffi.so.6.0.4 libffi.so.6 || { rm -f libffi.so.6 && ln -s libffi.so.6.0.4 libffi.so.6; }; })
libtool: install: (cd /home/user/openwrt/staging_dir/hostpkg/lib && { ln -s -f libffi.so.6.0.4 libffi.so || { rm -f libffi.so && ln -s libffi.so.6.0.4 libffi.so; }; })
libtool: install: /usr/bin/install -c .libs/libffi.lai /home/user/openwrt/staging_dir/hostpkg/lib/libffi.la
libtool: install: /usr/bin/install -c .libs/libffi.a /home/user/openwrt/staging_dir/hostpkg/lib/libffi.a
libtool: install: chmod 644 /home/user/openwrt/staging_dir/hostpkg/lib/libffi.a
libtool: install: ranlib /home/user/openwrt/staging_dir/hostpkg/lib/libffi.a
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -L/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib -znow -zrelro -o capsh capsh.o -L../libcap -lcap
libtool: finish: PATH="/home/user/openwrt/staging_dir/target-x86_64_glibc/host/bin:/home/user/openwrt/staging_dir/hostpkg/bin:/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/bin:/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/bin:/home/user/openwrt/staging_dir/host/bin:/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/bin:/home/user/openwrt/staging_dir/host/bin:/home/user/openwrt/staging_dir/host/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /home/user/openwrt/staging_dir/hostpkg/lib
----------------------------------------------------------------------
Libraries have been installed in:
/home/user/openwrt/staging_dir/hostpkg/lib
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
x86_64-openwrt-linux-gnu-gcc -fPIC -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/progs/../libcap/include/uapi -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/progs/../libcap/include -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -c getcap.c -o getcap.o
/bin/mkdir -p '/home/user/openwrt/staging_dir/hostpkg/share/info'
/usr/bin/install -c -m 644 ../doc/libffi.info '/home/user/openwrt/staging_dir/hostpkg/share/info'
/bin/mkdir -p '/home/user/openwrt/staging_dir/hostpkg/lib/pkgconfig'
/usr/bin/install -c -m 644 libffi.pc '/home/user/openwrt/staging_dir/hostpkg/lib/pkgconfig'
make[7]: Leaving directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu'
make[6]: Leaving directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu'
make[5]: Leaving directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/x86_64-pc-linux-gnu'
make[4]: Leaving directory '/home/user/openwrt/build_dir/hostpkg/libffi-3.2.1'
# Adjust host libffi headers ; the default rule does
# not seem to install them to the proper include folder
install -d -m0755 /home/user/openwrt/staging_dir/hostpkg/include
cp -fpR /home/user/openwrt/staging_dir/hostpkg/lib/libffi-3.2.1/include/*.h /home/user/openwrt/staging_dir/hostpkg/include
mkdir -p /home/user/openwrt/staging_dir/hostpkg/stamp
touch /home/user/openwrt/build_dir/hostpkg/libffi-3.2.1/.built
touch /home/user/openwrt/staging_dir/hostpkg/stamp/.libffi_installed
make[3]: Leaving directory '/home/user/openwrt/feeds/packages/libs/libffi'
time: package/feeds/packages/libffi/host-compile#5.62#2.40#9.46
make[3]: Entering directory '/home/user/openwrt/feeds/packages/libs/libsndfile'
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -L/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib -znow -zrelro -o getcap getcap.o -L../libcap -lcap
x86_64-openwrt-linux-gnu-gcc -fPIC -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/progs/../libcap/include/uapi -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/progs/../libcap/include -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -c setcap.c -o setcap.o
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -L/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib -znow -zrelro -o setcap setcap.o -L../libcap -lcap
make[5]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/progs'
make -C doc all
make[5]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/doc'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/doc'
make -C kdebug all
make[5]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/kdebug'
cd to kdebug to test a kernel build
make[5]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/kdebug'
make[4]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27'
CFLAGS="-Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -I/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include " CXXFLAGS="-Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -I/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include " LDFLAGS="-L/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib -znow -zrelro " make -C /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/. AR="x86_64-openwrt-linux-gnu-gcc-ar" AS="x86_64-openwrt-linux-gnu-gcc -c -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro" LD=x86_64-openwrt-linux-gnu-ld NM="x86_64-openwrt-linux-gnu-gcc-nm" CC="x86_64-openwrt-linux-gnu-gcc" GCC="x86_64-openwrt-linux-gnu-gcc" CXX="x86_64-openwrt-linux-gnu-g++" RANLIB="x86_64-openwrt-linux-gnu-gcc-ranlib" STRIP=x86_64-openwrt-linux-gnu-strip OBJCOPY=x86_64-openwrt-linux-gnu-objcopy OBJDUMP=x86_64-openwrt-linux-gnu-objdump SIZE=x86_64-openwrt-linux-gnu-size CROSS="x86_64-openwrt-linux-gnu-" ARCH="x86_64" BUILD_CC="cc" BUILD_CFLAGS="-fpic -I/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap/include" CFLAGS="-Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27:libcap-2.27 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro" LD="x86_64-openwrt-linux-gnu-gcc -Wl,-x -shared" LDFLAGS="-L/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib -znow -zrelro" INDENT="| true" PAM_CAP="no" RAISE_SETFCAP="no" DYNAMIC="yes" lib="lib" DESTDIR="/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install" install;
make[4]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27'
make -C libcap install
make[5]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap'
mkdir -p -m 0755 /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/usr/include/sys
install -m 0644 include/sys/capability.h /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/usr/include/sys
mkdir -p -m 0755 /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/lib
install -m 0644 libcap.a /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/lib/libcap.a
install -m 0644 libcap.so.2.27 /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/lib/libcap.so.2.27
ln -sf libcap.so.2.27 /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/lib/libcap.so.2
ln -sf libcap.so.2 /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/lib/libcap.so
mkdir -p -m 0755 /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/usr/lib/pkgconfig
install -m 0644 libcap.pc /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/usr/lib/pkgconfig/libcap.pc
make[5]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/libcap'
make -C progs install
make[5]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/progs'
mkdir -p -m 0755 /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/sbin
for p in getpcaps capsh getcap setcap ; do \
install -m 0755 $p /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/sbin ; \
done
make[5]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/progs'
make -C doc install
make[5]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/doc'
mkdir -p -m 755 /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/usr/share/man/man1 /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/usr/share/man/man3 /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/usr/share/man/man8
for man in \
/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/usr/share/man/man1 capsh.1 \
/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/usr/share/man/man3 cap_init.3 cap_free.3 cap_dup.3 cap_clear.3 cap_clear_flag.3 cap_get_flag.3 cap_set_flag.3 cap_compare.3 cap_get_proc.3 cap_get_pid.3 cap_set_proc.3 cap_get_file.3 cap_get_fd.3 cap_set_file.3 cap_set_fd.3 cap_copy_ext.3 cap_size.3 cap_copy_int.3 cap_from_text.3 cap_to_text.3 cap_from_name.3 cap_to_name.3 capsetp.3 capgetp.3 libcap.3 cap_get_bound.3 cap_drop_bound.3 \
/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/usr/share/man/man8 getcap.8 setcap.8 \
; \
do \
case $man in \
/*) sub=$man ; continue ;; \
esac; \
install -m 644 $man $sub ; \
done
make[5]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/doc'
make -C kdebug install
make[5]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/kdebug'
make[5]: Nothing to be done for 'install'.
make[5]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/kdebug'
make[4]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27'
touch /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/.built
rm -rf /home/user/openwrt/tmp/stage-libcap
mkdir -p /home/user/openwrt/tmp/stage-libcap/host /home/user/openwrt/staging_dir/target-x86_64_glibc/packages /home/user/openwrt/staging_dir/host/packages
install -d -m0755 /home/user/openwrt/tmp/stage-libcap/usr/include/sys
cp -fpR /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/usr/include/* /home/user/openwrt/tmp/stage-libcap/usr/include/
install -d -m0755 /home/user/openwrt/tmp/stage-libcap/usr/lib/
cp -fpR /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/lib/* /home/user/openwrt/tmp/stage-libcap/usr/lib/
cp -fpR /home/user/openwrt/build_dir/target-x86_64_glibc/libcap-2.27/ipkg-install/usr/lib/* /home/user/openwrt/tmp/stage-libcap/usr/lib/
find /home/user/openwrt/tmp/stage-libcap -name '*.la' | xargs -r rm -f;
if [ -f /home/user/openwrt/staging_dir/target-x86_64_glibc/packages/libcap.list ]; then /home/user/openwrt/scripts/clean-package.sh "/home/user/openwrt/staging_dir/target-x86_64_glibc/packages/libcap.list" "/home/user/openwrt/staging_dir/target-x86_64_glibc"; fi
if [ -d /home/user/openwrt/tmp/stage-libcap ]; then (cd /home/user/openwrt/tmp/stage-libcap; find ./ > /home/user/openwrt/tmp/stage-libcap.files); SHELL= flock /home/user/openwrt/tmp/.staging-dir.flock -c ' mv /home/user/openwrt/tmp/stage-libcap.files /home/user/openwrt/staging_dir/target-x86_64_glibc/packages/libcap.list && cp -fpR /home/user/openwrt/tmp/stage-libcap/* /home/user/openwrt/staging_dir/target-x86_64_glibc/; '; fi
rm -rf /home/user/openwrt/tmp/stage-libcap
touch /home/user/openwrt/staging_dir/target-x86_64_glibc/stamp/.libcap_installed
make[3]: Leaving directory '/home/user/openwrt/feeds/packages/libs/libcap'
time: package/feeds/packages/libcap/compile#1.20#0.36#1.77
make[3]: Entering directory '/home/user/openwrt/feeds/packages/libs/tcp_wrappers'
mkdir -p /home/user/openwrt/dl
SHELL= flock /home/user/openwrt/tmp/.libsndfile-2019-04-21-25824cb9.tar.xz.flock -c ' /home/user/openwrt/scripts/download.pl "/home/user/openwrt/dl" "libsndfile-2019-04-21-25824cb9.tar.xz" "9b3beef70003456ff297ce50ecd5cb1d066ca98f10f6363562431d773b3fcb3d" "" || ( /home/user/openwrt/scripts/dl_github_archive.py --dl-dir="/home/user/openwrt/dl" --url="https://github.com/erikd/libsndfile.git" --version="25824cb914fb3b79e18f31fb861e218c84be7d34" --subdir="libsndfile-2019-04-21-25824cb9" --source="libsndfile-2019-04-21-25824cb9.tar.xz" --hash="9b3beef70003456ff297ce50ecd5cb1d066ca98f10f6363562431d773b3fcb3d" || ( echo "Checking out files from the git repository..."; mkdir -p /home/user/openwrt/tmp/dl && cd /home/user/openwrt/tmp/dl && rm -rf libsndfile-2019-04-21-25824cb9 && [ \! -d libsndfile-2019-04-21-25824cb9 ] && git clone https://github.com/erikd/libsndfile.git libsndfile-2019-04-21-25824cb9 && (cd libsndfile-2019-04-21-25824cb9 && git checkout 25824cb914fb3b79e18f31fb861e218c84be7d34 && git submodule update --init --recursive) && echo "Packing checkout..." && export TAR_TIMESTAMP=`cd libsndfile-2019-04-21-25824cb9 && git log -1 --format='\''@%ct'\''` && rm -rf libsndfile-2019-04-21-25824cb9/.git && tar --numeric-owner --owner=0 --group=0 --mode=a-s --sort=name ${TAR_TIMESTAMP:+--mtime="$TAR_TIMESTAMP"} -c libsndfile-2019-04-21-25824cb9 | xz -zc -7e > /home/user/openwrt/tmp/dl/libsndfile-2019-04-21-25824cb9.tar.xz && mv /home/user/openwrt/tmp/dl/libsndfile-2019-04-21-25824cb9.tar.xz /home/user/openwrt/dl/ && rm -rf libsndfile-2019-04-21-25824cb9; ); ) '
Can't exec "curl": No such file or directory at /home/user/openwrt/scripts/download.pl line 77.
+ wget --tries=5 --timeout=20 --no-check-certificate --output-document=- https://sources.openwrt.org/libsndfile-2019-04-21-25824cb9.tar.xz
--2019-09-20 01:08:06-- https://sources.openwrt.org/libsndfile-2019-04-21-25824cb9.tar.xz
Resolving sources.openwrt.org (sources.openwrt.org)... mkdir -p /home/user/openwrt/dl
SHELL= flock /home/user/openwrt/tmp/.tcp_wrappers_7.6.tar.gz.flock -c ' /home/user/openwrt/scripts/download.pl "/home/user/openwrt/dl" "tcp_wrappers_7.6.tar.gz" "9543d7adedf78a6de0b221ccbbd1952e08b5138717f4ade814039bb489a4315d" "" "ftp://ftp.porcupine.org/pub/security" '
Can't exec "curl": No such file or directory at /home/user/openwrt/scripts/download.pl line 77.
+ wget --tries=5 --timeout=20 --no-check-certificate --output-document=- ftp://ftp.porcupine.org/pub/security/tcp_wrappers_7.6.tar.gz
--2019-09-20 01:08:06-- ftp://ftp.porcupine.org/pub/security/tcp_wrappers_7.6.tar.gz
=> '-'
Resolving ftp.porcupine.org (ftp.porcupine.org)... 148.251.151.136, 2a01:4f8:210:5087::2
Connecting to sources.openwrt.org (sources.openwrt.org)|148.251.151.136|:443... 168.100.185.123
Connecting to ftp.porcupine.org (ftp.porcupine.org)|168.100.185.123|:21... connected.
Logging in as anonymous ... Logged in!
==> SYST ... connected.
done. ==> PWD ... done.
==> TYPE I ... done. ==> CWD (1) /pub/security ... done.
==> SIZE tcp_wrappers_7.6.tar.gz ... 99438
==> PASV ... done. ==> RETR tcp_wrappers_7.6.tar.gz ... done.
Length: 99438 (97K) (unauthoritative)
tcp_wrappers_7.6.ta 0%[ ] 0 --.-KB/s
tcp_wrappers_7.6.ta 100%[===================>] 97.11K --.-KB/s in 0.02s
2019-09-20 01:08:06 (4.37 MB/s) - written to stdout [99438]
touch /home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6/.prepared_cd0b90193a421766049738eb1d00a469_6664517399ebbbc92a37c5bb081b5c53_check
. /home/user/openwrt/include/shell.sh; gzip -dc /home/user/openwrt/dl/tcp_wrappers_7.6.tar.gz | tar -C /home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6/.. -xf -
[ ! -d ./src/ ] || cp -fpR ./src/. /home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6
Applying ./patches/001-debian_subset.patch using plaintext:
File hosts_access.c is read-only; trying to patch anyway
patching file hosts_access.c
File tcpd.h is read-only; trying to patch anyway
patching file tcpd.h
File Makefile is read-only; trying to patch anyway
patching file Makefile
File hosts_access.5 is read-only; trying to patch anyway
patching file hosts_access.5
File rfc931.c is read-only; trying to patch anyway
patching file rfc931.c
File tcpd.8 is read-only; trying to patch anyway
patching file tcpd.8
File hosts_access.3 is read-only; trying to patch anyway
patching file hosts_access.3
File options.c is read-only; trying to patch anyway
patching file options.c
File fix_options.c is read-only; trying to patch anyway
patching file fix_options.c
File workarounds.c is read-only; trying to patch anyway
patching file workarounds.c
File socket.c is read-only; trying to patch anyway
patching file socket.c
File safe_finger.c is read-only; trying to patch anyway
patching file safe_finger.c
File hosts_options.5 is read-only; trying to patch anyway
patching file hosts_options.5
File tcpdchk.c is read-only; trying to patch anyway
patching file tcpdchk.c
File percent_m.c is read-only; trying to patch anyway
patching file percent_m.c
File scaffold.c is read-only; trying to patch anyway
patching file scaffold.c
patching file weak_symbols.c
Applying ./patches/002-opt_cflags.patch using plaintext:
File Makefile is read-only; trying to patch anyway
patching file Makefile
Applying ./patches/003-scaffold_malloc.patch using plaintext:
File scaffold.c is read-only; trying to patch anyway
patching file scaffold.c
Applying ./patches/004-ipv4_prefix.patch using plaintext:
File hosts_access.5 is read-only; trying to patch anyway
patching file hosts_access.5
File tcpd.h is read-only; trying to patch anyway
patching file tcpd.h
File misc.c is read-only; trying to patch anyway
patching file misc.c
File hosts_access.c is read-only; trying to patch anyway
patching file hosts_access.c
Applying ./patches/005-no--lnsl-on-musl.patch using plaintext:
File Makefile is read-only; trying to patch anyway
patching file Makefile
Applying ./patches/006-compilation-warnings.patch using plaintext:
File clean_exit.c is read-only; trying to patch anyway
patching file clean_exit.c
File diag.c is read-only; trying to patch anyway
patching file diag.c
File eval.c is read-only; trying to patch anyway
patching file eval.c
File fakelog.c is read-only; trying to patch anyway
patching file fakelog.c
File fix_options.c is read-only; trying to patch anyway
patching file fix_options.c
File fromhost.c is read-only; trying to patch anyway
patching file fromhost.c
File hosts_access.c is read-only; trying to patch anyway
patching file hosts_access.c
File hosts_ctl.c is read-only; trying to patch anyway
patching file hosts_ctl.c
File inetcf.c is read-only; trying to patch anyway
patching file inetcf.c
File misc.c is read-only; trying to patch anyway
patching file misc.c
File myvsyslog.c is read-only; trying to patch anyway
patching file myvsyslog.c
File options.c is read-only; trying to patch anyway
patching file options.c
File patchlevel.h is read-only; trying to patch anyway
patching file patchlevel.h
File percent_m.c is read-only; trying to patch anyway
patching file percent_m.c
File percent_x.c is read-only; trying to patch anyway
patching file percent_x.c
File refuse.c is read-only; trying to patch anyway
patching file refuse.c
File rfc931.c is read-only; trying to patch anyway
patching file rfc931.c
File safe_finger.c is read-only; trying to patch anyway
patching file safe_finger.c
File scaffold.c is read-only; trying to patch anyway
patching file scaffold.c
File shell_cmd.c is read-only; trying to patch anyway
patching file shell_cmd.c
File socket.c is read-only; trying to patch anyway
patching file socket.c
File tcpd.c is read-only; trying to patch anyway
patching file tcpd.c
File tcpd.h is read-only; trying to patch anyway
patching file tcpd.h
File tcpdchk.c is read-only; trying to patch anyway
patching file tcpdchk.c
File tcpdmatch.c is read-only; trying to patch anyway
patching file tcpdmatch.c
File tli.c is read-only; trying to patch anyway
patching file tli.c
File try-from.c is read-only; trying to patch anyway
patching file try-from.c
File update.c is read-only; trying to patch anyway
patching file update.c
touch /home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6/.prepared_cd0b90193a421766049738eb1d00a469_6664517399ebbbc92a37c5bb081b5c53
rm -f /home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6/.configured_*
rm -f /home/user/openwrt/staging_dir/target-x86_64_glibc/stamp/.tcp_wrappers_installed
(cd /home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6/./; if [ -x ./configure ]; then find /home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6/ -name config.guess | xargs -r chmod u+w; find /home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6/ -name config.guess | xargs -r -n1 cp --remove-destination /home/user/openwrt/scripts/config.guess; find /home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6/ -name config.sub | xargs -r chmod u+w; find /home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6/ -name config.sub | xargs -r -n1 cp --remove-destination /home/user/openwrt/scripts/config.sub; AR="x86_64-openwrt-linux-gnu-gcc-ar" AS="x86_64-openwrt-linux-gnu-gcc -c -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall" LD=x86_64-openwrt-linux-gnu-ld NM="x86_64-openwrt-linux-gnu-gcc-nm" CC="x86_64-openwrt-linux-gnu-gcc" GCC="x86_64-openwrt-linux-gnu-gcc" CXX="x86_64-openwrt-linux-gnu-g++" RANLIB="x86_64-openwrt-linux-gnu-gcc-ranlib" STRIP=x86_64-openwrt-linux-gnu-strip OBJCOPY=x86_64-openwrt-linux-gnu-objcopy OBJDUMP=x86_64-openwrt-linux-gnu-objdump SIZE=x86_64-openwrt-linux-gnu-size CFLAGS="-Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall " CXXFLAGS="-Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall " CPPFLAGS="-I/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include " LDFLAGS="-L/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib -znow -zrelro " ./configure --target=x86_64-openwrt-linux --host=x86_64-openwrt-linux --build=x86_64-pc-linux-gnu --program-prefix="" --program-suffix="" --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --libexecdir=/usr/lib --sysconfdir=/etc --datadir=/usr/share --localstatedir=/var --mandir=/usr/man --infodir=/usr/info --disable-nls ; fi; )
touch /home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6/.configured_68b329da9893e34099c7d8ad5cb9c940
rm -f /home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6/.built
HTTP request sent, awaiting response... touch /home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6/.built_check
make -C /home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6 AR="x86_64-openwrt-linux-gnu-gcc-ar" AS="x86_64-openwrt-linux-gnu-gcc -c -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall" LD=x86_64-openwrt-linux-gnu-ld NM="x86_64-openwrt-linux-gnu-gcc-nm" CC="x86_64-openwrt-linux-gnu-gcc" GCC="x86_64-openwrt-linux-gnu-gcc" CXX="x86_64-openwrt-linux-gnu-g++" RANLIB="x86_64-openwrt-linux-gnu-gcc-ranlib" STRIP=x86_64-openwrt-linux-gnu-strip OBJCOPY=x86_64-openwrt-linux-gnu-objcopy OBJDUMP=x86_64-openwrt-linux-gnu-objdump SIZE=x86_64-openwrt-linux-gnu-size OPT_CFLAGS="-Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall" LIBS=-lnsl NETGROUP= VSYSLOG= BUGS= EXTRA_CFLAGS="-DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len" FACILITY=LOG_DAEMON SEVERITY=LOG_INFO REAL_DAEMON_DIR=/usr/sbin STYLE="-DPROCESS_OPTIONS" tidy all
make[4]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6'
rm -f tcpd miscd safe_finger tcpdmatch tcpdchk try-from *.[oa] core \
cflags libwrap*.so*
rm -rf shared
chmod -R a+r .
chmod 755 .
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -o tcpd.o -c tcpd.c
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c hosts_access.c -o shared/hosts_access.o
200 OK
Length: 517312 (505K) [application/octet-stream]
Saving to: 'STDOUT'
- 0%[ ] 0 --.-KB/s x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c options.c -o shared/options.o
options.c: In function 'banners_option':
options.c:232:6: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
write(request->fd, "", 1);
^~~~~~~~~~~~~~~~~~~~~~~~~
options.c:238:6: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
write(request->fd, obuf, strlen(obuf));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c shell_cmd.c -o shared/shell_cmd.o
- 39%[======> ] 199.75K 984KB/s x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c rfc931.c -o shared/rfc931.o
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c eval.c -o shared/eval.o
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c hosts_ctl.c -o shared/hosts_ctl.o
- 100%[===================>] 505.19K 1.34MB/s in 0.4s
2019-09-20 01:08:07 (1.34 MB/s) - written to stdout [517312/517312]
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c refuse.c -o shared/refuse.o
touch /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/.prepared_417bfb0627eff5f2f99fdf8c208ceaad_6664517399ebbbc92a37c5bb081b5c53_check
. /home/user/openwrt/include/shell.sh; xzcat /home/user/openwrt/dl/libsndfile-2019-04-21-25824cb9.tar.xz | tar -C /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/.. -xf -
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c percent_x.c -o shared/percent_x.o
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c clean_exit.c -o shared/clean_exit.o
[ ! -d ./src/ ] || cp -fpR ./src/. /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9
touch /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/.prepared_417bfb0627eff5f2f99fdf8c208ceaad_6664517399ebbbc92a37c5bb081b5c53
rm -f /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/.configured_*
rm -f /home/user/openwrt/staging_dir/target-x86_64_glibc/stamp/.libsndfile_installed
mkdir -p /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9
(cd /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9; CFLAGS="-Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9:libsndfile-2019-04-21-25824cb9 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic " CXXFLAGS="-Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9:libsndfile-2019-04-21-25824cb9 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic " LDFLAGS="-L/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib -znow -zrelro " cmake -DCMAKE_SYSTEM_NAME=Linux -DCMAKE_SYSTEM_VERSION=1 -DCMAKE_SYSTEM_PROCESSOR=x86_64 -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_FLAGS_RELEASE="-DNDEBUG" -DCMAKE_CXX_FLAGS_RELEASE="-DNDEBUG" -DCMAKE_C_COMPILER="/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/bin/x86_64-openwrt-linux-gnu-gcc" -DCMAKE_C_COMPILER_ARG1="" -DCMAKE_CXX_COMPILER="/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/bin/x86_64-openwrt-linux-gnu-g++" -DCMAKE_CXX_COMPILER_ARG1="" -DCMAKE_ASM_COMPILER="/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/bin/x86_64-openwrt-linux-gnu-gcc" -DCMAKE_ASM_COMPILER_ARG1="" -DCMAKE_EXE_LINKER_FLAGS:STRING="-L/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib -znow -zrelro" -DCMAKE_MODULE_LINKER_FLAGS:STRING="-L/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib -znow -zrelro -Wl,-Bsymbolic-functions" -DCMAKE_SHARED_LINKER_FLAGS:STRING="-L/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib -znow -zrelro -Wl,-Bsymbolic-functions" -DCMAKE_AR="/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/bin/x86_64-openwrt-linux-gnu-gcc-ar" -DCMAKE_NM="/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/bin/x86_64-openwrt-linux-gnu-gcc-nm" -DCMAKE_RANLIB="/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/bin/x86_64-openwrt-linux-gnu-gcc-ranlib" -DCMAKE_FIND_ROOT_PATH="/home/user/openwrt/staging_dir/target-x86_64_glibc/usr;/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc" -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=BOTH -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DCMAKE_STRIP=: -DCMAKE_INSTALL_PREFIX=/usr -DDL_LIBRARY=/home/user/openwrt/staging_dir/target-x86_64_glibc -DCMAKE_PREFIX_PATH=/home/user/openwrt/staging_dir/target-x86_64_glibc -DCMAKE_SKIP_RPATH=TRUE -DBUILD_SHARED_LIBS:BOOL=ON -DENABLE_EXTERNAL_LIBS:BOOL=FALSE -DBUILD_REGTEST:BOOL=FALSE /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9 )
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c fromhost.c -o shared/fromhost.o
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c fix_options.c -o shared/fix_options.o
fix_options.c: In function 'fix_options':
fix_options.c:55:62: warning: passing argument 5 of 'getsockopt' from incompatible pointer type [-Wincompatible-pointer-types]
if (getsockopt(fd, ipproto, IP_OPTIONS, (char *) optbuf, &optsize) == 0
^
In file included from /home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include/netinet/in.h:23:0,
from fix_options.c:14:
/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include/sys/socket.h:208:12: note: expected 'socklen_t * restrict {aka unsigned int * restrict}' but argument is of type 'size_t * {aka long unsigned int *}'
extern int getsockopt (int __fd, int __level, int __optname,
^~~~~~~~~~
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c socket.c -o shared/socket.o
-- The C compiler identification is GNU 7.4.0
socket.c: In function 'sock_host':
socket.c:99:55: warning: passing argument 3 of 'getpeername' from incompatible pointer type [-Wincompatible-pointer-types]
if (getpeername(fd, (struct sockaddr *) & client, &len) < 0) {
^
In file included from socket.c:26:0:
/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include/sys/socket.h:130:12: note: expected 'socklen_t * restrict {aka unsigned int * restrict}' but argument is of type 'size_t * {aka long unsigned int *}'
extern int getpeername (int __fd, __SOCKADDR_ARG __addr,
^~~~~~~~~~~
socket.c:103:38: warning: passing argument 6 of 'recvfrom' from incompatible pointer type [-Wincompatible-pointer-types]
(struct sockaddr *) & client, &len) < 0) {
^
In file included from /home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include/sys/socket.h:269:0,
from socket.c:26:
/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include/bits/socket2.h:64:1: note: expected 'socklen_t * restrict {aka unsigned int * restrict}' but argument is of type 'size_t * {aka long unsigned int *}'
recvfrom (int __fd, void *__restrict __buf, size_t __n, int __flags,
^~~~~~~~
socket.c:120:55: warning: passing argument 3 of 'getsockname' from incompatible pointer type [-Wincompatible-pointer-types]
if (getsockname(fd, (struct sockaddr *) & server, &len) < 0) {
^
In file included from socket.c:26:0:
/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include/sys/socket.h:116:12: note: expected 'socklen_t * restrict {aka unsigned int * restrict}' but argument is of type 'size_t * {aka long unsigned int *}'
extern int getsockname (int __fd, __SOCKADDR_ARG __addr,
^~~~~~~~~~~
socket.c: In function 'sock_sink':
socket.c:242:73: warning: passing argument 6 of 'recvfrom' from incompatible pointer type [-Wincompatible-pointer-types]
(void) recvfrom(fd, buf, sizeof(buf), 0, (struct sockaddr *) & sin, &size);
^
In file included from /home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include/sys/socket.h:269:0,
from socket.c:26:
/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include/bits/socket2.h:64:1: note: expected 'socklen_t * restrict {aka unsigned int * restrict}' but argument is of type 'size_t * {aka long unsigned int *}'
recvfrom (int __fd, void *__restrict __buf, size_t __n, int __flags,
^~~~~~~~
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c tli.c -o shared/tli.o
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c workarounds.c -o shared/workarounds.o
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c update.c -o shared/update.o
-- The CXX compiler identification is GNU 7.4.0
-- Check for working C compiler: /home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/bin/x86_64-openwrt-linux-gnu-gcc
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c misc.c -o shared/misc.o
-- Check for working C compiler: /home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/bin/x86_64-openwrt-linux-gnu-gcc -- works
-- Detecting C compiler ABI info
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c diag.c -o shared/diag.o
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/bin/x86_64-openwrt-linux-gnu-g++
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c percent_m.c -o shared/percent_m.o
x86_64-openwrt-linux-gnu-gcc -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6:tcp_wrappers_7.6 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -Wall -DFACILITY=LOG_DAEMON -DHOSTS_ACCESS -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/sbin\" -DPROCESS_OPTIONS -DKILL_IP_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DHAVE_STRERROR -DHAVE_WEAKSYMS -D_REENTRANT -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len -fPIC -shared -D_REENTRANT -c myvsyslog.c -o shared/myvsyslog.o
rm -f shared/libwrap.so.0.7.6
x86_64-openwrt-linux-gnu-gcc -o shared/libwrap.so.0.7.6 -shared -Xlinker -soname -Xlinker libwrap.so.0 -lc -lnsl shared/hosts_access.o shared/options.o shared/shell_cmd.o shared/rfc931.o shared/eval.o shared/hosts_ctl.o shared/refuse.o shared/percent_x.o shared/clean_exit.o shared/fromhost.o shared/fix_options.o shared/socket.o shared/tli.o shared/workarounds.o shared/update.o shared/misc.o shared/diag.o shared/percent_m.o shared/myvsyslog.o;
/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib/gcc/x86_64-openwrt-linux-gnu/7.4.0/../../../../x86_64-openwrt-linux-gnu/bin/ld: cannot find -lnsl
collect2: error: ld returned 1 exit status
make[4]: *** [Makefile:745: shared/libwrap.so.0.7.6] Error 1
make[4]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6'
make[3]: *** [Makefile:72: /home/user/openwrt/build_dir/target-x86_64_glibc/tcp_wrappers_7.6/.built] Error 2
make[3]: Leaving directory '/home/user/openwrt/feeds/packages/libs/tcp_wrappers'
time: package/feeds/packages/tcp_wrappers/compile#1.05#0.38#1.65
make[2]: *** [package/Makefile:113: package/feeds/packages/tcp_wrappers/compile] Error 2
make[2]: *** Waiting for unfinished jobs....
-- Check for working CXX compiler: /home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/bin/x86_64-openwrt-linux-gnu-g++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
Build testing required static libraries. To prevent build errors BUILD_TESTING disabled.
--
--
-- Checking large files support...
--
-- Looking for sys/types.h
-- Looking for sys/types.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for stddef.h
-- Looking for stddef.h - found
--
-- Checking size of off_t without any definitions:
-- Check size of off_t
-- Check size of off_t - done
-- Checking of off_t without any definitions: 8
--
-- Result of checking large files support: supported
-- Could NOT find ALSA (missing: ALSA_LIBRARY ALSA_INCLUDE_DIR)
-- Could NOT find Sndio (missing: SNDIO_LIBRARY SNDIO_INCLUDE_DIR)
-- Found VorbisEnc: /home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib/libvorbisenc.so (found version "1.3.6")
-- Found FLAC: /home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib/libFLAC.so (found version "1.3.3")
-- Found Opus: /home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib/libopus.so (found version "1.3.1")
-- Could NOT find Speex (missing: SPEEX_LIBRARY SPEEX_INCLUDE_DIR)
-- Could NOT find SQLITE3 (missing: SQLITE3_LIBRARY SQLITE3_INCLUDE_DIR)
-- Looking for byteswap.h
-- Looking for byteswap.h - found
-- Looking for dlfcn.h
-- Looking for dlfcn.h - found
-- Looking for direct.h
-- Looking for direct.h - not found
-- Looking for endian.h
-- Looking for endian.h - found
-- Looking for inttypes.h
-- Looking for inttypes.h - found
-- Looking for io.h
-- Looking for io.h - not found
-- Looking for sys/time.h
-- Looking for sys/time.h - found
-- Looking for unistd.h
-- Looking for unistd.h - found
-- Check size of int64_t
-- Check size of int64_t - done
-- Check size of long
-- Check size of long - done
-- Check size of long long
-- Check size of long long - done
-- Check size of ssize_t
-- Check size of ssize_t - done
-- Check size of wchar_t
-- Check size of wchar_t - done
-- Check size of int64_t
-- Check size of int64_t - done
-- Looking for floor in m
-- Looking for floor in m - found
-- Looking for sqlite3_close in sqlite3
-- Looking for sqlite3_close in sqlite3 - not found
-- Looking for fstat
-- Looking for fstat - found
-- Looking for fstat64
-- Looking for fstat64 - found
-- Looking for gettimeofday
-- Looking for gettimeofday - found
-- Looking for gmtime
-- Looking for gmtime - found
-- Looking for gmtime_r
-- Looking for gmtime_r - found
-- Looking for localtime
-- Looking for localtime - found
-- Looking for localtime_r
-- Looking for localtime_r - found
-- Looking for lseek
-- Looking for lseek - found
-- Looking for open
-- Looking for open - found
-- Looking for read
-- Looking for read - found
-- Looking for write
-- Looking for write - found
-- Looking for lrint
-- Looking for lrint - found
-- Looking for lrintf
-- Looking for lrintf - found
-- Looking for ftruncate
-- Looking for ftruncate - found
-- Looking for fsync
-- Looking for fsync - found
-- Looking for S_IRGRP
-- Looking for S_IRGRP - found
-- Check if the system is big endian
-- Searching 16 bit integer
-- Check size of unsigned short
-- Check size of unsigned short - done
-- Using unsigned short
-- Check if the system is big endian - little endian
-- Checking for inline...
-- Checking for inline... supported
-- Checking processor clipping capabilities...
-- Checking processor clipping capabilities... disabled
-- Found PythonInterp: /home/user/openwrt/staging_dir/host/bin/python (found version "3.7.3")
-- The following features have been enabled:
* BUILD_SHARED_LIBS, build shared libraries
* ENABLE_CPACK, enable CPack support
* ENABLE_PACKAGE_CONFIG, generate and install package config file
-- The following RECOMMENDED packages have been found:
* VorbisEnc, open source lossy audio codec, <www.vorbis.com/>
Enables Vorbis support
* FLAC, Free Lossless Audio Codec Library, <www.xiph.org/flac/>
Enables FLAC support
* Opus, Standardized open source low-latency fullband codec, <www.opus-codec.org/>
Enables experimental Opus support
-- The following REQUIRED packages have been found:
* PythonInterp, Python is a widely used high-level programming language., <www.python.org/>
Required to build shared libraries
-- The following features have been disabled:
* ENABLE_EXTERNAL_LIBS, enable FLAC, Vorbis, and Opus codecs
* ENABLE_EXPERIMENTAL, enable experimental code
* BUILD_TESTING, build tests
* BUILD_REGTEST, build regtest
* ENABLE_CPU_CLIP, Enable tricky cpu specific clipper
* ENABLE_BOW_DOCS, enable black-on-white html docs
-- The following OPTIONAL packages have not been found:
* ALSA
* Sndio
* Speex, an audio codec tuned for speech, <www.speex.org/>
Enables experemental Speex support
* SQLite3, light weight SQL database engine., <www.sqlite.org/>
Enables regtest
-- Configuring done
-- Generating done
CMake Warning:
Manually-specified variables were not used by the project:
CMAKE_ASM_COMPILER
CMAKE_ASM_COMPILER_ARG1
CMAKE_MODULE_LINKER_FLAGS
DL_LIBRARY
-- Build files have been written to: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9
touch /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/.configured_68b329da9893e34099c7d8ad5cb9c940
rm -f /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/.built
touch /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/.built_check
CFLAGS="-Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9:libsndfile-2019-04-21-25824cb9 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -I/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include " CXXFLAGS="-Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9:libsndfile-2019-04-21-25824cb9 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -I/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include " LDFLAGS="-L/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib -znow -zrelro " make -j1 -C /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/. AR="x86_64-openwrt-linux-gnu-gcc-ar" AS="x86_64-openwrt-linux-gnu-gcc -c -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9:libsndfile-2019-04-21-25824cb9 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic" LD=x86_64-openwrt-linux-gnu-ld NM="x86_64-openwrt-linux-gnu-gcc-nm" CC="x86_64-openwrt-linux-gnu-gcc" GCC="x86_64-openwrt-linux-gnu-gcc" CXX="x86_64-openwrt-linux-gnu-g++" RANLIB="x86_64-openwrt-linux-gnu-gcc-ranlib" STRIP=x86_64-openwrt-linux-gnu-strip OBJCOPY=x86_64-openwrt-linux-gnu-objcopy OBJDUMP=x86_64-openwrt-linux-gnu-objdump SIZE=x86_64-openwrt-linux-gnu-size CROSS="x86_64-openwrt-linux-gnu-" ARCH="x86_64" CMAKE_COMMAND='/home/user/openwrt/staging_dir/host/bin/cmake' CMAKE_DISABLE_cmake_check_build_system=1 ;
make[4]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Build testing required static libraries. To prevent build errors BUILD_TESTING disabled.
-- Could NOT find ALSA (missing: ALSA_LIBRARY ALSA_INCLUDE_DIR)
-- Could NOT find Sndio (missing: SNDIO_LIBRARY SNDIO_INCLUDE_DIR)
-- Could NOT find Speex (missing: SPEEX_LIBRARY SPEEX_INCLUDE_DIR)
-- Could NOT find SQLITE3 (missing: SQLITE3_LIBRARY SQLITE3_INCLUDE_DIR)
-- Checking processor clipping capabilities...
-- Checking processor clipping capabilities... disabled
-- The following features have been enabled:
* BUILD_SHARED_LIBS, build shared libraries
* ENABLE_CPACK, enable CPack support
* ENABLE_PACKAGE_CONFIG, generate and install package config file
-- The following RECOMMENDED packages have been found:
* VorbisEnc, open source lossy audio codec, <www.vorbis.com/>
Enables Vorbis support
* FLAC, Free Lossless Audio Codec Library, <www.xiph.org/flac/>
Enables FLAC support
* Opus, Standardized open source low-latency fullband codec, <www.opus-codec.org/>
Enables experimental Opus support
-- The following REQUIRED packages have been found:
* PythonInterp, Python is a widely used high-level programming language., <www.python.org/>
Required to build shared libraries
-- The following features have been disabled:
* ENABLE_EXTERNAL_LIBS, enable FLAC, Vorbis, and Opus codecs
* ENABLE_EXPERIMENTAL, enable experimental code
* BUILD_TESTING, build tests
* BUILD_REGTEST, build regtest
* ENABLE_CPU_CLIP, Enable tricky cpu specific clipper
* ENABLE_BOW_DOCS, enable black-on-white html docs
-- The following OPTIONAL packages have not been found:
* ALSA
* Sndio
* Speex, an audio codec tuned for speech, <www.speex.org/>
Enables experemental Speex support
* SQLite3, light weight SQL database engine., <www.sqlite.org/>
Enables regtest
-- Configuring done
-- Generating done
-- Build files have been written to: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9
make[5]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target GENFILES
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 0%] Generating Symbols.gnu-binutils...
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 0%] Built target GENFILES
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target sndfile
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 1%] Building C object CMakeFiles/sndfile.dir/src/common.c.o
[ 1%] Building C object CMakeFiles/sndfile.dir/src/file_io.c.o
[ 2%] Building C object CMakeFiles/sndfile.dir/src/command.c.o
[ 3%] Building C object CMakeFiles/sndfile.dir/src/pcm.c.o
[ 4%] Building C object CMakeFiles/sndfile.dir/src/ulaw.c.o
[ 4%] Building C object CMakeFiles/sndfile.dir/src/alaw.c.o
[ 5%] Building C object CMakeFiles/sndfile.dir/src/float32.c.o
[ 6%] Building C object CMakeFiles/sndfile.dir/src/double64.c.o
[ 7%] Building C object CMakeFiles/sndfile.dir/src/ima_adpcm.c.o
[ 7%] Building C object CMakeFiles/sndfile.dir/src/ms_adpcm.c.o
[ 8%] Building C object CMakeFiles/sndfile.dir/src/gsm610.c.o
[ 9%] Building C object CMakeFiles/sndfile.dir/src/dwvw.c.o
[ 10%] Building C object CMakeFiles/sndfile.dir/src/vox_adpcm.c.o
[ 10%] Building C object CMakeFiles/sndfile.dir/src/interleave.c.o
[ 11%] Building C object CMakeFiles/sndfile.dir/src/strings.c.o
[ 12%] Building C object CMakeFiles/sndfile.dir/src/dither.c.o
[ 13%] Building C object CMakeFiles/sndfile.dir/src/cart.c.o
[ 13%] Building C object CMakeFiles/sndfile.dir/src/broadcast.c.o
[ 14%] Building C object CMakeFiles/sndfile.dir/src/audio_detect.c.o
[ 15%] Building C object CMakeFiles/sndfile.dir/src/ima_oki_adpcm.c.o
[ 16%] Building C object CMakeFiles/sndfile.dir/src/alac.c.o
[ 16%] Building C object CMakeFiles/sndfile.dir/src/chunk.c.o
[ 17%] Building C object CMakeFiles/sndfile.dir/src/ogg.c.o
[ 18%] Building C object CMakeFiles/sndfile.dir/src/chanmap.c.o
[ 19%] Building C object CMakeFiles/sndfile.dir/src/id3.c.o
[ 19%] Building C object CMakeFiles/sndfile.dir/src/sndfile.c.o
[ 20%] Building C object CMakeFiles/sndfile.dir/src/aiff.c.o
[ 21%] Building C object CMakeFiles/sndfile.dir/src/au.c.o
[ 22%] Building C object CMakeFiles/sndfile.dir/src/avr.c.o
[ 22%] Building C object CMakeFiles/sndfile.dir/src/caf.c.o
[ 23%] Building C object CMakeFiles/sndfile.dir/src/dwd.c.o
[ 24%] Building C object CMakeFiles/sndfile.dir/src/flac.c.o
[ 25%] Building C object CMakeFiles/sndfile.dir/src/g72x.c.o
[ 25%] Building C object CMakeFiles/sndfile.dir/src/htk.c.o
[ 26%] Building C object CMakeFiles/sndfile.dir/src/ircam.c.o
[ 27%] Building C object CMakeFiles/sndfile.dir/src/macos.c.o
[ 28%] Building C object CMakeFiles/sndfile.dir/src/mat4.c.o
[ 28%] Building C object CMakeFiles/sndfile.dir/src/mat5.c.o
[ 29%] Building C object CMakeFiles/sndfile.dir/src/nist.c.o
[ 30%] Building C object CMakeFiles/sndfile.dir/src/paf.c.o
[ 31%] Building C object CMakeFiles/sndfile.dir/src/pvf.c.o
[ 31%] Building C object CMakeFiles/sndfile.dir/src/raw.c.o
[ 32%] Building C object CMakeFiles/sndfile.dir/src/rx2.c.o
[ 33%] Building C object CMakeFiles/sndfile.dir/src/sd2.c.o
[ 34%] Building C object CMakeFiles/sndfile.dir/src/sds.c.o
[ 34%] Building C object CMakeFiles/sndfile.dir/src/svx.c.o
[ 35%] Building C object CMakeFiles/sndfile.dir/src/txw.c.o
[ 36%] Building C object CMakeFiles/sndfile.dir/src/voc.c.o
[ 37%] Building C object CMakeFiles/sndfile.dir/src/wve.c.o
[ 37%] Building C object CMakeFiles/sndfile.dir/src/w64.c.o
[ 38%] Building C object CMakeFiles/sndfile.dir/src/wavlike.c.o
[ 39%] Building C object CMakeFiles/sndfile.dir/src/wav.c.o
[ 40%] Building C object CMakeFiles/sndfile.dir/src/xi.c.o
[ 40%] Building C object CMakeFiles/sndfile.dir/src/mpc2k.c.o
[ 41%] Building C object CMakeFiles/sndfile.dir/src/rf64.c.o
[ 42%] Building C object CMakeFiles/sndfile.dir/src/ogg_vorbis.c.o
[ 43%] Building C object CMakeFiles/sndfile.dir/src/ogg_speex.c.o
[ 43%] Building C object CMakeFiles/sndfile.dir/src/ogg_pcm.c.o
[ 44%] Building C object CMakeFiles/sndfile.dir/src/ogg_opus.c.o
[ 45%] Building C object CMakeFiles/sndfile.dir/src/ogg_vcomment.c.o
[ 46%] Building C object CMakeFiles/sndfile.dir/src/nms_adpcm.c.o
[ 46%] Building C object CMakeFiles/sndfile.dir/src/GSM610/add.c.o
[ 47%] Building C object CMakeFiles/sndfile.dir/src/GSM610/code.c.o
[ 48%] Building C object CMakeFiles/sndfile.dir/src/GSM610/decode.c.o
[ 49%] Building C object CMakeFiles/sndfile.dir/src/GSM610/gsm_create.c.o
[ 49%] Building C object CMakeFiles/sndfile.dir/src/GSM610/gsm_decode.c.o
[ 50%] Building C object CMakeFiles/sndfile.dir/src/GSM610/gsm_destroy.c.o
[ 51%] Building C object CMakeFiles/sndfile.dir/src/GSM610/gsm_encode.c.o
[ 52%] Building C object CMakeFiles/sndfile.dir/src/GSM610/gsm_option.c.o
[ 52%] Building C object CMakeFiles/sndfile.dir/src/GSM610/long_term.c.o
[ 53%] Building C object CMakeFiles/sndfile.dir/src/GSM610/lpc.c.o
[ 54%] Building C object CMakeFiles/sndfile.dir/src/GSM610/preprocess.c.o
[ 55%] Building C object CMakeFiles/sndfile.dir/src/GSM610/rpe.c.o
[ 55%] Building C object CMakeFiles/sndfile.dir/src/GSM610/short_term.c.o
[ 56%] Building C object CMakeFiles/sndfile.dir/src/GSM610/table.c.o
[ 57%] Building C object CMakeFiles/sndfile.dir/src/G72x/g721.c.o
[ 58%] Building C object CMakeFiles/sndfile.dir/src/G72x/g723_16.c.o
[ 58%] Building C object CMakeFiles/sndfile.dir/src/G72x/g723_24.c.o
[ 59%] Building C object CMakeFiles/sndfile.dir/src/G72x/g723_40.c.o
[ 60%] Building C object CMakeFiles/sndfile.dir/src/G72x/g72x.c.o
[ 61%] Building C object CMakeFiles/sndfile.dir/src/ALAC/ALACBitUtilities.c.o
[ 61%] Building C object CMakeFiles/sndfile.dir/src/ALAC/ag_dec.c.o
[ 62%] Building C object CMakeFiles/sndfile.dir/src/ALAC/ag_enc.c.o
[ 63%] Building C object CMakeFiles/sndfile.dir/src/ALAC/dp_dec.c.o
[ 64%] Building C object CMakeFiles/sndfile.dir/src/ALAC/dp_enc.c.o
[ 64%] Building C object CMakeFiles/sndfile.dir/src/ALAC/matrix_dec.c.o
[ 65%] Building C object CMakeFiles/sndfile.dir/src/ALAC/matrix_enc.c.o
[ 66%] Building C object CMakeFiles/sndfile.dir/src/ALAC/alac_decoder.c.o
[ 67%] Building C object CMakeFiles/sndfile.dir/src/ALAC/alac_encoder.c.o
[ 67%] Linking C shared library libsndfile.so
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 67%] Built target sndfile
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target sndfilehandle
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 68%] Building CXX object CMakeFiles/sndfilehandle.dir/examples/sndfilehandle.cc.o
[ 69%] Linking CXX executable sndfilehandle
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 69%] Built target sndfilehandle
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target list_formats
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 70%] Building C object CMakeFiles/list_formats.dir/examples/list_formats.c.o
[ 71%] Linking C executable list_formats
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 71%] Built target list_formats
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target sfprocess
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 72%] Building C object CMakeFiles/sfprocess.dir/examples/sfprocess.c.o
[ 73%] Linking C executable sfprocess
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 73%] Built target sfprocess
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target sndfile-to-text
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 74%] Building C object CMakeFiles/sndfile-to-text.dir/examples/sndfile-to-text.c.o
[ 75%] Linking C executable sndfile-to-text
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 75%] Built target sndfile-to-text
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target sndfile-salvage
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 76%] Building C object CMakeFiles/sndfile-salvage.dir/programs/sndfile-salvage.c.o
[ 77%] Building C object CMakeFiles/sndfile-salvage.dir/programs/common.c.o
[ 77%] Linking C executable sndfile-salvage
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 77%] Built target sndfile-salvage
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target sndfile-concat
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 77%] Building C object CMakeFiles/sndfile-concat.dir/programs/sndfile-concat.c.o
[ 78%] Building C object CMakeFiles/sndfile-concat.dir/programs/common.c.o
[ 79%] Linking C executable sndfile-concat
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 79%] Built target sndfile-concat
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target sndfile-deinterleave
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 80%] Building C object CMakeFiles/sndfile-deinterleave.dir/programs/sndfile-deinterleave.c.o
[ 81%] Building C object CMakeFiles/sndfile-deinterleave.dir/programs/common.c.o
[ 81%] Linking C executable sndfile-deinterleave
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 81%] Built target sndfile-deinterleave
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target sndfile-loopify
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 82%] Building C object CMakeFiles/sndfile-loopify.dir/examples/sndfile-loopify.c.o
[ 82%] Linking C executable sndfile-loopify
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 82%] Built target sndfile-loopify
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target make_sine
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 83%] Building C object CMakeFiles/make_sine.dir/examples/make_sine.c.o
[ 83%] Linking C executable make_sine
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 83%] Built target make_sine
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target sndfile-interleave
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 83%] Building C object CMakeFiles/sndfile-interleave.dir/programs/sndfile-interleave.c.o
[ 84%] Building C object CMakeFiles/sndfile-interleave.dir/programs/common.c.o
[ 85%] Linking C executable sndfile-interleave
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 85%] Built target sndfile-interleave
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target sndfile-info
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 86%] Building C object CMakeFiles/sndfile-info.dir/programs/sndfile-info.c.o
[ 87%] Building C object CMakeFiles/sndfile-info.dir/programs/common.c.o
[ 88%] Linking C executable sndfile-info
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 88%] Built target sndfile-info
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target sndfile-play
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 89%] Building C object CMakeFiles/sndfile-play.dir/programs/sndfile-play.c.o
[ 89%] Building C object CMakeFiles/sndfile-play.dir/programs/common.c.o
[ 90%] Linking C executable sndfile-play
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 90%] Built target sndfile-play
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target sndfile-convert
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 91%] Building C object CMakeFiles/sndfile-convert.dir/programs/sndfile-convert.c.o
[ 91%] Building C object CMakeFiles/sndfile-convert.dir/programs/common.c.o
[ 92%] Linking C executable sndfile-convert
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 92%] Built target sndfile-convert
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target sndfile-cmp
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 93%] Building C object CMakeFiles/sndfile-cmp.dir/programs/sndfile-cmp.c.o
[ 94%] Building C object CMakeFiles/sndfile-cmp.dir/programs/common.c.o
[ 95%] Linking C executable sndfile-cmp
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 95%] Built target sndfile-cmp
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target sndfile-metadata-set
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 95%] Building C object CMakeFiles/sndfile-metadata-set.dir/programs/sndfile-metadata-set.c.o
[ 96%] Building C object CMakeFiles/sndfile-metadata-set.dir/programs/common.c.o
[ 97%] Linking C executable sndfile-metadata-set
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 97%] Built target sndfile-metadata-set
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Scanning dependencies of target sndfile-metadata-get
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 98%] Building C object CMakeFiles/sndfile-metadata-get.dir/programs/sndfile-metadata-get.c.o
[ 99%] Building C object CMakeFiles/sndfile-metadata-get.dir/programs/common.c.o
[100%] Linking C executable sndfile-metadata-get
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[100%] Built target sndfile-metadata-get
make[5]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[4]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
CFLAGS="-Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9:libsndfile-2019-04-21-25824cb9 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -I/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include " CXXFLAGS="-Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9:libsndfile-2019-04-21-25824cb9 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic -I/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/include -I/home/user/openwrt/staging_dir/target-x86_64_glibc/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/include -I/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/include " LDFLAGS="-L/home/user/openwrt/staging_dir/target-x86_64_glibc/usr/lib -L/home/user/openwrt/staging_dir/target-x86_64_glibc/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/usr/lib -L/home/user/openwrt/staging_dir/toolchain-x86_64_gcc-7.4.0_glibc/lib -znow -zrelro " make -C /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/. AR="x86_64-openwrt-linux-gnu-gcc-ar" AS="x86_64-openwrt-linux-gnu-gcc -c -Os -pipe -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -iremap/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9:libsndfile-2019-04-21-25824cb9 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -fpic" LD=x86_64-openwrt-linux-gnu-ld NM="x86_64-openwrt-linux-gnu-gcc-nm" CC="x86_64-openwrt-linux-gnu-gcc" GCC="x86_64-openwrt-linux-gnu-gcc" CXX="x86_64-openwrt-linux-gnu-g++" RANLIB="x86_64-openwrt-linux-gnu-gcc-ranlib" STRIP=x86_64-openwrt-linux-gnu-strip OBJCOPY=x86_64-openwrt-linux-gnu-objcopy OBJDUMP=x86_64-openwrt-linux-gnu-objdump SIZE=x86_64-openwrt-linux-gnu-size CROSS="x86_64-openwrt-linux-gnu-" ARCH="x86_64" CMAKE_COMMAND='/home/user/openwrt/staging_dir/host/bin/cmake' CMAKE_DISABLE_cmake_check_build_system=1 DESTDIR="/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install" install;
make[4]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[5]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 0%] Built target GENFILES
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 67%] Built target sndfile
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 69%] Built target sndfilehandle
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 71%] Built target list_formats
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 73%] Built target sfprocess
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 75%] Built target sndfile-to-text
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 77%] Built target sndfile-salvage
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 79%] Built target sndfile-concat
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 81%] Built target sndfile-deinterleave
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 82%] Built target sndfile-loopify
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 83%] Built target make_sine
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 85%] Built target sndfile-interleave
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 88%] Built target sndfile-info
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 90%] Built target sndfile-play
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 92%] Built target sndfile-convert
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 95%] Built target sndfile-cmp
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[ 97%] Built target sndfile-metadata-set
make[6]: Entering directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
make[6]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
[100%] Built target sndfile-metadata-get
make[5]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
Install the project...
-- Install configuration: "Release"
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/lib/libsndfile.so.1.0.29
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/lib/libsndfile.so.1
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/lib/libsndfile.so
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/include/sndfile.hh
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/include/sndfile.h
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/bin/sndfile-info
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/bin/sndfile-play
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/bin/sndfile-convert
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/bin/sndfile-cmp
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/bin/sndfile-metadata-set
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/bin/sndfile-metadata-get
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/bin/sndfile-interleave
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/bin/sndfile-deinterleave
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/bin/sndfile-concat
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/bin/sndfile-salvage
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/lib/cmake/SndFile/SndFileConfig.cmake
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/lib/cmake/SndFile/SndFileConfig-release.cmake
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/lib/cmake/SndFile/SndFileConfigVersion.cmake
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/man/man1/sndfile-info.1
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/man/man1/sndfile-play.1
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/man/man1/sndfile-convert.1
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/man/man1/sndfile-cmp.1
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/man/man1/sndfile-metadata-get.1
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/man/man1/sndfile-concat.1
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/man/man1/sndfile-interleave.1
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/man/man1/sndfile-salvage.1
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/doc/libsndfile/index.html
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/doc/libsndfile/libsndfile.jpg
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/doc/libsndfile/libsndfile.css
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/doc/libsndfile/print.css
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/doc/libsndfile/api.html
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/doc/libsndfile/command.html
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/doc/libsndfile/bugs.html
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/doc/libsndfile/sndfile_info.html
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/doc/libsndfile/new_file_type.HOWTO
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/doc/libsndfile/win32.html
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/doc/libsndfile/FAQ.html
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/doc/libsndfile/lists.html
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/doc/libsndfile/embedded_files.html
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/doc/libsndfile/octave.html
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/share/doc/libsndfile/tutorial.html
-- Installing: /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/usr/lib/pkgconfig/sndfile.pc
make[4]: Leaving directory '/home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9'
touch /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/.built
rm -rf /home/user/openwrt/tmp/stage-libsndfile
mkdir -p /home/user/openwrt/tmp/stage-libsndfile/host /home/user/openwrt/staging_dir/target-x86_64_glibc/packages /home/user/openwrt/staging_dir/host/packages
install -d -m0755 /home/user/openwrt/tmp/stage-libsndfile
cp -fpR /home/user/openwrt/build_dir/target-x86_64_glibc/libsndfile-2019-04-21-25824cb9/ipkg-install/* /home/user/openwrt/tmp/stage-libsndfile/
find /home/user/openwrt/tmp/stage-libsndfile -name '*.la' | xargs -r rm -f;
if [ -f /home/user/openwrt/staging_dir/target-x86_64_glibc/packages/libsndfile.list ]; then /home/user/openwrt/scripts/clean-package.sh "/home/user/openwrt/staging_dir/target-x86_64_glibc/packages/libsndfile.list" "/home/user/openwrt/staging_dir/target-x86_64_glibc"; fi
if [ -d /home/user/openwrt/tmp/stage-libsndfile ]; then (cd /home/user/openwrt/tmp/stage-libsndfile; find ./ > /home/user/openwrt/tmp/stage-libsndfile.files); SHELL= flock /home/user/openwrt/tmp/.staging-dir.flock -c ' mv /home/user/openwrt/tmp/stage-libsndfile.files /home/user/openwrt/staging_dir/target-x86_64_glibc/packages/libsndfile.list && cp -fpR /home/user/openwrt/tmp/stage-libsndfile/* /home/user/openwrt/staging_dir/target-x86_64_glibc/; '; fi
rm -rf /home/user/openwrt/tmp/stage-libsndfile
touch /home/user/openwrt/staging_dir/target-x86_64_glibc/stamp/.libsndfile_installed
make[3]: Leaving directory '/home/user/openwrt/feeds/packages/libs/libsndfile'
time: package/feeds/packages/libsndfile/compile#18.29#4.56#23.53
make[2]: Leaving directory '/home/user/openwrt'
make[1]: *** [package/Makefile:107: /home/user/openwrt/staging_dir/target-x86_64_glibc/stamp/.package_compile] Error 2
make[1]: Leaving directory '/home/user/openwrt'
make: *** [/home/user/openwrt/include/toplevel.mk:218: world] Error 2
|