about summary refs log tree commit diff
path: root/src/bootstrap/config.toml.example
AgeCommit message (Collapse)AuthorLines
2016-09-03rustbuild: add config.toml option to disable codegen testsAlex Burka-0/+4
2016-09-03change wordingAlex Burka-1/+2
2016-09-02indicate where to copy config.toml.exampleAlex Burka-0/+2
2016-07-26rustbuild: make backtraces (RUST_BACKTRACE) optionalJorge Aparicio-0/+3
but keep them enabled by default to maintain the status quo. When disabled shaves ~56KB off every x86_64-unknown-linux-gnu binary. To disable backtraces you have to use a config.toml (see src/bootstrap/config.toml.example for details) when building rustc/std: $ python bootstrap.py --config=config.toml
2016-05-18rustbuild: Pass -O to tests based on configurationAlex Crichton-0/+5
Currently rustbuild isn't detecting the `-O` flag for tests via the `--disable-optimize-tests` or not command line flag to `./configure`, and this commit patches up the support to pass `-O` by default.
2016-05-03rustbuild: Document many more parts of the buildAlex Crichton-0/+154
This commit expands the bootstrap build system's `README.md` as well as ensuring that all API documentation is present and up-to-date. Additionally a new `config.toml.example` file is checked in with commented out versions of all possible configuration values.