-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- update extracting boost subset instruction - add extracting script for Linux
- Loading branch information
1 parent
1c2451c
commit fa7fbdc
Showing
1,759 changed files
with
27,876 additions
and
180,892 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
b2 | ||
# b2.exe | ||
b2.exe | ||
bin.v2 | ||
bjam | ||
# bjam.exe | ||
bjam.exe | ||
bootstrap.log | ||
boost | ||
dist | ||
project-config.jam* | ||
stage | ||
stage_x64 | ||
user-config.jam | ||
.settings | ||
.project | ||
.pydevproject | ||
|
||
*.exe | ||
*.pdb | ||
*.obj |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,17 @@ | ||
Boost libraries - trimmed down for Vita3K | ||
======================================== | ||
# Boost libraries - trimmed down for Vita3K | ||
|
||
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. | ||
This is a subset of Boost v1.72.0 generated using the bcp tool. To get a list of boost modules guaranteed to exist, check the build script. | ||
Adapted from [citra-emu/ext-boost](https://github.com/citra-emu/ext-boost). | ||
|
||
Updating this repo (on Windows) | ||
=============================== | ||
## Updating this repo | ||
|
||
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`. | ||
- `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. | ||
- Copy the `tools/build/` directory from the untouched `boost_1_xx_0` zip to `./tools/build`. Alternatively we could include it with `bcp`'s files, but it would also include a bunch of build files (since we've built Boost build tools) that unecessarily increase the size. | ||
- Add/remove all files in git and commit. | ||
- Download [`boost`](https://boost.org) and extract the package. | ||
- Copy `update.sh` or `update.cmd` in this repo to extracted directory of `boost`. | ||
- `cd` to extracted `boost` directory and run `update` script. The trimed down version of `boost` will be in the `subsets-boost` directory. | ||
- Copy `update.sh`, `update.bat`, `.gitignore`, and `README.md` in this repo to another directory. | ||
- Remove all the files in this directory (except the `.git` directory). | ||
- Copy all files in `subsets-boost` to this repo directory. | ||
- Copy `update.sh`, `update.bat`, `.gitignore`, and `README.md` back to this repo directory. | ||
- Commit all changes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.