Advertisement
Guest User

Untitled

a guest
Feb 18th, 2016
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.06 KB | None | 0 0
  1. x264 configure script
  2. Command line options: "--enable-pic" "--enable-static" "--disable-cli"
  3.  
  4. checking whether gcc works... yes
  5. checking whether gcc supports for( int i = 0; i < 9; i++ ); with -std=gnu99... yes
  6. checking for -mpreferred-stack-boundary=5... yes
  7. checking whether yasm supports vpmovzxwd ymm0, xmm0... yes
  8. checking whether gcc supports __asm__("pabsw %xmm0, %xmm0");... yes
  9. checking for pthread_create(0,0,0,0); in pthread.h... yes
  10. checking for cpu_set_t p_aff; return CPU_COUNT(&p_aff); in sched.h... yes
  11. checking for return log2f(2); in math.h... yes
  12. checking whether defined(MAP_PRIVATE) is true... yes
  13. checking for MADV_HUGEPAGE; in sys/mman.h... yes
  14. checking for sws_init_context(0,0,0); in libswscale/swscale.h... no
  15. Failed commandline was:
  16. --------------------------------------------------
  17. gcc conftest.c -m64 -Wall -I. -I$(SRCPATH) -std=gnu99 -mpreferred-stack-boundary=5 -lswscale -lavutil -m64 -lm -lpthread -o conftest
  18. conftest.c:1:32: fatal error: libswscale/swscale.h: No such file or directory
  19. #include <libswscale/swscale.h>
  20. ^
  21. compilation terminated.
  22. --------------------------------------------------
  23. Failed program was:
  24. --------------------------------------------------
  25. #include <libswscale/swscale.h>
  26. int main (void) { sws_init_context(0,0,0); return 0; }
  27. --------------------------------------------------
  28. checking for -lpostproc... no
  29. Failed commandline was:
  30. --------------------------------------------------
  31. gcc conftest.c -m64 -Wall -I. -I$(SRCPATH) -std=gnu99 -mpreferred-stack-boundary=5 -lpostproc -m64 -lm -lpthread -o conftest
  32. /usr/bin/ld: cannot find -lpostproc
  33. collect2: error: ld returned 1 exit status
  34. --------------------------------------------------
  35. Failed program was:
  36. --------------------------------------------------
  37. int main (void) { return 0; }
  38. --------------------------------------------------
  39. checking for -lavcodec... no
  40. Failed commandline was:
  41. --------------------------------------------------
  42. gcc conftest.c -m64 -Wall -I. -I$(SRCPATH) -std=gnu99 -mpreferred-stack-boundary=5 -lavcodec -m64 -lm -lpthread -o conftest
  43. /usr/bin/ld: cannot find -lavcodec
  44. collect2: error: ld returned 1 exit status
  45. --------------------------------------------------
  46. Failed program was:
  47. --------------------------------------------------
  48. int main (void) { return 0; }
  49. --------------------------------------------------
  50. checking for -lswscale... no
  51. Failed commandline was:
  52. --------------------------------------------------
  53. gcc conftest.c -m64 -Wall -I. -I$(SRCPATH) -std=gnu99 -mpreferred-stack-boundary=5 -lswscale -m64 -lm -lpthread -o conftest
  54. /usr/bin/ld: cannot find -lswscale
  55. collect2: error: ld returned 1 exit status
  56. --------------------------------------------------
  57. Failed program was:
  58. --------------------------------------------------
  59. int main (void) { return 0; }
  60. --------------------------------------------------
  61. checking for -lavutil... no
  62. Failed commandline was:
  63. --------------------------------------------------
  64. gcc conftest.c -m64 -Wall -I. -I$(SRCPATH) -std=gnu99 -mpreferred-stack-boundary=5 -lavutil -m64 -lm -lpthread -o conftest
  65. /usr/bin/ld: cannot find -lavutil
  66. collect2: error: ld returned 1 exit status
  67. --------------------------------------------------
  68. Failed program was:
  69. --------------------------------------------------
  70. int main (void) { return 0; }
  71. --------------------------------------------------
  72. checking for -lm... yes
  73. checking for -lz... yes
  74. checking for -lbz2... no
  75. Failed commandline was:
  76. --------------------------------------------------
  77. gcc conftest.c -m64 -Wall -I. -I$(SRCPATH) -std=gnu99 -mpreferred-stack-boundary=5 -lbz2 -m64 -lm -lpthread -o conftest
  78. /usr/bin/ld: cannot find -lbz2
  79. collect2: error: ld returned 1 exit status
  80. --------------------------------------------------
  81. Failed program was:
  82. --------------------------------------------------
  83. int main (void) { return 0; }
  84. --------------------------------------------------
  85. checking for -lpthread... yes
  86. checking for -lavifil32... no
  87. Failed commandline was:
  88. --------------------------------------------------
  89. gcc conftest.c -m64 -Wall -I. -I$(SRCPATH) -std=gnu99 -mpreferred-stack-boundary=5 -lavifil32 -m64 -lm -lpthread -o conftest
  90. /usr/bin/ld: cannot find -lavifil32
  91. collect2: error: ld returned 1 exit status
  92. --------------------------------------------------
  93. Failed program was:
  94. --------------------------------------------------
  95. int main (void) { return 0; }
  96. --------------------------------------------------
  97. checking for -lws2_32... no
  98. Failed commandline was:
  99. --------------------------------------------------
  100. gcc conftest.c -m64 -Wall -I. -I$(SRCPATH) -std=gnu99 -mpreferred-stack-boundary=5 -lws2_32 -m64 -lm -lpthread -o conftest
  101. /usr/bin/ld: cannot find -lws2_32
  102. collect2: error: ld returned 1 exit status
  103. --------------------------------------------------
  104. Failed program was:
  105. --------------------------------------------------
  106. int main (void) { return 0; }
  107. --------------------------------------------------
  108. checking for av_frame_free(0); in libavformat/avformat.h... no
  109. Failed commandline was:
  110. --------------------------------------------------
  111. gcc conftest.c -m64 -Wall -I. -I$(SRCPATH) -std=gnu99 -mpreferred-stack-boundary=5 -L. -lavformat -lm -lz -lpthread -m64 -lm -lpthread -o conftest
  112. conftest.c:1:34: fatal error: libavformat/avformat.h: No such file or directory
  113. #include <libavformat/avformat.h>
  114. ^
  115. compilation terminated.
  116. --------------------------------------------------
  117. Failed program was:
  118. --------------------------------------------------
  119. #include <libavformat/avformat.h>
  120. int main (void) { av_frame_free(0); return 0; }
  121. --------------------------------------------------
  122. checking for FFMS_DestroyVideoSource(0); in ffms.h... no
  123. Failed commandline was:
  124. --------------------------------------------------
  125. gcc conftest.c -m64 -Wall -I. -I$(SRCPATH) -std=gnu99 -mpreferred-stack-boundary=5 -lffms2 -m64 -lm -lpthread -o conftest
  126. conftest.c:1:18: fatal error: ffms.h: No such file or directory
  127. #include <ffms.h>
  128. ^
  129. compilation terminated.
  130. --------------------------------------------------
  131. Failed program was:
  132. --------------------------------------------------
  133. #include <ffms.h>
  134. int main (void) { FFMS_DestroyVideoSource(0); return 0; }
  135. --------------------------------------------------
  136. checking for FFMS_DestroyVideoSource(0); in ffms.h... no
  137. Failed commandline was:
  138. --------------------------------------------------
  139. gcc conftest.c -m64 -Wall -I. -I$(SRCPATH) -std=gnu99 -mpreferred-stack-boundary=5 -lffms2 -lstdc++ -L. -lavformat -lm -lz -lpthread -m64 -lm -lpthread -o conftest
  140. conftest.c:1:18: fatal error: ffms.h: No such file or directory
  141. #include <ffms.h>
  142. ^
  143. compilation terminated.
  144. --------------------------------------------------
  145. Failed program was:
  146. --------------------------------------------------
  147. #include <ffms.h>
  148. int main (void) { FFMS_DestroyVideoSource(0); return 0; }
  149. --------------------------------------------------
  150. checking for lsmash.h... no
  151. Failed commandline was:
  152. --------------------------------------------------
  153. gcc conftest.c -m64 -Wall -I. -I$(SRCPATH) -std=gnu99 -mpreferred-stack-boundary=5 -llsmash -m64 -lm -lpthread -o conftest
  154. conftest.c:1:20: fatal error: lsmash.h: No such file or directory
  155. #include <lsmash.h>
  156. ^
  157. compilation terminated.
  158. --------------------------------------------------
  159. Failed program was:
  160. --------------------------------------------------
  161. #include <lsmash.h>
  162. int main (void) { return 0; }
  163. --------------------------------------------------
  164. checking for -lz... yes
  165. checking for gpac/isomedia.h... no
  166. Failed commandline was:
  167. --------------------------------------------------
  168. gcc conftest.c -m64 -Wall -I. -I$(SRCPATH) -std=gnu99 -mpreferred-stack-boundary=5 -lgpac_static -lz -m64 -lm -lpthread -o conftest
  169. conftest.c:1:27: fatal error: gpac/isomedia.h: No such file or directory
  170. #include <gpac/isomedia.h>
  171. ^
  172. compilation terminated.
  173. --------------------------------------------------
  174. Failed program was:
  175. --------------------------------------------------
  176. #include <gpac/isomedia.h>
  177. int main (void) { return 0; }
  178. --------------------------------------------------
  179. checking for uint32_t test_vec __attribute__ ((vector_size (16))) = {0,1,2,3}; in stdint.h... yes
  180. checking for stdio.h... yes
  181. checking for -fno-tree-vectorize... yes
  182. checking for fseeko(stdin,0,0); in stdio.h... yes
  183. checking for -Wshadow... yes
  184. checking for -Wmaybe-uninitialized... yes
  185.  
  186. platform: X86_64
  187. byte order: little-endian
  188. system: LINUX
  189. cli: no
  190. libx264: internal
  191. shared: no
  192. static: yes
  193. asm: yes
  194. interlaced: yes
  195. avs: avxsynth
  196. lavf: no
  197. ffms: no
  198. mp4: no
  199. gpl: yes
  200. thread: posix
  201. opencl: yes
  202. filters: crop select_every
  203. debug: no
  204. gprof: no
  205. strip: no
  206. PIC: yes
  207. bit depth: 8
  208. chroma format: all
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement