This is an old revision of the document!


Setting up the build environment on Windows

Assuming Windows XP 32.

Doesn't really matter which one. Certified binaries of The Real McCoy are available at http://www.collab.net/downloads/subversion/ (command-line only) if you have an account (or are willing to register). There are other (non-certified) sources such as SlikSVN (http://www.sliksvn.com/en/download, command-line only) and TortoiseSVN (http://tortoisesvn.net/downloads, with Windows Explorer integration, which is really neat).

Download the MSYS Base System installer from http://downloads.sourceforge.net/project/mingw/MSYS%20Base%20System/msys-1.0.11/MSYS-1.0.11.exe and run it. If it asks, tell it you don't have MinGW installed.

Now that MSYS is installed, you can start the “MSYS (rxvt)” shortcut it installed, and it'll be almost like you were home on the Unix farm.

As of November 2009, the automated installer is useless; it installs gcc 3 instead of 4. You'll have to install MinGW manually using MSYS.

The following command will create and mount a directory for MinGW:

mount C:/MinGW /mingw

Next, download the packages you will need.

Then extract everything:

$ for f in *tar.gz ; do tar zxvf $f -C /mingw ; done
$ for f in *tar.lzma ; do tar --lzma -xvf $f -C /mingw ; done

Let's see if our C compiler works:

$ which gcc
/mingw/bin/gcc.exe
$ cat >hello.c
#include <stdio.h>
int main(void) { printf("Hello, C world!\n"); return 0; }
^D
$ gcc -o hello hello.c
$ ./hello.exe 
Hello, C world!

And C++:

$ which g++
/mingw/bin/g++.exe
$ cat >hello.cc
#include <iostream>
int main() { std::cout << "Hello, C++ world!" << std::endl; return 0; }
^D
$ g++ -o hello hello.cc
$ ./hello.exe 
Hello, C++ world!

And Fortran 90:

$ which gfortran
/mingw/bin/gfortran.exe
$ cat >hello.f90
PROGRAM HelloWorld
    PRINT *, "Hello, Fortran world!"
END PROGRAM HelloWorld
^D
$ gfortran -o hello hello.f90
$ ./hello.exe 
 Hello, Fortran world!

The GNU Autotools, which we will install next, require Perl. Download http://downloads.sourceforge.net/project/mingw/MSYS%20perl/perl-5.6.1_2-1/perl-5.6.1_2-1-msys-1.0.11-bin.tar.lzma and install it:

$ tar --lzma -xvf perl-5.6.1_2-1-msys-1.0.11-bin.tar.lzma -C /

Autoconf

Automake

Libtool

$ for f in *tar.gz ; do tar zxvf $f -C /mingw ; done
$ for f in *tar.lzma ; do tar --lzma -xvf $f -C /mingw ; done

This utility is used to compile the Boost libraries. We're going to build it from source, so this is our baptism of MinGW fire…

Get the source tarball from http://downloads.sourceforge.net/project/boost/boost-jam/3.1.17/boost-jam-3.1.17.tgz; once you have it, it's a simple matter of running the build script (which will automatically detect MinGW) and installing the resulting executable:

$ tar zxf boost-jam-3.1.17.tgz
$ cd boost-jam-3.1.17
$ sh ./build.sh
$ mkdir -p /usr/local/bin
$ cp bin.ntx86/bjam.exe /usr/local/bin
$ which bjam
/usr/local/bin/bjam.exe
$ bjam -v       
Boost.Jam  Version 3.1.17. OS=NT.
   Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc.  
   Copyright 2001 David Turner.
   Copyright 2001-2004 David Abrahams.
   Copyright 2002-2008 Rene Rivera.
   Copyright 2003-2008 Vladimir Prus.

It's alive!

You may want to install other programs, such as:

Note that you should install *-mingw32-* in /mingw and *-msys-* in /:

$ for f in *-mingw32-*tar.lzma ; do tar --lzma -xvf $f -C /mingw ; done
$ for f in *-msys-*tar.lzma ; do tar --lzma -xvf $f -C / ; done

Some tarballs are compressed with xz (*.lzma), some with bzip2 (*.bz2), some with gzip (*.gz). Take care to use the correct tar options (–lzma, –bzip2 or –gzip) according to file type. However, once you've installed OpenSSL, all the compression libraries, libarchive and bsdtar, you can use bsdtar instead of GNU tar; bsdtar automatically detects the file type, so regardless of compression algorithm, you can just use bsdtar xvf <tarball> -C <destdir>.

Microsoft's tool for creating installation packages: http://sourceforge.net/projects/wix/files/. Ironically, it does not come with its own installer.

This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies
  • diana/windows/building/environment.1257949098.txt.gz
  • Last modified: 2022-05-31 09:23:14
  • (external edit)