关于 MinGW 安装问题

来源:互联网 发布:淘宝如何加入消保 编辑:程序博客网 时间:2024/06/05 04:43

自己想在windows 编译 SMPlayer

所以要搭建 编译环境,采用了GCC

在Windows就用 MinGW

看到网上有很多关于安装MinGW的文章,觉得不太明白为什么要这么安装

后来自己看了一下www.MinGW.org 安装文档,觉得一幕了然。

Manual Installation

Instead of using an installer you can as well get all required packets and unpack them manually into a subdirectory. In fact that's what this writer is doing himself.

Download the Packages

At least the following (or newer) packages from the

  • MinGW download page http://sourceforge.net/project/showfiles.php?group_id=2435

are needed (the automated mingw installer I think includes all of these and sets up the right directory for you--what it's doing is downloading compilers and default header files, and putting them in one place on your system, so the future builds will use those compilers and directories for building):

  • GNU Binutils: http://sourceforge.net/project/showfiles.php?group_id=2435&package_id=11290
  • GCC Version 3: http://sourceforge.net/project/showfiles.php?group_id=2435&package_id=82723
  • MINGW Runtime: http://sourceforge.net/project/showfiles.php?group_id=2435&package_id=11598
  • Windows 32 API: http://sourceforge.net/project/showfiles.php?group_id=2435&package_id=11550

Note that you will need gcc-core for other gcc language front ends to work properly.

These files are gzipped tarballs, Linux users will probably be familiar with .tar.gz files, but they are not that common under Windows. Essentially they are compressed folders like zip files. In order to access the contents you will need to decompress them, this requires that you have gzip and tar installed on your machine. Linux comes with these as standard in every distribution, but under Windows you will need to install them manually. Windows versions can be found at:

  • Gzip for Windows: http://gnuwin32.sourceforge.net/packages/gzip.htm

and

  • MinGW downloads section, MinGW standalone version of TAR (which also handles lzma and xz): http://www.mirrorservice.org/sites/download.sourceforge.net/pub/sourceforge/m/project/mi/mingw/MinGW/Utilities/basic%20bsdtar/

or

  • LibArchive for Windows, TAR: http://gnuwin32.sourceforge.net/packages/tar.htm.

If you see a file with the extension lzma or xz instead of tar, it uses a newer compression algorithm that makes use of lzma. It's become the standard for Slackware tarballs and many Linux distributions are starting to use xz because it offers better compression ratios than tar. To decompress a file with the lzma or the xz extension, you can use 7zip http://www.7-zip.org/. If you prefer the command line, there's a 7za program at the 7zip site. You can also check the mingw file archives for the xz program. It will decompess xz files or the files using the older lzma standard.

Download the setup files and install the applications. Before you use them you need to tell Windows where to find them; specifically this means adding the install directory to your PATH. To do this, follow the procedure below, to update the PATH appropriately, in your Environment Settings.

Create Install Directory

Caution: Never install MinGW into any directory which includes spaces in its absolute path name.

Create a directory to install all the stuff into. This writer usually creates C:/MinGW, (the recommended default), and copies all of the above files in there. Now issue the following commands, remember to change the file names to match your downloads:

cd /d c:/MinGWgzip -df binutils-2.19.1-mingw32-bin.tar.gztar -xf binutils-2.19.1-mingw32-bin.tarcd inforen dir dir.binutilscd ..gzip -df gcc-core-3.4.5-20060117-3.tar.gztar -xf gcc-core-3.4.5-20060117-3.tarcd infocopy dir dir.gcccopy dir+dir.binutilscd ..gzip -df gcc-g++-3.4.5-20060117-3.tar.gztar -xf gcc-g++-3.4.5-20060117-3.targzip -df mingwrt-3.15.2-mingw32-dev.tar.gztar -xf mingwrt-3.15.2-mingw32-dev.targzip -df mingwrt-3.15.2-mingw32-dll.tar.gztar -xf mingwrt-3.15.2-mingw32-dll.targzip -df w32api-3.13-mingw32-dev.tar.gztar -xf w32api-3.3-mingw32-dev.tar
Notes:
  1. If you wish to use other programming languages, in addition or instead of "C" and "C++", you should repeat the commands related to "gcc-g++", substituting the appropriate language package tarball; you must still install the "gcc-core" package.
  2. The indicated commands copying and concatenating the info/dir files are really a rather crude way of creating a combined documentation catalogue; they apply only if using older package versions than those indicated, since precompiled info/dir files are no longer distributed. In any case, this technique really isn't appropriate: see the comment below, for discussion on the purpose of, and the correct way to maintain, an info catalogue.

Additional Programming Languages

To add additional languages apply some or all of the following commands:

cd /d c:/MinGWtar xvzf gcc-ada-3.4.5-20060117-1.tar.gztar xvzf gcc-g77-3.4.5-20060117-1.tar.gztar xvzf gcc-java-3.4.5-20060117-1.tar.gztar xvzf gcc-objc-3.4.5-20060117-1.tar.gz

MSYS Installation

You may also want to install MSYS.

Environment Settings

When you install command line tools, such as MinGW, or GnuWin32 tools, you have to tell the command line interpreter where to find them; this is usually accomplished by adding the appropriate directory names to the PATH variable in your environment. Typically, it is your responsibility to do this; please do not expect the installer, (if you used one), to do it for you.

Warning: Adding entries to the PATH is normally benign. However, if you delete, you may mess up your PATH string, and you could seriously compromise the functioning of your computer. Please be careful.

  1. Right-click on "My Computer" and select "Properties".
  2. Click Advanced -> Environment Variables.
  3. In the box entitled "System Variables" scroll down to the line that says "PATH" and double-click the entry.
  4. You will be presented with a dialog box with two text boxes, the bottom text box allows you to edit the PATH variable. It is very important that you do not delete the existing values in the PATH string, this will cause all sorts of problems for you!
  5. Scroll to the end of the string and at the end add ";<installation-directory>/bin". Here <installation-directory> is the full absolute path name of the installation directory; if you accepted the defaults when installing tar and gzip, then for these, it will (probably) be C:/Program Files/GnuWin32, while for MinGW it will be C:/MinGW/bin, (if you kept to the recommended default installation directory). Don't forget the semicolon; this separates the entries in the PATH.
  6. press OK -> OK -> OK and you are done.

我想大概说下一里面的意思,具体就希望大家能够去认真读一下。

手工安装方法:

MinGW 有很多包组成的

最基础是 BaseSystem。

BaseSystem又包过 GNU-Binutils GCC GDB RuntimeLibrary

下载相应文件,并把他们解压到D:/MinGW中,就可以。(D:/MinGW是为 MinGW安装目录)

环境设置: 将D:/MinGW/bin添加到Path当中去就可以。

 

得到一点感受就是,要想得到第一手信息,还是读英文文档。

 

 

 

 

原创粉丝点击