| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2021-05-28 | Use command line metadata path if provided | Jeremy Fitzhardinge | -0/+5 | |
| If the command-line has `--emit metadata=some/path/libfoo.rmeta` then use that. Closes #85356 | ||||
| 2020-11-08 | Collapse all uses of `target.options.foo` into `target.foo` | Vadim Petrochenkov | -10/+8 | |
| with an eye on merging `TargetOptions` into `Target`. `TargetOptions` as a separate structure is mostly an implementation detail of `Target` construction, all its fields logically belong to `Target` and available from `Target` through `Deref` impls. | ||||
| 2020-10-30 | Fix even more clippy warnings | Joshua Nelson | -4/+2 | |
| 2020-10-15 | Replace target.target with target and target.ptr_width with target.pointer_width | est31 | -17/+9 | |
| Preparation for a subsequent change that replaces rustc_target::config::Config with its wrapped Target. On its own, this commit breaks the build. I don't like making build-breaking commits, but in this instance I believe that it makes review easier, as the "real" changes of this PR can be seen much more easily. Result of running: find compiler/ -type f -exec sed -i -e 's/target\.target\([)\.,; ]\)/target\1/g' {} \; find compiler/ -type f -exec sed -i -e 's/target\.target$/target/g' {} \; find compiler/ -type f -exec sed -i -e 's/target.ptr_width/target.pointer_width/g' {} \; ./x.py fmt | ||||
| 2020-08-30 | mv compiler to compiler/ | mark | -0/+217 | |
