Changes between Version 83 and Version 84 of BuildInstructions


Ignore:
Timestamp:
Apr 1, 2010, 12:04:07 AM (14 years ago)
Author:
Philip Taylor
Comment:

split out release info

Legend:

Unmodified
Added
Removed
Modified
  • BuildInstructions

    v83 v84  
    11[[TOC]]
     2
     3This page describes how to get the very latest unstable version of the code. Unless you want to actively follow and contribute to development, you probably want the [LatestRelease latest relatively-stable release] instead.
    24
    35The current release of the game is aimed at developers and not at 'normal' users. As such, the following instructions assume a reasonable level of technical proficiency. If you encounter difficulties, please post on the [http://www.wildfiregames.com/forum/index.php?showforum=312 forum].
     
    5557
    5658 * Install various standard tools and development libraries:
    57    * GCC (at least 4.1, preferably 4.3)
     59   * GCC (at least 4.0, preferably 4.3)
    5860   * Subversion
    5961   * NASM
     
    146148}}}
    147149
    148 
    149 == Obtaining the latest release ==
    150 
    151 '''This is a new untested distribution method. It might be best to stick with SVN for now, while we sort this out over the next few days.'''
    152 
    153 === Linux packages ===
    154 
    155 Unofficial packages may exist or be in development for several distros:
    156  * [http://bugs.gentoo.org/show_bug.cgi?id=278541 Gentoo]
    157  * [http://aur.archlinux.org/packages.php?ID=28560 Arch]
    158  * [https://bugs.launchpad.net/getdeb.net/+bug/543277 Ubuntu]
    159 If you use a different distro, or if these packages are outdated, or if you want to edit or debug the code, see the next section.
    160 
    161 === Compiling on Linux and OS X ===
    162 
    163 You need two files:
    164  * [http://releases.wildfiregames.com/0ad-r07413-pre-alpha-unix-build.tar.xz 0ad-unix-build.tar.xz] (6 MB) ''or'' [http://releases.wildfiregames.com/0ad-r07413-pre-alpha-unix-build.tar.bz2 0ad-unix-build.tar.bz2] (8 MB)
    165  * [http://releases.wildfiregames.com/0ad-r07413-pre-alpha-unix-data.tar.xz 0ad-unix-data.tar.xz] (92 MB) ''or'' [http://releases.wildfiregames.com/0ad-r07413-pre-alpha-unix-data.tar.bz2 0ad-unix-data.tar.bz2] (106 MB)
    166 The `.xz` files are smaller but may require you to install [http://tukaani.org/xz/ XZ Utils].
    167 
    168 SHA1 digests:
    169 {{{
    170 66657a2799fbc05edf07de5d33e8d59319839a3f  0ad-r07413-pre-alpha-unix-build.tar.xz
    171 ba9ed5d4545e29b19c27f33b68c605342337ed7f  0ad-r07413-pre-alpha-unix-build.tar.bz2
    172 9d2c25f1ec54c5b6a3a8ff59577d3effb35b4eb8  0ad-r07413-pre-alpha-unix-data.tar.xz
    173 06fbf94bb38f3b3069df6efe0ccf93c6dd1ffc56  0ad-r07413-pre-alpha-unix-data.tar.bz2
    174 }}}
    175 
    176 Extract both files to the same location:
    177 {{{
    178 # Extract .xz version into the current directory:
    179 tar xvJf 0ad-r07413-pre-alpha-unix-build.tar.xz
    180 tar xvJf 0ad-r07413-pre-alpha-unix-data.tar.xz
    181 # Or, if your tar is older than 1.22:
    182 xz -cd 0ad-r07413-pre-alpha-unix-build.tar.xz | tar xv
    183 xz -cd 0ad-r07413-pre-alpha-unix-data.tar.xz | tar xv
    184 # Or, if you have the .bz2 version:
    185 tar xvjf 0ad-r07413-pre-alpha-unix-build.tar.bz2
    186 tar xvjf 0ad-r07413-pre-alpha-unix-data.tar.bz2
    187 }}}
    188 
    189 Then follow the SVN build instructions.
    190 
    191 === Windows ===
    192 
    193 Download and run [http://releases.wildfiregames.com/0ad-r07413-pre-alpha-win32.exe 0ad-win32.exe] (114 MB) (self-extracting [http://www.7-zip.org/ 7-Zip]), then select a location to extract the files. This includes all the source code and data files, and precompiled binaries.
    194 
    195 SHA1 digest:
    196 {{{
    197 26b7dbcf9ce346c278ac5e2bacc583f61069534c  0ad-r07413-pre-alpha-win32.exe
    198 }}}
    199 
    200 Either follow the SVN build instructions, or run binaries\system\pyrogenesis.exe directly.
    201 
    202150== Creating Linux packages ==
    203151