You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

359 lines
13KB

  1. \input texinfo @c -*- texinfo -*-
  2. @settitle Platform Specific information
  3. @titlepage
  4. @center @titlefont{Platform Specific information}
  5. @end titlepage
  6. @top
  7. @contents
  8. @chapter Unix-like
  9. Some parts of Libav cannot be built with version 2.15 of the GNU
  10. assembler which is still provided by a few AMD64 distributions. To
  11. make sure your compiler really uses the required version of gas
  12. after a binutils upgrade, run:
  13. @example
  14. $(gcc -print-prog-name=as) --version
  15. @end example
  16. If not, then you should install a different compiler that has no
  17. hard-coded path to gas. In the worst case pass @code{--disable-asm}
  18. to configure.
  19. @section BSD
  20. BSD make will not build Libav, you need to install and use GNU Make
  21. (@file{gmake}).
  22. @section (Open)Solaris
  23. GNU Make is required to build Libav, so you have to invoke (@file{gmake}),
  24. standard Solaris Make will not work. When building with a non-c99 front-end
  25. (gcc, generic suncc) add either @code{--extra-libs=/usr/lib/values-xpg6.o}
  26. or @code{--extra-libs=/usr/lib/64/values-xpg6.o} to the configure options
  27. since the libc is not c99-compliant by default. The probes performed by
  28. configure may raise an exception leading to the death of configure itself
  29. due to a bug in the system shell. Simply invoke a different shell such as
  30. bash directly to work around this:
  31. @example
  32. bash ./configure
  33. @end example
  34. @anchor{Darwin}
  35. @section Darwin (OS X, iPhone)
  36. The toolchain provided with Xcode is sufficient to build the basic
  37. unacelerated code.
  38. OS X on PowerPC or ARM (iPhone) requires a preprocessor from
  39. @url{http://github.com/yuvi/gas-preprocessor} to build the optimized
  40. assembler functions. Just download the Perl script and put it somewhere
  41. in your PATH, Libav's configure will pick it up automatically.
  42. OS X on AMD64 and x86 requires @command{yasm} to build most of the
  43. optimized assembler functions @url{http://mxcl.github.com/homebrew/, Homebrew},
  44. @url{http://www.gentoo.org/proj/en/gentoo-alt/prefix/bootstrap-macos.xml, Gentoo Prefix}
  45. or @url{http://www.macports.org, MacPorts} can easily provide it.
  46. @chapter DOS
  47. Using a cross-compiler is preferred for various reasons.
  48. @url{http://www.delorie.com/howto/djgpp/linux-x-djgpp.html}
  49. @chapter OS/2
  50. For information about compiling Libav on OS/2 see
  51. @url{http://www.edm2.com/index.php/FFmpeg}.
  52. @chapter Windows
  53. @section Native Windows compilation
  54. Libav can be built to run natively on Windows using the MinGW tools. Install
  55. the latest versions of MSYS and MinGW from @url{http://www.mingw.org/}.
  56. You can find detailed installation
  57. instructions in the download section and the FAQ.
  58. Libav does not build out-of-the-box with the packages the automated MinGW
  59. installer provides. It also requires coreutils to be installed and many other
  60. packages updated to the latest version. The minimum version for some packages
  61. are listed below:
  62. @itemize
  63. @item bash 3.1
  64. @item msys-make 3.81-2 (note: not mingw32-make)
  65. @item w32api 3.13
  66. @item mingw-runtime 3.15
  67. @end itemize
  68. Libav automatically passes @code{-fno-common} to the compiler to work around
  69. a GCC bug (see @url{http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37216}).
  70. Notes:
  71. @itemize
  72. @item Building natively using MSYS can be sped up by disabling implicit rules
  73. in the Makefile by calling @code{make -r} instead of plain @code{make}. This
  74. speed up is close to non-existent for normal one-off builds and is only
  75. noticeable when running make for a second time (for example in
  76. @code{make install}).
  77. @item In order to compile AVplay, you must have the MinGW development library
  78. of @uref{http://www.libsdl.org/, SDL}.
  79. Edit the @file{bin/sdl-config} script so that it points to the correct prefix
  80. where SDL was installed. Verify that @file{sdl-config} can be launched from
  81. the MSYS command line.
  82. @item By using @code{./configure --enable-shared} when configuring Libav,
  83. you can build libavutil, libavcodec and libavformat as DLLs.
  84. @end itemize
  85. @section Microsoft Visual C++ compatibility
  86. As stated in the FAQ, Libav will not compile under MSVC++. However, if you
  87. want to use the libav* libraries in your own applications, you can still
  88. compile those applications using MSVC++. But the libav* libraries you link
  89. to @emph{must} be built with MinGW. However, you will not be able to debug
  90. inside the libav* libraries, since MSVC++ does not recognize the debug
  91. symbols generated by GCC.
  92. We strongly recommend you to move over from MSVC++ to MinGW tools.
  93. This description of how to use the Libav libraries with MSVC++ is based on
  94. Microsoft Visual C++ 2005 Express Edition. If you have a different version,
  95. you might have to modify the procedures slightly.
  96. @subsection Using static libraries
  97. Assuming you have just built and installed Libav in @file{/usr/local}.
  98. @enumerate
  99. @item Create a new console application ("File / New / Project") and then
  100. select "Win32 Console Application". On the appropriate page of the
  101. Application Wizard, uncheck the "Precompiled headers" option.
  102. @item Write the source code for your application, or, for testing, just
  103. copy the code from an existing sample application into the source file
  104. that MSVC++ has already created for you. For example, you can copy
  105. @file{libavformat/output-example.c} from the Libav distribution.
  106. @item Open the "Project / Properties" dialog box. In the "Configuration"
  107. combo box, select "All Configurations" so that the changes you make will
  108. affect both debug and release builds. In the tree view on the left hand
  109. side, select "C/C++ / General", then edit the "Additional Include
  110. Directories" setting to contain the path where the Libav includes were
  111. installed (i.e. @file{c:\msys\1.0\local\include}).
  112. Do not add MinGW's include directory here, or the include files will
  113. conflict with MSVC's.
  114. @item Still in the "Project / Properties" dialog box, select
  115. "Linker / General" from the tree view and edit the
  116. "Additional Library Directories" setting to contain the @file{lib}
  117. directory where Libav was installed (i.e. @file{c:\msys\1.0\local\lib}),
  118. the directory where MinGW libs are installed (i.e. @file{c:\mingw\lib}),
  119. and the directory where MinGW's GCC libs are installed
  120. (i.e. @file{C:\mingw\lib\gcc\mingw32\4.2.1-sjlj}). Then select
  121. "Linker / Input" from the tree view, and add the files @file{libavformat.a},
  122. @file{libavcodec.a}, @file{libavutil.a}, @file{libmingwex.a},
  123. @file{libgcc.a}, and any other libraries you used (i.e. @file{libz.a})
  124. to the end of "Additional Dependencies".
  125. @item Now, select "C/C++ / Code Generation" from the tree view. Select
  126. "Debug" in the "Configuration" combo box. Make sure that "Runtime
  127. Library" is set to "Multi-threaded Debug DLL". Then, select "Release" in
  128. the "Configuration" combo box and make sure that "Runtime Library" is
  129. set to "Multi-threaded DLL".
  130. @item Click "OK" to close the "Project / Properties" dialog box.
  131. @item MSVC++ lacks some C99 header files that are fundamental for Libav.
  132. Get msinttypes from @url{http://code.google.com/p/msinttypes/downloads/list}
  133. and install it in MSVC++'s include directory
  134. (i.e. @file{C:\Program Files\Microsoft Visual Studio 8\VC\include}).
  135. @item MSVC++ also does not understand the @code{inline} keyword used by
  136. Libav, so you must add this line before @code{#include}ing libav*:
  137. @example
  138. #define inline _inline
  139. @end example
  140. @item Build your application, everything should work.
  141. @end enumerate
  142. @subsection Using shared libraries
  143. This is how to create DLL and LIB files that are compatible with MSVC++:
  144. Within the MSYS shell, build Libav with
  145. @example
  146. ./configure --enable-shared
  147. make
  148. make install
  149. @end example
  150. Your install path (@file{/usr/local/} by default) should now have the
  151. necessary DLL and LIB files under the @file{bin} directory.
  152. Alternatively, build the libraries with a cross compiler, according to
  153. the instructions below in @ref{Cross compilation for Windows with Linux}.
  154. To use those files with MSVC++, do the same as you would do with
  155. the static libraries, as described above. But in Step 4,
  156. you should only need to add the directory where the LIB files are installed
  157. (i.e. @file{c:\msys\usr\local\bin}). This is not a typo, the LIB files are
  158. installed in the @file{bin} directory. And instead of adding the static
  159. libraries (@file{libxxx.a} files) you should add the MSVC import libraries
  160. (@file{avcodec.lib}, @file{avformat.lib}, and
  161. @file{avutil.lib}). Note that you should not use the GCC import
  162. libraries (@file{libxxx.dll.a} files), as these will give you undefined
  163. reference errors. There should be no need for @file{libmingwex.a},
  164. @file{libgcc.a}, and @file{wsock32.lib}, nor any other external library
  165. statically linked into the DLLs.
  166. Libav headers do not declare global data for Windows DLLs through the usual
  167. dllexport/dllimport interface. Such data will be exported properly while
  168. building, but to use them in your MSVC++ code you will have to edit the
  169. appropriate headers and mark the data as dllimport. For example, in
  170. libavutil/pixdesc.h you should have:
  171. @example
  172. extern __declspec(dllimport) const AVPixFmtDescriptor av_pix_fmt_descriptors[];
  173. @end example
  174. Note that using import libraries created by dlltool requires
  175. the linker optimization option to be set to
  176. "References: Keep Unreferenced Data (@code{/OPT:NOREF})", otherwise
  177. the resulting binaries will fail during runtime. This isn't
  178. required when using import libraries generated by lib.exe.
  179. This issue is reported upstream at
  180. @url{http://sourceware.org/bugzilla/show_bug.cgi?id=12633}.
  181. To create import libraries that work with the @code{/OPT:REF} option
  182. (which is enabled by default in Release mode), follow these steps:
  183. @enumerate
  184. @item Open @file{Visual Studio 2005 Command Prompt}.
  185. Alternatively, in a normal command line prompt, call @file{vcvars32.bat}
  186. which sets up the environment variables for the Visual C++ tools
  187. (the standard location for this file is
  188. @file{C:\Program Files\Microsoft Visual Studio 8\VC\bin\vcvars32.bat}).
  189. @item Enter the @file{bin} directory where the created LIB and DLL files
  190. are stored.
  191. @item Generate new import libraries with @file{lib.exe}:
  192. @example
  193. lib /machine:i386 /def:..\lib\avcodec-53.def /out:avcodec.lib
  194. lib /machine:i386 /def:..\lib\avdevice-53.def /out:avdevice.lib
  195. lib /machine:i386 /def:..\lib\avfilter-2.def /out:avfilter.lib
  196. lib /machine:i386 /def:..\lib\avformat-53.def /out:avformat.lib
  197. lib /machine:i386 /def:..\lib\avutil-51.def /out:avutil.lib
  198. lib /machine:i386 /def:..\lib\swscale-2.def /out:swscale.lib
  199. @end example
  200. @end enumerate
  201. @anchor{Cross compilation for Windows with Linux}
  202. @section Cross compilation for Windows with Linux
  203. You must use the MinGW cross compilation tools available at
  204. @url{http://www.mingw.org/}.
  205. Then configure Libav with the following options:
  206. @example
  207. ./configure --target-os=mingw32 --cross-prefix=i386-mingw32msvc-
  208. @end example
  209. (you can change the cross-prefix according to the prefix chosen for the
  210. MinGW tools).
  211. Then you can easily test Libav with @uref{http://www.winehq.com/, Wine}.
  212. @section Compilation under Cygwin
  213. Please use Cygwin 1.7.x as the obsolete 1.5.x Cygwin versions lack
  214. llrint() in its C library.
  215. Install your Cygwin with all the "Base" packages, plus the
  216. following "Devel" ones:
  217. @example
  218. binutils, gcc4-core, make, git, mingw-runtime, texi2html
  219. @end example
  220. And the following "Utils" one:
  221. @example
  222. diffutils
  223. @end example
  224. Then run
  225. @example
  226. ./configure
  227. @end example
  228. to make a static build.
  229. The current @code{gcc4-core} package is buggy and needs this flag to build
  230. shared libraries:
  231. @example
  232. ./configure --enable-shared --disable-static --extra-cflags=-fno-reorder-functions
  233. @end example
  234. If you want to build Libav with additional libraries, download Cygwin
  235. "Devel" packages for Ogg and Vorbis from any Cygwin packages repository:
  236. @example
  237. libogg-devel, libvorbis-devel
  238. @end example
  239. These library packages are only available from
  240. @uref{http://sourceware.org/cygwinports/, Cygwin Ports}:
  241. @example
  242. yasm, libSDL-devel, libfaac-devel, libgsm-devel, libmp3lame-devel,
  243. libschroedinger1.0-devel, speex-devel, libtheora-devel, libxvidcore-devel
  244. @end example
  245. The recommendation for libnut and x264 is to build them from source by
  246. yourself, as they evolve too quickly for Cygwin Ports to be up to date.
  247. Cygwin 1.7.x has IPv6 support. You can add IPv6 to Cygwin 1.5.x by means
  248. of the @code{libgetaddrinfo-devel} package, available at Cygwin Ports.
  249. @section Crosscompilation for Windows under Cygwin
  250. With Cygwin you can create Windows binaries that do not need the cygwin1.dll.
  251. Just install your Cygwin as explained before, plus these additional
  252. "Devel" packages:
  253. @example
  254. gcc-mingw-core, mingw-runtime, mingw-zlib
  255. @end example
  256. and add some special flags to your configure invocation.
  257. For a static build run
  258. @example
  259. ./configure --target-os=mingw32 --extra-cflags=-mno-cygwin --extra-libs=-mno-cygwin
  260. @end example
  261. and for a build with shared libraries
  262. @example
  263. ./configure --target-os=mingw32 --enable-shared --disable-static --extra-cflags=-mno-cygwin --extra-libs=-mno-cygwin
  264. @end example
  265. @bye