Subset of the boost libraries used by shadPS4
Go to file
2019-08-10 18:58:40 +01:00
boost Add more serializable types; remove unique_ptr 2019-08-10 18:58:40 +01:00
libs Update boost to 1.70.0; add serialization 2019-08-06 15:54:37 +01:00
build.cmd Add more serializable types; remove unique_ptr 2019-08-10 18:58:40 +01:00
Jamroot Update boost to 1.70.0; add serialization 2019-08-06 15:54:37 +01:00
LICENSE_1_0.txt Initial commit. 2014-12-07 20:43:27 +01:00
Readme.md Update boost to 1.67 and add asio 2018-07-26 21:04:37 -06:00

Boost libraries - trimmed down for Citra

This is a subset of Boost v1.67.0 generated using the bcp tool. To get a list of boost modules guaranteed to exist, check the build script.

Updating this repo (on Windows)

To update the Boost version (or to add a new library) follow these steps:

  • Download Boost and extract the package, then launch Powershell and cd to the boost_1_xx_0 directory.

  • Build the bcp tool:

    .\boostrap.bat
    .\b2 tools\bcp
    
  • Store the boost directory in a variable for later use: $boost_dir = $pwd.

  • Add bcp to your path: $env:Path += $boost_dir\bin.v2\tools\bcp\msvc-14.1\release\link-static\threading-multi (The correct output path should be printed by b2 during the build.)

  • cd to this repo's directory (...\externals\boost\)

  • Remove the existing boost from the repo: rm -r boost (This is only necessary if doing a Boost version upgrade, in case they removed any files in the new version.)

  • Run .\build.cmd $boost_dir to build a new trimmed down distro.

  • Remove libs\ and Jamroot if you didn't introduce any new boost dependencies that aren't header only

  • Add/remove all files in git and commit.