Changes between Version 345 and Version 346 of BuildInstructions


Ignore:
Timestamp:
May 27, 2019, 5:49:13 PM (5 years ago)
Author:
s0600204
Comment:

Update CentOS build instructions.

Legend:

Unmodified
Added
Removed
Modified
  • BuildInstructions

    v345 v346  
    325325
    3263265. Acquire a sufficiently recent version of //boost//:
    327    * From https://www.boost.org/users/history/version_1_68_0.html, download `boost_1_68_0.tar.gz`.
     327   * From https://www.boost.org/users/history/version_1_70_0.html, download `boost_1_70_0.tar.gz`.
    328328   * Uncompress archive:
    329      - $ `tar -xf boost_1_68_0.tar.gz`
     329     - $ `tar -xf boost_1_70_0.tar.gz`
    330330   * Enter folder:
    331      - $ `cd ./boost_1_68_0`
     331     - $ `cd ./boost_1_70_0`
    332332   * Compile the parts that are needed to be compiled, and install the libraries:
    333333     - $ `./bootstrap.sh --with-libraries=filesystem,system`
    334334     - # `./b2 install`
    335335     - (Compiled files end up in `/usr/local/lib/`, header files in `/usr/local/include/boost/`)
    336 
    337 6. You should now have all dependencies for 0AD. Continue by [#Gettingthecode getting the code], as described below.
     336   * Make sure the runtime linker can find the updated //boost// libraries:
     337     - Navigate to `/etc/ld.so.conf.d` and create a blank file called `pyro.conf`.
     338     - Within this file, enter the text `/usr/local/lib` and save.
     339
     3406. You should now have all dependencies for 0AD. Continue by [#Gettingthecode getting the code], as described below. When you get to the part below in [#Building Building] where you run `./update-workspaces.sh`, you **must** use the argument `--prefer-local-libs`.
    338341
    339342==== !VoidLinux ====