-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompile555.txt
1818 lines (1736 loc) · 177 KB
/
compile555.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
For an ARMv6 device without FPU, you need a build without FPU:
$ export NO_FPU=1
For an ARMv5 device or the Android emulator, you need an ARMv5 build:
$ export NO_ARMV6=1
If you plan to use a release build, run 'compile.sh release'
VLC source found
Building the contribs
Guessing build system... i686-linux-gnu
Creating configuration file... config.mak
Bootstrap completed.
Run "make" to start compilation.
Other targets:
* make install same as "make"
* make prebuilt fetch and install prebuilt binaries
* make list list packages
* make fetch fetch required source tarballs
* make fetch-all fetch all source tarballs
* make distclean clean everything and undo bootstrap
* make mostlyclean clean everything except source tarballs
* make clean clean everything
* make package prepare prebuilt packages
make: 没有什么可以做的为 `fetch'。
make: 没有什么可以做的为 `all'。
Bootstraping
generating modules/**/Makefile.am
..................................
+ autoreconf --install --force --verbose -I m4
autoreconf: Entering directory `.'
autoreconf: running: autopoint --force
Copying file po/Makevars.template
autoreconf: running: aclocal -I m4 --force -I m4
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --install --copy --force
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, `autotools'.
libtoolize: copying file `autotools/config.guess'
libtoolize: copying file `autotools/config.sub'
libtoolize: copying file `autotools/install-sh'
libtoolize: copying file `autotools/ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
libtoolize: copying file `m4/libtool.m4'
libtoolize: copying file `m4/ltoptions.m4'
libtoolize: copying file `m4/ltsugar.m4'
libtoolize: copying file `m4/ltversion.m4'
libtoolize: copying file `m4/lt~obsolete.m4'
autoreconf: running: /usr/bin/autoconf --include=m4 --force
autoreconf: running: /usr/bin/autoheader --include=m4 --force
autoreconf: running: automake --add-missing --copy --force-missing
autoreconf: Leaving directory `.'
+ rm -f po/Makevars.template
+ rm -f stamp-h*
+ set +x
Successfully bootstrapped
Configuring
checking build system type... x86_64-unknown-linux-gnu
checking host system type... arm-unknown-linux-androideabi
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for arm-linux-androideabi-strip... /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-strip
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking how to create a ustar tar archive... gnutar
checking whether make supports nested variables... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for style of include used by make... GNU
checking for arm-linux-androideabi-gcc... /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... yes
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm accepts -g... yes
checking for /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm option to accept ISO C89... none needed
checking dependency style of /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm... gcc3
checking for /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm option to accept ISO C99... -std=gnu99
checking how to run the C preprocessor... /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 and cc understand -c and -o together... yes
checking whether we are using the GNU C++ compiler... yes
checking whether /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm accepts -g... yes
checking dependency style of /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm... gcc3
checking how to run the C preprocessor... /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 -E
checking for arm-linux-androideabi-gcc... arm-linux-androideabi-gcc
checking whether we are using the GNU Objective C compiler... no
checking whether arm-linux-androideabi-gcc accepts -g... no
checking dependency style of arm-linux-androideabi-gcc... gcc3
checking dependency style of arm-linux-androideabi-gcc... (cached) gcc3
checking for egrep... (cached) /bin/grep -E
checking whether make sets $(MAKE)... (cached) yes
checking dependency style of /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99... gcc3
checking for desktop-file-validate... desktop-file-validate
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for C/C++ restrict keyword... __restrict
checking for an Android system... yes
checking for 3rd party libraries path... /home/sunlit/android/vlc/contrib/arm-linux-androideabi
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99... /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/arm-linux-androideabi/bin/ld
checking if the linker (/home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/arm-linux-androideabi/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-nm
checking the name lister (/home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to arm-unknown-linux-androideabi format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/arm-linux-androideabi/bin/ld option to reload object files... -r
checking for arm-linux-androideabi-objdump... arm-linux-androideabi-objdump
checking how to recognize dependent libraries... (cached) pass_all
checking for arm-linux-androideabi-dlltool... no
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for arm-linux-androideabi-ar... /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-ar
checking for archiver @FILE support... @
checking for arm-linux-androideabi-strip... (cached) /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-strip
checking for arm-linux-androideabi-ranlib... /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-ranlib
checking command to parse /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-nm output from /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 object... ok
checking for sysroot... no
checking for arm-linux-androideabi-mt... no
checking for mt... mt
configure: WARNING: using cross tools not prefixed with host triplet
checking if mt is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 supports -fno-rtti -fno-exceptions... no
checking for /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 option to produce PIC... -fPIC -DPIC
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 PIC flag -fPIC -DPIC works... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 static flag -static works... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 supports -c -o file.o... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 supports -c -o file.o... (cached) yes
checking whether the /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 linker (/home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/arm-linux-androideabi/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... yes
checking whether a program can dlopen itself... cross
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -E
checking for ld used by /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm... /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/arm-linux-androideabi/bin/ld
checking if the linker (/home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/arm-linux-androideabi/bin/ld) is GNU ld... yes
checking whether the /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm linker (/home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/arm-linux-androideabi/bin/ld) supports shared libraries... yes
checking for /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm option to produce PIC... -fPIC -DPIC
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm PIC flag -fPIC -DPIC works... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm static flag -static works... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm supports -c -o file.o... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm supports -c -o file.o... (cached) yes
checking whether the /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm linker (/home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/arm-linux-androideabi/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for arm-linux-androideabi-windres... no
checking for windres... no
checking for bash... /bin/bash
checking if dolt supports this host... yes, replacing libtool
checking whether NLS is requested... yes
checking for msgfmt... no
checking for gmsgfmt... :
checking for xgettext... no
checking for msgmerge... no
checking for ld used by GCC... /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/arm-linux-androideabi/bin/ld
checking if the linker (/home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/arm-linux-androideabi/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... no
checking for iconv... yes
checking for working iconv... guessing yes
checking how to link with libiconv... /home/sunlit/android/vlc/contrib/arm-linux-androideabi/lib/libiconv.a
checking for GNU gettext in libintl... no
checking whether to use NLS... no
checking for iconv... (cached) yes
checking for working iconv... (cached) guessing yes
checking how to link with libiconv... /home/sunlit/android/vlc/contrib/arm-linux-androideabi/lib/libiconv.a
checking for iconv declaration...
extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for buggy GNU/libc versions... not present
checking for shared objects suffix... .so
checking whether nanosleep is declared... yes
checking for daemon... yes
checking for fcntl... yes
checking for fstatvfs... no
checking for fork... yes
checking for getenv... yes
checking for getpwuid_r... no
checking for isatty... yes
checking for lstat... yes
checking for memalign... yes
checking for mmap... yes
checking for openat... yes
checking for pread... yes
checking for posix_fadvise... no
checking for posix_madvise... no
checking for setlocale... yes
checking for stricmp... no
checking for strnicmp... no
checking for strptime... yes
checking for uselocale... no
checking for atof... no
checking for atoll... yes
checking for dirfd... yes
checking for fdopendir... yes
checking for flockfile... yes
checking for fsync... yes
checking for getdelim... no
checking for getpid... yes
checking for gmtime_r... yes
checking for inet_pton... yes
checking for lldiv... yes
checking for localtime_r... yes
checking for nrand48... yes
checking for poll... yes
checking for posix_memalign... no
checking for rewind... yes
checking for setenv... yes
checking for strcasecmp... yes
checking for strcasestr... yes
checking for strdup... yes
checking for strlcpy... yes
checking for strncasecmp... yes
checking for strndup... yes
checking for strnlen... yes
checking for strsep... yes
checking for strtof... no
checking for strtok_r... yes
checking for strtoll... yes
checking for swab... no
checking for tdestroy... no
checking for strverscmp... no
checking for fdatasync... yes
checking for static_assert in assert.h... no
checking for working strcoll... no
checking for accept4... no
checking for pipe2... yes
checking for eventfd... yes
checking for vmsplice... no
checking for sched_getaffinity... no
checking for struct pollfd... yes
checking for library containing connect... none required
checking for library containing getaddrinfo... none required
checking for if_nameindex... no
checking for if_nametoindex... yes
checking for socklen_t in sys/socket.h... yes
checking for struct sockaddr_storage... yes
checking for getopt_long... yes
checking for cos in -lm... yes
checking for lrintf in -lm... yes
checking for library containing dlopen... none required
checking for library containing pthread_rwlock_init... none required
checking for clock_nanosleep in -lrt... no
checking for nanosleep... yes
checking for sem_init in -lrt... no
checking search.h usability... no
checking search.h presence... no
checking for search.h... no
checking getopt.h usability... yes
checking getopt.h presence... yes
checking for getopt.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking xlocale.h usability... no
checking xlocale.h presence... no
checking for xlocale.h... no
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking sys/ioctl.h usability... yes
checking sys/ioctl.h presence... yes
checking for sys/ioctl.h... yes
checking arpa/inet.h usability... yes
checking arpa/inet.h presence... yes
checking for arpa/inet.h... yes
checking netinet/udplite.h usability... no
checking netinet/udplite.h presence... no
checking for netinet/udplite.h... no
checking sys/eventfd.h usability... yes
checking sys/eventfd.h presence... yes
checking for sys/eventfd.h... yes
checking for net/if.h... yes
checking for sys/mount.h... yes
checking machine/param.h usability... no
checking machine/param.h presence... no
checking for machine/param.h... no
checking sys/shm.h usability... no
checking sys/shm.h presence... no
checking for sys/shm.h... no
checking linux/version.h usability... yes
checking linux/version.h presence... yes
checking for linux/version.h... yes
checking linux/dccp.h usability... yes
checking linux/dccp.h presence... yes
checking for linux/dccp.h... yes
checking scsi/scsi.h usability... no
checking scsi/scsi.h presence... no
checking for scsi/scsi.h... no
checking linux/magic.h usability... yes
checking linux/magic.h presence... yes
checking for linux/magic.h... yes
checking syslog.h usability... yes
checking syslog.h presence... yes
checking for syslog.h... yes
checking mntent.h usability... yes
checking mntent.h presence... yes
checking for mntent.h... yes
checking for ssize_t... yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking for arm-linux-androideabi-pkg-config... no
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking for MINIZIP... no
checking unzip.h usability... no
checking unzip.h presence... no
checking for unzip.h... no
checking for IDN... no
checking for ntohl in sys/param.h... no
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 accepts -Wall... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 accepts -Wextra... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 accepts -Wsign-compare... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 accepts -Wundef... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 accepts -Wpointer-arith... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 accepts -Wbad-function-cast... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 accepts -Wwrite-strings... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 accepts -Wmissing-prototypes... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 accepts -Wvolatile-register-var... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 accepts -Werror-implicit-function-declaration... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 accepts -pipe... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm accepts -Wall... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm accepts -Wextra... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm accepts -Wsign-compare... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm accepts -Wundef... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm accepts -Wpointer-arith... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-g++ --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm accepts -Wvolatile-register-var... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 accepts -fvisibility=hidden... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 accepts -ffast-math... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 accepts -funroll-loops... yes
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 accepts -fomit-frame-pointer... yes
checking __attribute__ ((aligned ())) support... 64
checking for __attribute__((packed))... yes
checking execinfo.h usability... no
checking execinfo.h presence... no
checking for execinfo.h... no
checking for backtrace... no
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 groks 3D Now! inline assembly... no
checking if /home/sunlit/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin//arm-linux-androideabi-gcc --sysroot=/home/sunlit/android-ndk-r8c/platforms/android-9/arch-arm -std=gnu99 groks ARM NEON assembly... yes
checking for LIBPROXY... no
checking for live555 version 1324598400 or later... yes
checking for main in -lliveMedia_pic... no
checking for main in -lliveMedia... yes
checking for DC1394... no
configure: WARNING: Library libdc1394-2 >= 2.1.0 needed for dc1394 was not found
checking for OPENCV... no
configure: WARNING: Library opencv > 2.0 needed for opencv was not found
checking libsmbclient.h usability... no
checking libsmbclient.h presence... no
checking for libsmbclient.h... no
checking for SFTP... no
configure: WARNING: Library libssh2 needed for sftp was not found
checking for Linux DVB version 5.1... no
checking for DVBPSI... yes
checking for OGG... yes
checking for MUX_OGG... yes
checking for SHOUT... no
configure: WARNING: Library shout >= 2.1 needed for shout was not found
checking ebml/EbmlVersion.h usability... yes
checking ebml/EbmlVersion.h presence... yes
checking for ebml/EbmlVersion.h... yes
checking for libebml version >= 1.0.0... yes
checking matroska/KaxVersion.h usability... yes
checking matroska/KaxVersion.h presence... yes
checking for matroska/KaxVersion.h... yes
checking for libmatroska version >= 1.0.0... yes
checking matroska/KaxAttachments.h usability... yes
checking matroska/KaxAttachments.h presence... yes
checking for matroska/KaxAttachments.h... yes
checking for main in -lebml_pic... no
checking for main in -lebml... yes
checking mpc/mpcdec.h usability... no
checking mpc/mpcdec.h presence... no
checking for mpc/mpcdec.h... no
checking mpcdec/mpcdec.h usability... no
checking mpcdec/mpcdec.h presence... no
checking for mpcdec/mpcdec.h... no
checking for libcrystalhd/libcrystalhd_if.h... no
checking if linker supports -Bsymbolic... yes
checking for AVCODEC... yes
checking libavcodec/avcodec.h usability... yes
checking libavcodec/avcodec.h presence... yes
checking for libavcodec/avcodec.h... yes
checking libavutil/avutil.h usability... yes
checking libavutil/avutil.h presence... yes
checking for libavutil/avutil.h... yes
checking for AVFORMAT... yes
checking libavformat/avformat.h usability... yes
checking libavformat/avformat.h presence... yes
checking for libavformat/avformat.h... yes
checking libavformat/avio.h usability... yes
checking libavformat/avio.h presence... yes
checking for libavformat/avio.h... yes
checking for libavutil/avutil.h... (cached) yes
checking for SWSCALE... yes
checking libswscale/swscale.h usability... yes
checking libswscale/swscale.h presence... yes
checking for libswscale/swscale.h... yes
checking for POSTPROC... yes
checking postproc/postprocess.h usability... no
checking postproc/postprocess.h presence... no
checking for postproc/postprocess.h... no
checking for TWOLAME... no
configure: WARNING: Library twolame needed for twolame was not found
checking a52dec/a52.h usability... yes
checking a52dec/a52.h presence... yes
checking for a52dec/a52.h... yes
checking for a52_free in -la52... yes
checking for FLAC... yes
checking for LIBMPEG2... yes
checking for SPEEX... yes
checking for SPEEXDSP... yes
checking for OPUS... yes
checking for THEORA... yes
checking png.h usability... yes
checking png.h presence... yes
checking for png.h... yes
checking for png_set_rows in -lpng... yes
checking for X26410B... no
checking for LIBASS... yes
checking fontconfig/fontconfig.h usability... no
checking fontconfig/fontconfig.h presence... no
checking for fontconfig/fontconfig.h... no
checking for KATE... no
configure: WARNING: Library kate >= 0.3.0 needed for kate was not found
checking for TIGER... no
checking for GL... no
checking GL/gl.h usability... no
checking GL/gl.h presence... no
checking for GL/gl.h... no
checking for X... no
checking X11/Xlib.h usability... no
checking X11/Xlib.h presence... no
checking for X11/Xlib.h... no
checking for FREETYPE... yes
checking Carbon/Carbon.h usability... no
checking Carbon/Carbon.h presence... no
checking for Carbon/Carbon.h... no
checking for fontconfig/fontconfig.h... (cached) no
configure: WARNING: library fontconfig not found. Styles will be disabled in freetype
checking for FRIBIDI... yes
checking linux/fb.h usability... yes
checking linux/fb.h presence... yes
checking for linux/fb.h... yes
checking kva.h usability... no
checking kva.h presence... no
checking for kva.h... no
checking sndio.h usability... no
checking sndio.h presence... no
checking for sndio.h... no
checking audioclient.h usability... no
checking audioclient.h presence... no
checking for audioclient.h... no
checking SLES/OpenSLES.h usability... yes
checking SLES/OpenSLES.h presence... yes
checking for SLES/OpenSLES.h... yes
checking kai.h usability... no
checking kai.h presence... no
checking for kai.h... no
configure: WARNING: The skins2 module depends on the Qt4 interface, Qt4 is not built so skins2 is disabled.
checking for NCURSES... no
checking for VSXU... no
configure: WARNING: No package 'libvsxu' found.
checking for BONJOUR... no
configure: WARNING: Library avahi-client >= 0.6 needed for bonjour was not found
checking for UPNP... no
configure: WARNING: Library libupnp needed for upnp was not found
checking for LIBXML2... yes
checking whether GCRYCTL_SET_THREAD_CBS is declared... yes
checking for gcry_control in -lgcrypt... yes
checking for GNUTLS... yes
checking for MCE... no
checking for TAGLIB... yes
checking whether byte ordering is bigendian... no
../configure: line 47524: kde4-config: command not found
configure: creating ./config.status
config.status: creating Makefile
config.status: creating doc/Makefile
config.status: creating modules/Makefile
config.status: creating m4/Makefile
config.status: creating po/Makefile.in
config.status: creating share/Makefile
config.status: creating compat/Makefile
config.status: creating src/Makefile
config.status: creating lib/Makefile
config.status: creating bin/Makefile
config.status: creating test/Makefile
config.status: creating modules/access/Makefile
config.status: creating modules/access/rtp/Makefile
config.status: creating modules/access_output/Makefile
config.status: creating modules/audio_filter/Makefile
config.status: creating modules/audio_mixer/Makefile
config.status: creating modules/audio_output/Makefile
config.status: creating modules/codec/Makefile
config.status: creating modules/control/Makefile
config.status: creating modules/demux/Makefile
config.status: creating modules/gui/Makefile
config.status: creating modules/gui/macosx/Makefile
config.status: creating modules/gui/minimal_macosx/Makefile
config.status: creating modules/gui/macosx_dialog_provider/Makefile
config.status: creating modules/gui/qt4/Makefile
config.status: creating modules/gui/skins2/Makefile
config.status: creating modules/lua/Makefile
config.status: creating modules/meta_engine/Makefile
config.status: creating modules/misc/Makefile
config.status: creating modules/media_library/Makefile
config.status: creating modules/mux/Makefile
config.status: creating modules/notify/Makefile
config.status: creating modules/packetizer/Makefile
config.status: creating modules/services_discovery/Makefile
config.status: creating modules/stream_filter/Makefile
config.status: creating modules/stream_out/Makefile
config.status: creating modules/text_renderer/Makefile
config.status: creating modules/video_chroma/Makefile
config.status: creating modules/video_filter/Makefile
config.status: creating modules/video_output/Makefile
config.status: creating modules/visualization/Makefile
config.status: creating modules/mmx/Makefile
config.status: creating modules/sse2/Makefile
config.status: creating modules/altivec/Makefile
config.status: creating modules/arm_neon/Makefile
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
libvlc configuration
--------------------
version : 2.1.0-git
system : linux
architecture : arm
optimizations : yes
build vlc executable : no
To build vlc and its plugins, type `make', or `./compile' if you like nice colors.
Building
make all-recursive
make[1]: 正在进入目录 `/home/sunlit/android/vlc/android'
Making all in compat
make[2]: 正在进入目录 `/home/sunlit/android/vlc/android/compat'
make all-am
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/compat'
make[3]: 没有什么可以做的为 `all-am'。
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/compat'
make[2]:正在离开目录 `/home/sunlit/android/vlc/android/compat'
Making all in doc
make[2]: 正在进入目录 `/home/sunlit/android/vlc/android/doc'
make[2]: 没有什么可以做的为 `all'。
make[2]:正在离开目录 `/home/sunlit/android/vlc/android/doc'
Making all in po
make[2]: 正在进入目录 `/home/sunlit/android/vlc/android/po'
make[2]:正在离开目录 `/home/sunlit/android/vlc/android/po'
Making all in share
make[2]: 正在进入目录 `/home/sunlit/android/vlc/android/share'
GEN vlc.desktop
make[2]:正在离开目录 `/home/sunlit/android/vlc/android/share'
Making all in src
make[2]: 正在进入目录 `/home/sunlit/android/vlc/android/src'
GEN stamp-revision
make all-am
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/src'
GEN ../../src/revision.c
CC revision.lo
CCLD libvlccore.la
copying selected object files to avoid basename conflicts...
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/src'
make[2]:正在离开目录 `/home/sunlit/android/vlc/android/src'
Making all in modules
make[2]: 正在进入目录 `/home/sunlit/android/vlc/android/modules'
Making all in access
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/access'
make all-recursive
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/access'
Making all in rtp
make[5]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/access/rtp'
make all-am
make[6]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/access/rtp'
make[6]: 没有什么可以做的为 `all-am'。
make[6]:正在离开目录 `/home/sunlit/android/vlc/android/modules/access/rtp'
make[5]:正在离开目录 `/home/sunlit/android/vlc/android/modules/access/rtp'
make[5]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/access'
make[5]: 没有什么可以做的为 `all-am'。
make[5]:正在离开目录 `/home/sunlit/android/vlc/android/modules/access'
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/access'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/access'
Making all in audio_filter
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/audio_filter'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/audio_filter'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/audio_filter'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/audio_filter'
Making all in audio_mixer
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/audio_mixer'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/audio_mixer'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/audio_mixer'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/audio_mixer'
Making all in audio_output
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/audio_output'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/audio_output'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/audio_output'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/audio_output'
Making all in codec
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/codec'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/codec'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/codec'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/codec'
Making all in control
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/control'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/control'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/control'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/control'
Making all in demux
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/demux'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/demux'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/demux'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/demux'
Making all in gui
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/gui'
make all-recursive
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/gui'
Making all in macosx
make[5]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/gui/macosx'
make all-am
make[6]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/gui/macosx'
make[6]: 没有什么可以做的为 `all-am'。
make[6]:正在离开目录 `/home/sunlit/android/vlc/android/modules/gui/macosx'
make[5]:正在离开目录 `/home/sunlit/android/vlc/android/modules/gui/macosx'
Making all in macosx_dialog_provider
make[5]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/gui/macosx_dialog_provider'
make all-am
make[6]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/gui/macosx_dialog_provider'
make[6]: 没有什么可以做的为 `all-am'。
make[6]:正在离开目录 `/home/sunlit/android/vlc/android/modules/gui/macosx_dialog_provider'
make[5]:正在离开目录 `/home/sunlit/android/vlc/android/modules/gui/macosx_dialog_provider'
Making all in minimal_macosx
make[5]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/gui/minimal_macosx'
make all-am
make[6]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/gui/minimal_macosx'
make[6]: 没有什么可以做的为 `all-am'。
make[6]:正在离开目录 `/home/sunlit/android/vlc/android/modules/gui/minimal_macosx'
make[5]:正在离开目录 `/home/sunlit/android/vlc/android/modules/gui/minimal_macosx'
make[5]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/gui'
make[5]: 没有什么可以做的为 `all-am'。
make[5]:正在离开目录 `/home/sunlit/android/vlc/android/modules/gui'
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/gui'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/gui'
Making all in meta_engine
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/meta_engine'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/meta_engine'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/meta_engine'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/meta_engine'
Making all in misc
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/misc'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/misc'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/misc'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/misc'
Making all in media_library
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/media_library'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/media_library'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/media_library'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/media_library'
Making all in notify
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/notify'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/notify'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/notify'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/notify'
Making all in packetizer
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/packetizer'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/packetizer'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/packetizer'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/packetizer'
Making all in services_discovery
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/services_discovery'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/services_discovery'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/services_discovery'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/services_discovery'
Making all in stream_filter
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/stream_filter'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/stream_filter'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/stream_filter'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/stream_filter'
Making all in text_renderer
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/text_renderer'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/text_renderer'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/text_renderer'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/text_renderer'
Making all in video_chroma
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/video_chroma'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/video_chroma'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/video_chroma'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/video_chroma'
Making all in video_filter
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/video_filter'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/video_filter'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/video_filter'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/video_filter'
Making all in video_output
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/video_output'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/video_output'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/video_output'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/video_output'
Making all in visualization
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/visualization'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/visualization'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/visualization'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/visualization'
Making all in access_output
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/access_output'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/access_output'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/access_output'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/access_output'
Making all in mux
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/mux'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/mux'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/mux'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/mux'
Making all in stream_out
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/stream_out'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/stream_out'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/stream_out'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/stream_out'
Making all in arm_neon
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/arm_neon'
make all-am
make[4]: 正在进入目录 `/home/sunlit/android/vlc/android/modules/arm_neon'
make[4]: 没有什么可以做的为 `all-am'。
make[4]:正在离开目录 `/home/sunlit/android/vlc/android/modules/arm_neon'
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules/arm_neon'
Making all in .
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/modules'
make[3]: 没有什么可以做的为 `all-am'。
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/modules'
make[2]:正在离开目录 `/home/sunlit/android/vlc/android/modules'
Making all in lib
make[2]: 正在进入目录 `/home/sunlit/android/vlc/android/lib'
GEN ../include/vlc/libvlc_version.h
config.status: creating src/../include/vlc/libvlc_version.h
make all-am
make[3]: 正在进入目录 `/home/sunlit/android/vlc/android/lib'
CC revision.lo
CCLD libvlc.la
make[3]:正在离开目录 `/home/sunlit/android/vlc/android/lib'
make[2]:正在离开目录 `/home/sunlit/android/vlc/android/lib'
Making all in test
make[2]: 正在进入目录 `/home/sunlit/android/vlc/android/test'
make[2]: 没有什么可以做的为 `all'。
make[2]:正在离开目录 `/home/sunlit/android/vlc/android/test'
make[2]: 正在进入目录 `/home/sunlit/android/vlc/android'
GEN rvlc
GEN cvlc
make[2]:正在离开目录 `/home/sunlit/android/vlc/android'
make[1]:正在离开目录 `/home/sunlit/android/vlc/android'
Building Android
cd vlc-android && rm -rf gen libs obj bin vlc-android/bin/VLC-debug.apk
rm -rf java-libs/*/gen java-libs/*/bin
rm -f android-libs/*.so android-libs/*.c
rm -f vlc-android/obj/local/armeabi/libvlcjni.so vlc-android/obj/local/armeabi/libiomx-ics.so vlc-android/obj/local/armeabi/libiomx-hc.so vlc-android/obj/local/armeabi/libiomx-gingerbread.so vlc-android/jni/libvlcjni.h
Generating vlc-android/jni/libvlcjni.h
Generating android-libs/libstagefright.c
Generating android-libs/libstagefright.so
Generating android-libs/libmedia.c
Generating android-libs/libmedia.so
Generating android-libs/libutils.c
Generating android-libs/libutils.so
Generating android-libs/libbinder.c
Generating android-libs/libbinder.so
=== Building libvlcjni ===
make[1]: Entering directory `/home/sunlit/android/vlc-android'
/home/sunlit/android-ndk-r8c/build/core/add-application.mk:128: Android NDK: WARNING: APP_PLATFORM android-9 is larger than android:minSdkVersion 7 in ./AndroidManifest.xml
Compile++ thumb : iomx-gingerbread <= iomx.cpp
StaticLibrary : libstdc++.a
SharedLibrary : libiomx-gingerbread.so
Install : libiomx-gingerbread.so => libs/armeabi/libiomx-gingerbread.so
Compile++ thumb : iomx-hc <= iomx.cpp
SharedLibrary : libiomx-hc.so
Install : libiomx-hc.so => libs/armeabi/libiomx-hc.so
Compile++ thumb : iomx-ics <= iomx.cpp
SharedLibrary : libiomx-ics.so
Install : libiomx-ics.so => libs/armeabi/libiomx-ics.so
Compile arm : vlcjni <= libvlcjni.c
In file included from jni/libvlcjni.c:30:0:
.././vlc/include/vlc_common.h: In function 'vlc_memalign':
.././vlc/include/vlc_common.h:832:5: warning: implicit declaration of function 'posix_memalign' [-Wimplicit-function-declaration]
Compile arm : vlcjni <= aout.c
Compile arm : vlcjni <= thumbnailer.c
Compile arm : vlcjni <= pthread-condattr.c
Compile arm : vlcjni <= pthread-rwlocks.c
Compile arm : vlcjni <= pthread-once.c
Compile arm : vlcjni <= eventfd.c
Compile arm : vlcjni <= sem.c
Compile arm : vlcjni <= pipe2.c
Compile arm : vlcjni <= wcpcpy.c
Compile arm : vlcjni <= wcpncpy.c
Compile arm : vlcjni <= wcscasecmp.c
Compile arm : vlcjni <= wcscat.c
Compile arm : vlcjni <= wcschr.c
Compile arm : vlcjni <= wcscmp.c
Compile arm : vlcjni <= wcscoll.c
Compile arm : vlcjni <= wcscpy.c
Compile arm : vlcjni <= wcscspn.c
Compile arm : vlcjni <= wcsdup.c
Compile arm : vlcjni <= wcslcat.c
Compile arm : vlcjni <= wcslcpy.c
Compile arm : vlcjni <= wcslen.c
Compile arm : vlcjni <= wcsncasecmp.c
Compile arm : vlcjni <= wcsncat.c
Compile arm : vlcjni <= wcsncmp.c
Compile arm : vlcjni <= wcsncpy.c
Compile arm : vlcjni <= wcsnlen.c
Compile arm : vlcjni <= wcspbrk.c
Compile arm : vlcjni <= wcsrchr.c
Compile arm : vlcjni <= wcsspn.c
Compile arm : vlcjni <= wcsstr.c
Compile arm : vlcjni <= wcstok.c
Compile arm : vlcjni <= wcswidth.c
Compile arm : vlcjni <= wcsxfrm.c
Compile arm : vlcjni <= wmemchr.c
Compile arm : vlcjni <= wmemcmp.c
Compile arm : vlcjni <= wmemcpy.c
Compile arm : vlcjni <= wmemmove.c
Compile arm : vlcjni <= wmemset.c
SharedLibrary : libvlcjni.so
Install : libvlcjni.so => libs/armeabi/libvlcjni.so
make[1]: Leaving directory `/home/sunlit/android/vlc-android'
=== Building vlc-android/bin/VLC-release-unsigned.apk for armeabi ===
date +"%Y-%m-%d" > vlc-android/assets/builddate.txt
echo `id -u -n`@`hostname` > vlc-android/assets/builder.txt
git rev-parse --short HEAD > vlc-android/assets/revision.txt
./gen-env.sh vlc-android
Buildfile: /home/sunlit/android/vlc-android/build.xml
-set-mode-check:
-set-release-mode:
[echo] *************************************************
[echo] **** Android Manifest has debuggable=true ****
[echo] **** Doing DEBUG packaging with RELEASE keys ****
[echo] *************************************************
-release-obfuscation-check:
[echo] proguard.config is ${proguard.config}
-check-env:
[checkenv] Android SDK Tools Revision 21
[checkenv] Installed at /home/sunlit/sdk
-setup:
[echo] Project Name: VLC
[gettype] Project Type: Application
-build-setup:
[echo] Resolving Build Target for VLC...
[gettarget] Project Target: Android 4.2
[gettarget] API level: 17
[echo] ----------
[echo] Creating output directories if needed...
[mkdir] Created dir: /home/sunlit/android/vlc-android/bin
[mkdir] Created dir: /home/sunlit/android/vlc-android/bin/res
[mkdir] Created dir: /home/sunlit/android/vlc-android/gen
[mkdir] Created dir: /home/sunlit/android/vlc-android/bin/classes
[mkdir] Created dir: /home/sunlit/android/vlc-android/bin/dexedLibs
[echo] ----------
[echo] Resolving Dependencies for VLC...
[dependency] Library dependencies:
[dependency]
[dependency] ------------------
[dependency] Ordered libraries:
[echo] ----------
[echo] Building Libraries with 'release'...
nodeps:
-set-mode-check:
-set-release-mode:
-release-obfuscation-check:
[echo] proguard.config is ${proguard.config}
-check-env:
[checkenv] Android SDK Tools Revision 21
[checkenv] Installed at /home/sunlit/sdk
-setup:
[echo] Project Name: SlidingMenu
[gettype] Project Type: Android Library
-build-setup:
[echo] Resolving Build Target for SlidingMenu...
[gettarget] Project Target: Android 4.2
[gettarget] API level: 17
[echo] ----------
[echo] Creating output directories if needed...
[mkdir] Created dir: /home/sunlit/android/java-libs/SlidingMenu/bin
[mkdir] Created dir: /home/sunlit/android/java-libs/SlidingMenu/bin/res
[mkdir] Created dir: /home/sunlit/android/java-libs/SlidingMenu/gen
[mkdir] Created dir: /home/sunlit/android/java-libs/SlidingMenu/bin/classes
[mkdir] Created dir: /home/sunlit/android/java-libs/SlidingMenu/bin/dexedLibs
[echo] ----------
[echo] Resolving Dependencies for SlidingMenu...
[dependency] Library dependencies:
[dependency] No Libraries
-pre-build:
-code-gen:
[mergemanifest] Merging AndroidManifest files into one.
[mergemanifest] Manifest merger disabled. Using project manifest only.
[echo] Handling aidl files...
[aidl] No AIDL files to compile.
[echo] ----------
[echo] Handling RenderScript files...
[renderscript] No RenderScript files to compile.
[echo] ----------
[echo] Handling Resources...
[aapt] Generating resource IDs...
[echo] ----------