Changes between Version 5 and Version 6 of CompilationGuide/MSVC
- Timestamp:
- Jul 8, 2015, 7:52:34 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CompilationGuide/MSVC
v5 v6 1 It's fairly simple to build ffmpeg on Windows with visual studio. The official guide found on this page is quite clear, but a little bit out-of-date.2 [https://www.ffmpeg.org/platform.html#Microsoft-Visual-C_002b_002b-or-Intel-C_002b_002b-Compiler-for-Windows]3 1 4 I experienced few minor issues while building ffmpeg myself. I decided to document them here. 2 3 4 {{{#!comment 5 Note to the author: The formatting and layout of this page is terrible. Please fix. Refer to WikiFormatting. 6 }}} 7 8 9 10 11 12 It's fairly simple to build `ffmpeg` on Windows with Visual Studio. The [https://www.ffmpeg.org/platform.html#Microsoft-Visual-C_002b_002b-or-Intel-C_002b_002b-Compiler-for-Windows official guide] is quite clear, but a little bit out-of-date. 5 13 6 14 FFmpeg can be built with MSVC 2012 or earlier using a C99-to-C89 conversion utility and wrapper, or with MSVC 2013 natively. … … 8 16 You will need the following prerequisites: 9 17 10 1. C99-to-C89 Converter & Wrapper (if using MSVC 2012 or earlier) 11 [https://github.com/libav/c99-to-c89/] 12 13 2. msinttypes (if using MSVC 2012 or earlier) 14 [http://code.google.com/p/msinttypes/] 15 16 3. MSYS 17 [http://www.mingw.org/] 18 19 4. YASM 20 [http://yasm.tortall.net/] 18 * [https://github.com/libav/c99-to-c89/ C99-to-C89 Converter & Wrapper] if using MSVC 2012 or earlier. 19 * [http://code.google.com/p/msinttypes/ msinttypes] if using MSVC 2012 or earlier. 20 * [http://www.mingw.org/ MSYS] 21 * [http://yasm.tortall.net/ YASM] 21 22 22 23 23 First, you need to unzip and copy 1,2,4 into a folder, for example, c:\c99 24 Then, you need to add the folder c:\c99 into your PATH environment variable. 25 Rename yasm-1.2.0-win64.exe (or the yasm executable you will use) to yasm.exe 26 Finally, create an INCLUDE environment variable, and point it to c:\99, this is the location where the compiler will find inttypes.h 24 First, you need to unzip and copy the prerequisites into a folder, for example, `c:\c99`. 27 25 28 ''If it complains of "MSVCR100.dll not found" when running yasm, install the microsoft 2010 VC [http://www.faqforge.com/windows/fix-the-program-cant-start-because-msvcr100-dll-is-missing-from-your-computer-error-on-windows/ redistributable] 29 '' 26 Then, you need to add the folder `c:\c99` into your `PATH` environment variable. 30 27 31 To set up a proper environment in MSYS, you need to run msys.bat from the Visual Studio or Intel Compiler command prompt.28 Rename the yasm executable you will use to `yasm.exe`. 32 29 33 Next, make sure any other headers and libs you want to use, such as zlib, are located in a spot that the compiler can see. Do so by modifying the LIB and INCLUDE environment variables to include the Windows-style paths to these directories. Alternatively, you can try and use the --extra-cflags/--extra-ldflags configure options. 30 Finally, create an `INCLUDE` environment variable, and point it to `c:\99`; this is the location where the compiler will find `inttypes.h`. 31 32 {{{ 33 #!div style="border: 1pt dotted; margin: 1em; background-color: #fffff9;" 34 '''Note:''' If it complains of `MSVCR100.dll not found` when running yasm, install the Microsoft 2010 VC [http://www.faqforge.com/windows/fix-the-program-cant-start-because-msvcr100-dll-is-missing-from-your-computer-error-on-windows/ redistributable]. 35 }}} 36 37 To set up a proper environment in MSYS, you need to run `msys.bat` from the Visual Studio or Intel Compiler command prompt. 38 39 Next, make sure any other headers and libs you want to use, such as zlib, are located in a location that the compiler can see. Do so by modifying the `LIB` and `INCLUDE` environment variables to include the Windows-style paths to these directories. Alternatively, you can try and use the `--extra-cflags`/`--extra-ldflags` configure options. 34 40 35 41 Finally, run: 36 42 37 43 For MSVC: 44 45 {{{ 38 46 ./configure --toolchain=msvc 39 47 make 40 48 make install 49 }}} 41 50 42 51 or the following: 52 53 {{{ 43 54 ./configure --enable-asm --enable-yasm --arch=i386 --disable-ffserver --disable-avdevice --disable-swscale --disable-doc --disable-ffplay --disable-ffprobe --disable-ffmpeg --enable-shared --disable-static --disable-bzlib --disable-libopenjpeg --disable-iconv --disable-zlib --prefix=/c/ffmpeg --toolchain=msvc 55 }}} 44 56 45 --enable-shared will generate the dynamic linked lib (dlls)46 57 47 ''you might see an error saying cl can't generate executable, this is because you installed the link.exe from msys. it conflicts with the link.exe of visual studio. 48 '' 58 `--enable-shared` will generate the dynamic linked lib (dlls) 59 60 {{{ 61 #!div style="border: 1pt dotted; margin: 1em; background-color: #fffff9;" 62 '''Note:''' You might see an error saying cl can't generate executable; this is because you installed the `link.exe` from MSYS. It conflicts with the `link.exe` of Visual Studio. 63 }}} 49 64 50 65 {{{ … … 55 70 }}} 56 71 57 you can try "which link.exe" to verify if it is the case. if you see /bin/link.exe, then you can simply rm /bin/link.exe See here for details: [https://trac.ffmpeg.org/ticket/3203] 72 You can try `which link.exe` to verify if it is the case. If you see `/bin/link.exe`, then you can simply `rm /bin/link.exe`. For more info see [https://trac.ffmpeg.org/ticket/3203 #3203 Windows MSVC configure failed]. 58 73 59 the right link.exeshould come from this location:74 The right `link.exe` should come from this location: 60 75 76 {{{ 61 77 /c/Program Files (x86)/Microsoft Visual Studio 12.0/VC/BIN/link.exe 78 }}} 62 79 63 you might see two problems when building ffmpeg: 64 ''1. pr command not found: 65 '' 80 You might see two problems when building `ffmpeg`: 66 81 67 please take a look at here [http://creekcodes.blogspot.com/2011/02/msys-pr-not-found.html] 68 basically pr.exe is removed from msys, you need to download it from here [http://sourceforge.net/projects/mingw/files/MSYS/Base/msys-core/_obsolete/coreutils-5.97-MSYS-1.0.11-2/coreutils-5.97-MSYS-1.0.11-snapshot.tar.bz2/download] and copy pr.exe to the msys/bin folder. 82 1. `pr` command not found: 69 83 70 ''2. the compiler might complain about redefinition issues of stdint.h, because both msinttypes and visual studio have stdint.h. I removed stdint.h from c:\c99 to let the compiler uses the one provided by visual studio. 71 '' 84 A solution is posted at [http://creekcodes.blogspot.com/2011/02/msys-pr-not-found.html MSYS pr not found]. Basically, `pr.exe` is removed from MSYS. You need to [http://sourceforge.net/projects/mingw/files/MSYS/Base/msys-core/_obsolete/coreutils-5.97-MSYS-1.0.11-2/coreutils-5.97-MSYS-1.0.11-snapshot.tar.bz2/download download] it and copy `pr.exe` to the `msys/bin` folder. 72 85 73 in the end of configuration, you might also see pkg-config not found issue. that won't affect compilation, you can ignore it. it is said that installing pkg-config to msys is kinda tiresome.86 2. The compiler might complain about redefinition issues of `stdint.h`, because both msinttypes and Visual Studio have `stdint.h`. I removed `stdint.h` from `c:\c99` to let the compiler uses the one provided by Visual Studio. 74 87 88 In the end of configuration, you might also see `pkg-config` not found issue. That won't affect compilation, you can ignore it. It is said that installing `pkg-config` to MSYS is kinda tiresome. 75 89 76 90 How to build debug version? 77 91 78 an example:92 An example: 79 93 94 {{{ 80 95 $ ./configure --enable-asm --enable-yasm --disable-ffserver --disable-avdevice --disable-doc --disable-ffplay --disable-ffprobe --disable-ffmpeg --enable-shared --disable-static --disable-bzlib --disable-libopenjpeg --disable-iconv --disable-zlib --prefix=/c/ffmpeg --toolchain=msvc --arch=amd64 --extra-cflags="-MDd" --extra-ldflags="/NODEFAULTLIB:libcmt" --enable-debug 96 }}}
