Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.68 KB | None | 0 0
  1. $ ./configure --disable-asm
  2. checking whether make supports nested variables... yes
  3. checking for a BSD-compatible install... /bin/install -c
  4. checking whether build environment is sane... yes
  5. checking for a thread-safe mkdir -p... /bin/mkdir -p
  6. checking for gawk... gawk
  7. checking whether make sets $(MAKE)... yes
  8. checking whether to enable maintainer-specific portions of Makefiles... yes
  9. checking build system type... i686-pc-mingw32
  10. checking host system type... i686-pc-mingw32
  11. checking how to print strings... printf
  12. checking for style of include used by make... GNU
  13. checking for gcc... gcc
  14. checking whether the C compiler works... yes
  15. checking for C compiler default output file name... a.exe
  16. checking for suffix of executables... .exe
  17. checking whether we are cross compiling... no
  18. checking for suffix of object files... o
  19. checking whether we are using the GNU C compiler... yes
  20. checking whether gcc accepts -g... yes
  21. checking for gcc option to accept ISO C89... none needed
  22. checking dependency style of gcc... gcc3
  23. checking for a sed that does not truncate output... /bin/sed
  24. checking for grep that handles long lines and -e... /bin/grep
  25. checking for egrep... /bin/grep -E
  26. checking for fgrep... /bin/grep -F
  27. checking for ld used by gcc... /bin/ld
  28. checking if the linker (/bin/ld) is GNU ld... yes
  29. checking for BSD- or MS-compatible name lister (nm)... /bin/nm -B
  30. checking the name lister (/bin/nm -B) interface... BSD nm
  31. checking whether ln -s works... no, using cp -p
  32. checking the maximum length of command line arguments... 8192
  33. checking whether the shell understands some XSI constructs... yes
  34. checking whether the shell understands "+="... yes
  35. checking how to convert i686-pc-mingw32 file names to i686-pc-mingw32 format...
  36. func_convert_file_msys_to_w32
  37. checking how to convert i686-pc-mingw32 file names to toolchain format... func_c
  38. onvert_file_msys_to_w32
  39. checking for /bin/ld option to reload object files... -r
  40. checking for objdump... objdump
  41. checking how to recognize dependent libraries... file_magic ^x86 archive import|
  42. ^x86 DLL
  43. checking for dlltool... dlltool
  44. checking how to associate runtime and link libraries... func_cygming_dll_for_imp
  45. lib
  46. checking for ar... ar
  47. checking for archiver @FILE support... @
  48. checking for strip... strip
  49. checking for ranlib... ranlib
  50. checking command to parse /bin/nm -B output from gcc object... ok
  51. checking for sysroot... no
  52. checking for mt... mt
  53. checking if mt is a manifest tool... yes
  54. checking how to run the C preprocessor... gcc -E
  55. checking for ANSI C header files... yes
  56. checking for sys/types.h... yes
  57. checking for sys/stat.h... yes
  58. checking for stdlib.h... yes
  59. checking for string.h... yes
  60. checking for memory.h... yes
  61. checking for strings.h... yes
  62. checking for inttypes.h... no
  63. checking for stdint.h... no
  64. checking for unistd.h... yes
  65. checking for dlfcn.h... yes
  66. checking for objdir... .libs
  67. checking if gcc supports -fno-rtti -fno-exceptions... no
  68. checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
  69. checking if gcc PIC flag -DDLL_EXPORT -DPIC works... yes
  70. checking if gcc static flag -static works... no
  71. checking if gcc supports -c -o file.o... yes
  72. checking if gcc supports -c -o file.o... (cached) yes
  73. checking whether the gcc linker (/bin/ld) supports shared libraries... yes
  74. checking whether -lc should be explicitly linked in... yes
  75. checking dynamic linker characteristics... Win32 ld.exe
  76. checking how to hardcode library paths into programs... immediate
  77. checking whether stripping libraries is possible... yes
  78. checking if libtool supports shared libraries... yes
  79. checking whether to build shared libraries... yes
  80. checking whether to build static libraries... yes
  81. checking whether gcc and cc understand -c and -o together... yes
  82. checking for gcc option to accept ISO C99... -std=gnu99
  83. checking for an ANSI C-conforming const... yes
  84. checking for inline... inline
  85. checking dependency style of gcc -std=gnu99... gcc3
  86. checking for C/C++ restrict keyword... __restrict
  87. checking for C99 variable-size arrays... yes
  88. checking for cos in -lm... yes
  89. checking for doxygen... no
  90. checking if gcc -std=gnu99 supports -fvisibility=hidden... no
  91. checking if gcc -std=gnu99 supports -Wall -Wextra -Wcast-align -Wnested-externs
  92. -Wshadow -Wstrict-prototypes... yes
  93. checking for lrintf... no
  94. checking for lrint... no
  95. checking for __malloc_hook... no
  96. configure: creating ./config.status
  97. config.status: creating Makefile
  98. config.status: creating opus.pc
  99. config.status: creating opus-uninstalled.pc
  100. config.status: creating celt/arm/armopts.s
  101. config.status: creating doc/Makefile
  102. config.status: creating doc/Doxyfile
  103. config.status: creating config.h
  104. config.status: config.h is unchanged
  105. config.status: executing depfiles commands
  106. config.status: executing libtool commands
  107. configure:
  108. ------------------------------------------------------------------------
  109. opus 1.1: Automatic configuration OK.
  110.  
  111. Compiler support:
  112.  
  113. C99 var arrays: ................ yes
  114. C99 lrintf: .................... no
  115. Use alloca: .................... no (using var arrays)
  116.  
  117. General configuration:
  118.  
  119. Floating point support: ........ yes
  120. Fast float approximations: ..... no
  121. Fixed point debugging: ......... no
  122. Inline Assembly Optimizations: . disabled
  123. External Assembly Optimizations: disabled
  124. Run-time CPU detection: ........ no
  125. Custom modes: .................. no
  126. Assertion checking: ............ no
  127. Fuzzing: ....................... no
  128.  
  129. API documentation: ............. yes
  130. Extra programs: ................ yes
  131. ------------------------------------------------------------------------
  132.  
  133. Type "make; make install" to compile and install
  134. Type "make check" to run the test suite
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement