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!

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!

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.1257790240.txt.gz
  • Last modified: 2022-05-31 09:23:14
  • (external edit)