about summary refs log tree commit diff
path: root/src/librustc_session/search_paths.rs
AgeCommit message (Collapse)AuthorLines
2020-08-30mv compiler to compiler/mark-95/+0
2020-08-14Rework `rustc_serialize`Matthew Jasper-1/+1
- Move the type parameter from `encode` and `decode` methods to the trait. - Remove `UseSpecialized(En|De)codable` traits. - Remove blanket impls for references. - Add `RefDecodable` trait to allow deserializing to arena-allocated references safely. - Remove ability to (de)serialize HIR. - Create proc-macros `(Ty)?(En|De)codable` to help implement these new traits.
2020-04-07Speed up path searching with `find_library_crate`.Nicholas Nethercote-2/+28
By doing prefix and suffix checking on a `String` copy of each relevant `PathBuf`, rather than the `PathBuf` itself.
2020-01-23Add `-Z no-link` flagVictor Ding-1/+1
Adds a compiler option to allow rustc compile a crate without linking. With this flag, rustc serializes codegen_results into a .rlink file.
2019-12-22Format the worldMark Rousskov-8/+3
2019-12-03Move Session to librustc_sessionMark Rousskov-0/+74