INSTALL
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. Unix build instructions
  2. -----------------------
  3. ./configure
  4. make
  5. make install
  6. If you install from CVS you'll have to run ./bootstrap first
  7. Building for win32
  8. ------------------
  9. There are at least three ways to do it:
  10. - natively on Windows using Microsoft VC++ and the vc++ project
  11.   included in this distribution.
  12. - natively on Windows using MSYS + MINGW (www.mingw.org) (MSYS is a
  13.   minimal build environnement to compile unixish projects under
  14.   windows. It provides all the common unix tools like sh, gmake...)
  15. - or on Linux, using the mingw32 cross-compiler
  16. Building using MSYS + MINGW on windows
  17. --------------------------------------
  18. First you will need to download and install the latest MSYS (version
  19. 1.0.7 as of now) and MINGW. The installation is really easy. Begin
  20. with the MSYS auto-installer and once this is done, extract MINGW into
  21. c:msys1.0mingw. You also have to remember to remove the make
  22. utility included with MINGW as it conflicts with the one from MSYS
  23. (just rename or remove c:msys1.0mingwbinmake.exe).
  24. http://prdownloads.sourceforge.net/mingw/MSYS-1.0.7-i686-2002.04.24-1.exe
  25. http://prdownloads.sourceforge.net/mingw/MinGW-1.1.tar.gz
  26. Then you can build the package using:
  27. # ./configure
  28. # make
  29. Building using the mingw32 cross-compiler
  30. -----------------------------------------
  31. You need to install mingw32 first. For Debian GNU/Linux users, there
  32. is a mingw32 package. Otherwise you might get it from the mingw site
  33. at http://www.mingw.org/download.shtml.
  34. The videolan project also keeps precompiled mingw32 binaries at
  35. http://www.videolan.org/vlc/windows.html . If you install these,
  36. you'll have to set your PATH accordingly to include
  37. /usr/local/cross-tools/bin too.
  38. The build should then proceed using something like:
  39. # CC=i586-mingw32msvc-gcc ./configure --host=i586-mingw32msvc
  40. # make