Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rework Rustbuild to an eagerly compiling approach #43059

Merged
merged 51 commits into from
Jul 22, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
0a1b5e8
Move rule configs out of step
Mark-Simulacrum Jul 4, 2017
001e9f3
Move code into Step trait implementations.
Mark-Simulacrum Jul 5, 2017
6b3413d
Change code to work with the new system
Mark-Simulacrum Jul 5, 2017
cd3dd80
Add Builder and Step definitions.
Mark-Simulacrum Jul 5, 2017
6038830
Fixes warnings and errors introduced while moving code around
Mark-Simulacrum Jul 5, 2017
1a844eb
Move tool_cmd to tool.rs
Mark-Simulacrum Jul 5, 2017
276090e
Fix tool_cmd
Mark-Simulacrum Jul 5, 2017
7db49fb
Move cargo() to Builder
Mark-Simulacrum Jul 5, 2017
c114fe5
Finish fixing warnings and errors. Bootstrap builds.
Mark-Simulacrum Jul 5, 2017
ef1d1bd
Move code out of macro and into generic method.
Mark-Simulacrum Jul 6, 2017
e62fdf3
Pacify tidy
Mark-Simulacrum Jul 6, 2017
8264e42
Add documentation to Step and related methods on Builder.
Mark-Simulacrum Jul 7, 2017
b881aae
Document the process more thoroughly
Mark-Simulacrum Jul 4, 2017
1ab8930
Move compiletest config into a struct
Mark-Simulacrum Jul 7, 2017
aa8b93b
Rework compiletest implementation.
Mark-Simulacrum Jul 7, 2017
d812d43
Fix a nit.
Mark-Simulacrum Jul 7, 2017
d360af4
Migrate to serde_json entirely
Mark-Simulacrum Jul 4, 2017
a1fa268
Update to toml 0.4
Mark-Simulacrum Jul 4, 2017
c7435b5
Cherry pick changes from ce3abc5801f94292be9bc5fbe00b52f1ccb28672.
Mark-Simulacrum Jul 8, 2017
a5ab2ce
Fix a few errors introduced during rebase.
Mark-Simulacrum Jul 12, 2017
ceecd62
Fix more incorrectly transitioned code
Mark-Simulacrum Jul 12, 2017
5984e70
Cleanups and fixes throughout
Mark-Simulacrum Jul 13, 2017
6a85193
Clean up install
Mark-Simulacrum Jul 13, 2017
e7b1a60
Remove core_intrinsics feature gate
Mark-Simulacrum Jul 13, 2017
528646e
Utilize interning to allow Copy/Clone steps
Mark-Simulacrum Jul 14, 2017
270d1d6
Make the book default.
Mark-Simulacrum Jul 14, 2017
681b123
Require should_run to be implemented.
Mark-Simulacrum Jul 14, 2017
fc3d06a
Implement keep-stage support
Mark-Simulacrum Jul 14, 2017
17f4b8f
Remove outdated FIXME from cache
Mark-Simulacrum Jul 14, 2017
f19728f
Fix tidy
Mark-Simulacrum Jul 14, 2017
828b661
fail in case nothing to run was found
GuillaumeGomez Jul 10, 2017
dec44b0
Resolve rebase errors
Mark-Simulacrum Jul 17, 2017
28defe0
Remove deserialize
aidanhs Jul 16, 2017
7414868
Remove TypeId from stack in Builder
Mark-Simulacrum Jul 18, 2017
ba1fc82
Remove outdated code.
Mark-Simulacrum Jul 18, 2017
981afa5
Krate -> Crate
Mark-Simulacrum Jul 18, 2017
bca1e2f
Use a single line for serde annotations.
Mark-Simulacrum Jul 18, 2017
56128fb
Implement available paths list.
Mark-Simulacrum Jul 19, 2017
5bdec80
Allow iterating over step descriptions.
Mark-Simulacrum Jul 19, 2017
4a21c72
Fix a few issues found by comparing past/present
Mark-Simulacrum Jul 20, 2017
f1d04a3
Don't run host-only tests when targeting another platform
Mark-Simulacrum Jul 20, 2017
951616c
Don't include lldb/gdb in default tests
Mark-Simulacrum Jul 20, 2017
bcd73c9
Change default documentation rules to correspond with previous state.
Mark-Simulacrum Jul 20, 2017
8563280
Check RLS tests
Mark-Simulacrum Jul 20, 2017
e9c2242
Remove step.rs comments
Mark-Simulacrum Jul 20, 2017
d8aecc1
Remove step.rs
Mark-Simulacrum Jul 20, 2017
b05af49
Add an optional condition to constrain defaults.
Mark-Simulacrum Jul 20, 2017
6a67a05
Change make_run signature to taking a RunConfig struct for refactorab…
Mark-Simulacrum Jul 20, 2017
d302c18
Fix StartupObject build
Mark-Simulacrum Jul 22, 2017
8f2e576
Add make_run to distcheck.
Mark-Simulacrum Jul 22, 2017
1c11823
Make distcheck work again.
Mark-Simulacrum Jul 22, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 8 additions & 13 deletions src/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions src/bootstrap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@ build_helper = { path = "../build_helper" }
cmake = "0.1.23"
filetime = "0.1"
num_cpus = "1.0"
toml = "0.1"
getopts = "0.2"
rustc-serialize = "0.3"
gcc = "0.3.50"
libc = "0.2"
serde = "1.0.8"
serde_derive = "1.0.8"
serde_json = "1.0.2"
toml = "0.4"
lazy_static = "0.2"
Loading