Free and Open Source real time strategy game with a new take on micro-management

Mingw compilation

From Globulation2

Revision as of 04:16, 24 July 2007 by Genixpro (talk | contribs)
Jump to: navigation, search

This page explains how to compile Globulation 2 on windows using mingw.

Versions 0.8.23 and previous: As of 0.9.0 and future versions, Globulation 2 no longer uses autotools, and make for compiling the source. We have switched to Scons (which is the guide you see below). If you are wanting to compile an older version, then you will need to recompile all the required libraries when you install MinGW (0.2.23 is no longer support on MinGW).


Setting up Python, Scons, and Mercurial

  • Download and install python-2.5.1.msi into the directory "C:\Python25" (default install is Python25, don't change this)
  • Download and install scons-0.97.win32.exe into the same directory as the python install (C:\Python25\)
  • Download and install Mercurial-0.9.4-f48290864625.exe locally (to any directory, preferably default C:\Mercurial though) so the command hg will work. When you get to the end of the install, make sure you check "add mercurial to your computers search path" or something similar. And now you are ready to go.


Setting up mingw

(Warning! For the first 3 steps, all install directories must be the exact same. Do not use spaces or capitals for the installation directory. For this guide, we will use the default c:\mingw)
  • Download and install MinGW-5.1.3.exe into the directory c:\mingw (lower case) and select the MinGW base tools and GCC base tools packages only during the installation selection process
  • Next, download and install MSYS-1.0.10.exe in the same directory as MinGW (c:\mingw). At the end of the installation, it will ask you if you want to continue with the post-install. Select yes, and yes again when it ask if you have mingw installed. When it ask you to indicate the directory where it is installed, type in c:/mingw (yes, with a forward slash as the program prefers it that way).
  • And lastly, download and install msysDTK-1.0.1.exe in the same directory as mingw and msys (c:\mingw)


Compiling Prerequisites

  • Download mingw_required_libs.tar.bz2 and put it in the home directory of mingw (c:\mingw\home\XXX\ where XXX is the username)
  • Double click the MSYS icon that has been placed on your desktop during MSYS's installation.
  • Go in the directory where you put the mingw_required_libs.tar.bz2 (for example cd ~) and untar the libraries using the command below. This process could take a while:
tar jxf mingw_required_libs.tar.bz2 -C /


Compiling Globulation 2

Step 1: Preparing for a compile

Compiling from Released source code

  • Download and extract the release to c:\mingw\home\XXX\ (where XXX is the username), then run (changing the version numbers):
mv glob2-x.x.xx glob2_source

Compiling from Mercurial source files

  • Download Globulation 2 from mercurial:
hg clone http://hg.globulation2.org/glob2/
  • Extract the master (the stable branch) from the mercurial download (this can also be used to extract other branches, such as core_rewrite_2007):
hg clone -r master glob2 glob2_source
  • To get the data, maps, and campaigns needed to play the game, run the following commands:
cd glob2_source
hg update tip
./syncdata
./syncmaps

Step 2: Continue compiling

  • Before compiling glob2, run these commands from the mingw console:
cd glob2_source
  • Now to start compiling globulation 2. Don't worry about the warnings. If something is wrong, it will grind to a halt and it will let you know why:
scons mingw=true
  • To make the executable smaller in size, run the following command:
strip ./src/glob2.exe


Testing Globulation 2 on windows

  • Download glob2_windows_runtime.tar-2.bz2
wget http://dl.sv.nongnu.org/releases/glob2/mingw/glob2_windows_runtime.tar.bz2
  • Extract it with :
tar jxf glob2_windows_runtime.tar.bz2
  • Copy the folders data/, maps/, and campaigns/ and the files AUTHORS and COPYING to glob2_runtime/, overwriting any existing files
  • Copy glob2.exe which is in the src directory (glob2/src/) to glob2_runtime/
  • Run glob2.exe from the glob2_runtime directory and play :)
Misc