zoukankan      html  css  js  c++  java
  • Win32CompileMSYSNew

    IntroductionAboutMSys is a helper environment for MinGW, the compiler chain for Windows based on GCC. It is the fastest and recommended way to build VLC natively on Windows. Note that you could also cross compile VLC from Linux, if desired (it is faster).
    VLC is a complex program with many dependencies, so minimal command-line experience is required. Also, don't be in a hurry (2 hours is a minimum for the whole process) and don't despair if it doesn't work first time.
    On the edge vs ConservativeThis update aims at building versions from the 1.1.0 branch natively in the most straightforward way.
    Of course, if you want to live on the edge, feel free to select more recent versions of the proposed tools, contribs or sources, but the build has only been thoroughly validated with the versions indicated in the main text flow.
    Such alternative ways are indented, italicized and marked "Note for the brave" :-). Your mileage may varyAcknowledgementsThis howto was re-created by Jean-Baptiste Kempf and updated in June 2009, September 2009, December 2009 and March 2010.
    It was updated in June 2010 by Vicne with the help of J-b, gnosygnu and MichaelMc
    Windows tools neededText editorTo edit unix-style text documents you need a suitable editor.
    For those wishing to have a Notepad look-and-feel I recommend notepad2, which may tempt you to ditch Notepad altogether. You can set File - Line endings - Default to "Unix (LF)", but it always saves opened files in the ending style they have.
    Unzip Utility (7-zip)Many files to downloaded will have to be uncompressed. As most of them use Linux-originated formats (.tar.gz, .tar.bz2, .tar.lzma), you will need a versatile unzipping utility. A recent version of 7-zip is therefore strongly advised.
    Please note that most archives contain directory structures. Unless otherwise stated, you have to merge the contents with the existing dirs
    GNU Windows EnvironmentBefore installing, ensure your Windows user name does not contain spaces (VLC will not build in a folder with spaces in it). If it does, please create another user on your system.
    In the following text, we'll refer to this user name as "<username>". Replace it appropriately where needed of course.
    MinGWthe old version of mingw GCC (3.4.5) worked with VLC, because it uses SlJl exception unwinding. Any "vanilla" version 4.0+ by default uses dwarf2 exception unwinding, so isn't compatible with the contribs. So recommend installing TDM, below.TDM/MinGW SetupUse the installer found at http://sourceforge.net/projects/tdm-gcc/files/TDM-GCC%20Installer/tdm-gcc-4.5.1.exe/download
    Go through the wizard:
  • unckeck "Check for updated files..."
  • Select "Create"
  • install to C:\MinGW
  • keep default settings
  • afterwords add C:\MinGW\bin to the windows PATH
  • MinGW utils
    Installing mingw-utils is recommended: http://prdownloads.sourceforge.net/mingw/mingw-utils-0.3.tar.gz
    Extract contents to c:\MinGW
    MSysMSys SetupUse the installer found at http://sourceforge.net/project/downloading.php?group_id=2435&filename=MSYS-1.0.11.exe
    Go through the wizard and install to to default C:\Msys\1.0
    In the command window that opens, answer questions as follows:
    Accept Post Install: [y]MinGW Installed? :   [y]path to MinGW:       [c:/MinGW]
    MSys Developer ToolkitUse the installer found at http://downloads.sourceforge.net/mingw/msysDTK-1.0.1.exe
    Go through the wizard, keeping default values
    AutoTools and libcryptUpdate autoconf, automake, libtool as well as libcrypt by downloading the following files and extracting them to C:\Msys\1.0:
  • http://sourceforge.net/projects/mingw/files/MSYS/autoconf/autoconf-2.63-1/autoconf-2.63-1-msys-1.0.11-bin.tar.lzma/download
  • http://sourceforge.net/projects/mingw/files/MSYS/automake/automake-1.11-1/automake-1.11-1-msys-1.0.11-bin.tar.lzma/download
  • http://sourceforge.net/projects/mingw/files/MSYS/libtool/libtool-2.2.7a-1/libtool-2.2.7a-1-msys-1.0.11-bin.tar.lzma/download
  • http://prdownloads.sourceforge.net/mingw/libcrypt-1.1_1-2-msys-1.0.11-dll-0.tar.lzma
  • Glib and PKG-CONFIGSimilarly, download the following files and extract them to C:\MSys\1.0:
    Note* Download the latest version inside this folders:
  • http://ftp.gnome.org/pub/GNOME/binaries/win32/glib
  • [url=ftp://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/pkg-config_0.23-3_win32.zip]ftp://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/pkg-config_0.23-3_win32.zip[/url]
  • [url=ftp://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/pkg-config-dev_0.23-3_win32.zip]ftp://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/pkg-config-dev_0.23-3_win32.zip[/url]
  • Add pkg config path variableAdd the following line to the *top* of C:\MSys\1.0\msys.bat:
    set PKG_CONFIG_PATH=/win32/lib/pkgconfig
    Fix libtool search dirsOpen C:\MSys\1.0\bin\libtool and change line 9926 by appending ' /mingw/lib' to the end of 'compiler_lib_search_dirs'. The line should then read :
    compiler_lib_search_dirs="/usr/lib /usr/lib /bin/../lib/gcc-lib/i686-pc-msys/2.95.3-1 /bin/../lib/gcc-lib /usr/lib/gcc-lib/i686-pc-msys/2.95.3-1 /bin/../lib/gcc-lib/i686-pc-msys/2.95.3-1/http://www.cnblogs.com/http://www.cnblogs.com/i686-pc-msys/lib /usr/lib/gcc-lib/i686-pc-msys/2.95.3-1/http://www.cnblogs.com/http://www.cnblogs.com/i686-pc-msys/lib /mingw/lib"
    LUA toolsVLC uses the LUA scripting language (See lua.org). Unfortunately, no binaries are provided so you need to compile them.
  • Download the lua tools package from http://www.lua.org/ftp/lua-5.1.4.tar.gz
  • Uncompress it in your home folder (C:\MSys\1.0\home\<username>)
  • run C:\MSys\1.0\msys.bat
  • type the following commands:
  • cd ~/lua-5.1.4 make mingw
    This should produce lua.exe, luac.exe and lua51.dll in the src directory. Put these in your /bin with the commands:
    cd src cp *.exe /bincp *.dll /bincd ..
    Precompiled contribsNote for the brave : Alternatively, you can get the latest contrib from :http://people.videolan.org/~jb/Contribs/
  • download the file http://people.videolan.org/~jb/Contribs/contrib-20100608-win32-bin-gcc-4.4.4-runtime-3.17-only.tar.bz2
  • extract it to C:\MSys\1.0 but without the /usr path. For example, one of the resulting files should be:
  • C:\MSys\1.0\win32\lib\libdvdnav.a
    Contribs are basically some precompiled 3rd party library (Here's a list of what they all are).
    VLC sourcesNote for the brave : This section lists the steps for VLC version 1.1.0rc3. Alternatively, you could get the latest sources from the development tree using GIT. It's not as difficult as it looks to do so. If you want chose that route, please follow instructions on the Git Windows page (just download the VLC repository--you don't need the x264 one) then skip the next section "Last Change"Base: VLC version 1.1.0rc3
  • download the file http://download.videolan.org/pub/videolan/testing/vlc-1.1.0-rc3/vlc-1.1.0-rc3.tar.bz2
  • extract it to C:\MSys\1.0\home\<username>
  • rename the vlc-1.1.0rc3 dir to vlc
  • add missing configure-msys (1.1.x only)
  • Download http://git.videolan.org/?p=vlc.git;a=blob_plain;f=extras/package/win32/configure-msys.sh;hb=HEAD
  • Save it (not using proposed name) as C:\msys\1.0\home\<username>\vlc\extras\package\win32\configure-msys.sh
  • add missing configure-common (1.1.x only)
  • Download http://git.videolan.org/?p=vlc.git;a=blob_plain;f=extras/package/win32/configure-common.sh;hb=HEAD
  • Save it (not using proposed name) as C:\msys\1.0\home\<username>\vlc\extras\package\win32\configure-common.sh
  • Last change : whoami and hostnameWhoami is not available on Windows, and hostname doesn't support the -f option used by the build process. These utilities are used to show the name and computer of the person who compiled VLC in the 'About' box.
    Note for the brave : the steps below are file changes so that compile works, but an alternative is to download and install GNU whoami and hostname functionality. This can be achieved by extracting who.exe, whoami.exe and hostname.exe from http://sourceforge.net/projects/mingw/files/MSYS/BaseSystem/coreutils/coreutils-5.97-2/coreutils-5.97-2-msys-1.0.11-ext.tar.lzma/download and saving them to C:/MSys/1.0/binWhoamiCreate a new file containing the single line:
    echo '<username>'
    and save it as C:\MSys\1.0\bin\whoami (without any extension)
    HostnameModify configure.ac so that it doesn't call 'hostname -f' as follows:
  • open C:\MSys\1.0\home\<username>\vlc\configure.ac
  • goto search button:
  • change it as follows:
  • old: AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname -f 2> /dev/null || hostname`", [host which ran configure])new: AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname`", [host which ran configure])
    Build VLCThe build is made exclusively from the command line, so if you closed the prompt at the LUA step, re-execute C:\MSys\1.0\msys.bat, then type the commands as mentioned
    Bootstrapcd vlccp -v /usr/win32/share/aclocal/* m4/cp -v /usr/share/aclocal/* m4/PATH=/usr/win32/bin:$PATH ./bootstrap
    Configuresh extras/package/win32/configure-msys.sh
    If you want any custom options, like "--disable-lua" or anything of that nature, you'll need to edit that file directly instead of passing them in as parameters (at least currently that is required).
    Make (compile)Note : If your <username> starts with the "u" or "x" character, change C:\MSys\1.0\home\<username>\config.h and double all backslashes in VLC_COMPILED_BY constant.
    Type the following command :
    PATH=/usr/win32/bin:$PATH make
    Create self-contained packagesOnce the compilation is done, build self-contained VLC packages with one of the following "make" commands:
    make package-win32-base
    (This will create a subdirectory named vlc-x.x.x with all the binaries "stripped" without any debugging symbols).
    make package-win32-zip
    (Same as above but will package the directory in a zip file).
    make package-win32
    (Same as above but will also create an auto-installer package. You will need to have NSIS installed in its default location for this to work).
    make package-win32-base-debug
    (This will create a subdirectory named vlc-x.x.x with all the binaries containing debug info usable by gdb).
    Note that with the 1.2 branch these names have changed slightly. Run '
    grep ':' Makefile | grep package-win32
    to see what they are now.
查看全文
  • 相关阅读:
    SSH框架测试
    Top 20 IoT Platforms in 2018
    基于Helm和Operator的K8S应用管理
    五大开源 Web 代理服务器横评:Squid、Privoxy、Varnish、Polipo、Tinyproxy
    Https单向认证和双向认证
    CNCF Landscape Summary
    走,去出海,一起“Copy to World” | 36氪出海行业报告
    猎豹全球智库执行院长:中国App出海的三大规律和最具代表的五大垂直品类
    闷声发大财,中国 App 出海编年史及方法论
    软件出海的四种模式
  • 原文地址:https://www.cnblogs.com/qq78292959/p/2077011.html
  • Copyright © 2011-2022 走看看