summary refs log tree commit diff
path: root/src/librustc/session/config.rs
AgeCommit message (Expand)AuthorLines
2019-01-05Rollup merge of #57219 - matthewjasper:mir-cleanup, r=nikomatsakiskennytm-4/+0
2018-12-30Remove unused nll debug flagsMatthew Jasper-4/+0
2018-12-30Add `-Z instrument-mcount`Jun Wu-0/+2
2018-12-28Auto merge of #57118 - Zoxc:query-stats, r=wesleywiserbors-0/+2
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-25Add a command line flag to print some query statsJohn Kåre Alsaker-0/+2
2018-12-21Enable emission of alignment attrs for pointer paramsNikita Popov-2/+0
2018-12-14Auto merge of #56351 - davidtwco:issue-55396-stabilize-linker-flavor, r=nagisabors-2/+2
2018-12-13Stabilize `linker-flavor` flag.David Wood-2/+2
2018-12-12Introduce `SearchPath` and replace `SearchPaths` with `Vec<SearchPath>`.Nicholas Nethercote-25/+26
2018-12-08Rollup merge of #56597 - vext01:dump-mir-usage, r=wesleywiserMazdak Farrokhzad-1/+7
2018-12-07Various minor/cosmetic improvements to codeAlexander Regueiro-3/+3
2018-12-07Improve the usage message for `-Z dump-mir`.Edd Barrett-1/+7
2018-12-06Rollup merge of #56500 - ljedrz:cleanup_rest_of_const_lifetimes, r=zackmdavisPietro Albini-22/+21
2018-12-04updates all Filename variants to take a fingerprintMatthew Russo-2/+2
2018-12-04cleanup: remove static lifetimes from constsljedrz-22/+21
2018-11-29Remove not used optionyui-knk-2/+0
2018-11-25Auto merge of #55959 - matthewjasper:remove-end-region, r=nikomatsakisbors-2/+0
2018-11-19Fix error message for `-C panic=xxx`.Eric Huss-1/+1
2018-11-18Remove mir::StatementKind::EndRegionMatthew Jasper-2/+0
2018-11-13fix various typos in doc commentsAndy Russell-6/+6
2018-11-08Rollup merge of #55576 - birkenfeld:opt-level-error-msg, r=cramertjMark Rousskov-1/+1
2018-11-05-C remark: fix incorrect warning about requiring "--debuginfo" instead of "-C...Matthias Krüger-2/+1
2018-11-01Clarify error message for -C opt-levelGeorg Brandl-1/+1
2018-10-29Emit Retag statements, kill Validate statementsRalf Jung-3/+2
2018-10-15rustc/session: use to_owned when no string conversion is neededljedrz-2/+2
2018-10-15rustc/session: improve common patternsljedrz-28/+17
2018-10-15rustc/session: improve allocationsljedrz-3/+4
2018-10-15rustc/session: whitespace & formatting improvementsljedrz-82/+76
2018-10-11Support for disabling the PLT on ELF targetsGabriel Majeri-0/+4
2018-10-01Rollup merge of #54676 - pnkfelix:issue-15287-kill-zflag-disabling-ast-check,...kennytm-2/+0
2018-10-01Auto merge of #54675 - alexcrichton:defaultlibs, r=varkorbors-0/+2
2018-09-29don't elide lifetimes in paths in librustc/Zack M. Davis-1/+1
2018-09-29rust: Add a `-C default-linker-libraries` optionAlex Crichton-0/+2
2018-09-28Prefer `#![feature(bind_by_move_pattern_guards)]` over `-Z disable_ast_check_...Felix S. Klock II-2/+0
2018-09-26add -Z emit-stack-sizesJorge Aparicio-0/+2
2018-09-25incr.comp.: Don't automatically enable -Zshare-generics for incr.comp. builds.Michael Woerister-1/+0
2018-09-18Refactor 'ReadForMatch' into 'FakeRead' and add the cause of the fake readRemy Rakic-1/+1
2018-09-18Rollup merge of #54232 - pnkfelix:add-way-to-disable-diagnostic-buffering, r=...Guillaume Gomez-0/+2
2018-09-17Add -Z dont-buffer-diagnostics, a way to force NLL to immediately emit its di...Felix S. Klock II-0/+2
2018-09-15rustc: add unstable support for --extern crate_name without a path.Eduard-Mihai Burtescu-21/+22
2018-09-14Rollup merge of #53950 - michaelwoerister:more-lto-cli, r=alexcrichtonkennytm-16/+44
2018-09-06Validate syntax of `--cfg` command line argumentsVadim Petrochenkov-14/+25
2018-09-05Allow for opting out of ThinLTO and clean up LTO related cli flag handling.Michael Woerister-16/+44
2018-08-31Support local ThinLTO with incremental compilation.Michael Woerister-1/+1
2018-08-28Use FxHash{Map,Set} instead of the default Hash{Map,Set} everywhere in rustc.Eduard-Mihai Burtescu-2/+2
2018-08-23use String::new() instead of String::from(""), "".to_string(), "".to_owned() ...Matthias Krüger-3/+3
2018-08-19mv (mod) codemap source_mapDonato Sciarra-1/+1
2018-08-18Use the new Entry::or_default method where possible.Eduard-Mihai Burtescu-2/+2
2018-08-09Reuse Hash impls for session data structuresMark Rousskov-32/+4