about summary refs log tree commit diff
path: root/src/bootstrap/builder.rs
AgeCommit message (Collapse)AuthorLines
2017-07-27Make sure CFG_RELEASE_CHANNEL is always set.Mark Simulacrum-0/+4
Previously we'd build libsyntax without it when documenting and that'd cause us to recompile it when building normally for no reason.
2017-07-27Build rustdoc on-demand.Mark Simulacrum-7/+21
Rustdoc is no longer compiled in every stage, alongside rustc, instead it is only compiled when requested, and generally only for the last stage.
2017-07-20Change make_run signature to taking a RunConfig struct for refactorability.Mark Simulacrum-8/+16
2017-07-20Add an optional condition to constrain defaults.Mark Simulacrum-5/+18
Utilized primarily to not be a default rule unless some configuration is given (e.g., compiler docs are enabled).
2017-07-20Check RLS testsMark Simulacrum-1/+2
2017-07-20Don't run host-only tests when targeting another platformMark Simulacrum-3/+3
2017-07-20Allow iterating over step descriptions.Mark Simulacrum-107/+113
This simplifies code and allows working mostly with normal Rust instead of macros.
2017-07-20Implement available paths list.Mark Simulacrum-7/+98
2017-07-20Krate -> CrateMark Simulacrum-2/+2
2017-07-20Remove outdated code.Mark Simulacrum-13/+0
Relevant sys crates handle this properly.
2017-07-20Remove TypeId from stack in BuilderMark Simulacrum-9/+9
2017-07-20fail in case nothing to run was foundGuillaume Gomez-0/+5
2017-07-20Require should_run to be implemented.Mark Simulacrum-2/+13
2017-07-20Utilize interning to allow Copy/Clone stepsMark Simulacrum-51/+48
2017-07-20Remove core_intrinsics feature gateMark Simulacrum-0/+4
2017-07-20Fix a few errors introduced during rebase.Mark Simulacrum-1/+2
2017-07-20Cherry pick changes from ce3abc5801f94292be9bc5fbe00b52f1ccb28672.Mark Simulacrum-2/+7
Fix stage 2 builds with a custom libdir. When copying libstd for the stage 2 compiler, the builder ignores the configured libdir/libdir_relative configuration parameters. This causes the compiler to fail to find libstd, which cause any tools built with the stage 2 compiler to fail. To fix this, make the copy steps of rustbuild aware of the libdir_relative parameter when the stage >= 2. Also update the dist target to be aware of the new location of libstd.
2017-07-20Update to toml 0.4Mark Simulacrum-1/+5
2017-07-20Add documentation to Step and related methods on Builder.Mark Simulacrum-7/+31
2017-07-20Move code out of macro and into generic method.Mark Simulacrum-40/+39
2017-07-20Finish fixing warnings and errors. Bootstrap builds.Mark Simulacrum-19/+20
2017-07-20Move cargo() to BuilderMark Simulacrum-50/+43
2017-07-20Fixes warnings and errors introduced while moving code aroundMark Simulacrum-5/+5
2017-07-20Add Builder and Step definitions.Mark Simulacrum-0/+468