Subset of the boost libraries used by shadPS4
Go to file
2023-08-03 01:47:27 +03:00
boost boost: Add circular_buffer 2023-08-03 01:47:27 +03:00
libs Add boost/locale/encoding_utf.hpp 2023-06-18 19:37:51 +05:30
build.cmd boost: Add stack traces (#31) 2023-06-24 18:24:15 +03:00
Jamroot Update to boost 1.82.0 and add url 2023-05-22 18:45:02 +10:00
LICENSE_1_0.txt Initial commit. 2014-12-07 20:43:27 +01:00
Readme.md Add boost/locale/encoding_utf.hpp 2023-06-18 19:37:51 +05:30

Boost libraries - trimmed down for Citra

This is a subset of Boost v1.82.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:

    .\bootstrap.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.2\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.

  • Add/remove all files in git and commit.