[FFmpeg-cvslog] doc/platform: Add info about ICL

Derek Buitenhuis git at videolan.org
Tue Jun 25 17:53:41 CEST 2013


ffmpeg | branch: master | Derek Buitenhuis <derek.buitenhuis at gmail.com> | Sun Jun 23 19:49:28 2013 -0400| [b0ce601c160c87349d093d7e542b5c752754f598] | committer: Derek Buitenhuis

doc/platform: Add info about ICL

Signed-off-by: Derek Buitenhuis <derek.buitenhuis at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b0ce601c160c87349d093d7e542b5c752754f598
---

 doc/platform.texi |   28 +++++++++++++++++++---------
 1 file changed, 19 insertions(+), 9 deletions(-)

diff --git a/doc/platform.texi b/doc/platform.texi
index 80dd029..2a7dd45 100644
--- a/doc/platform.texi
+++ b/doc/platform.texi
@@ -101,10 +101,10 @@ you can build all libraries as DLLs.
 
 @end itemize
 
- at section Microsoft Visual C++
+ at section Microsoft Visual C++ or Intel C++ Compiler for Windows
 
-Libav can be built with MSVC using a C99-to-C89 conversion utility and
-wrapper.
+Libav can be built with MSVC or ICL using a C99-to-C89 conversion utility and
+wrapper. For ICL, only the wrapper is used, since ICL supports C99.
 
 You will need the following prerequisites:
 
@@ -117,28 +117,33 @@ You will need the following prerequisites:
 you want to run @uref{fate.html, FATE}.
 @end itemize
 
-To set up a proper MSVC environment in MSYS, you simply need to run
- at code{msys.bat} from the Visual Studio command prompt.
+To set up a proper environment in MSYS, you need to run @code{msys.bat} from
+the Visual Studio or Intel Compiler command prompt.
 
 Place @code{makedef}, @code{c99wrap.exe}, @code{c99conv.exe}, and @code{yasm.exe}
 somewhere in your @code{PATH}.
 
 Next, make sure @code{inttypes.h} and any other headers and libs you want to use
-are located in a spot that MSVC can see. Do so by modifying the @code{LIB} and
- at code{INCLUDE} environment variables to include the @strong{Windows} paths to
+are located in a spot that the compiler can see. Do so by modifying the @code{LIB}
+and @code{INCLUDE} environment variables to include the @strong{Windows} paths to
 these directories. Alternatively, you can try and use the
 @code{--extra-cflags}/@code{--extra-ldflags} configure options.
 
 Finally, run:
 
 @example
+For MSVC:
 ./configure --toolchain=msvc
+
+For ICL:
+./configure --toolchain=icl
+
 make
 make install
 @end example
 
 If you wish to compile shared libraries, add @code{--enable-shared} to your
-configure options. Note that due to the way MSVC handles DLL imports and
+configure options. Note that due to the way MSVC and ICL handle DLL imports and
 exports, you cannot compile static and shared libraries at the same time, and
 enabling shared libraries will automatically disable the static ones.
 
@@ -168,7 +173,12 @@ erroneously included when building Libav.
 can see.
 @end enumerate
 
- at item Libav has been tested with Visual Studio 2010 and 2012, Pro and Express.
+ at item Libav has been tested with the following on i686 and x86_64:
+ at itemize
+ at item Visual Studio 2010 Pro and Express
+ at item Visual Studio 2012 Pro and Express
+ at item Intel Composer XE 2013
+ at end itemize
 Anything else is not officially supported.
 
 @end itemize



More information about the ffmpeg-cvslog mailing list