about summary refs log tree commit diff
path: root/compiler/rustc_interface/messages.ftl
AgeCommit message (Collapse)AuthorLines
2025-09-21Add panic=immediate-abortBen Kimock-1/+1
2025-09-14Move more early buffered lints to dyn lint diagnostics (4/N)León Orell Valerian Liehr-0/+3
2025-09-08fixup limit handling codeJana Dönszelmann-4/+0
2025-03-30Remove attribute `#[rustc_error]`Vadim Petrochenkov-6/+0
2025-03-21Move some calls to before calling codegen_cratebjorn3-3/+0
`--emit mir`, `#[rustc_symbol_name]` and `#[rustc_def_path]` now run before codegen and thus work even if codegen fails. This can help with debugging.
2025-02-17Move `rustc_middle::limits` to `rustc_interface`.Nicholas Nethercote-0/+4
It's always good to make `rustc_middle` smaller. `rustc_interface` is the best destination, because it's the only crate that calls `get_recursive_limit`.
2025-02-15Reject macro calls inside of `#![crate_name]`León Orell Valerian Liehr-0/+4
2025-01-28ABI-required target features: warn when they are missing in base CPU (rather ↵Ralf Jung-0/+5
than silently enabling them)
2024-03-13Make incremental sessions identity no longer depend on the crate names ↵John Kåre Alsaker-3/+0
provided by source code
2023-06-06Write to stdout if `-` is given as output fileJing Peng-0/+1
If `-o -` or `--emit KIND=-` is provided, output will be written to stdout instead. Binary output (`obj`, `llvm-bc`, `link` and `metadata`) being written this way will result in an error unless stdout is not a tty. Multiple output types going to stdout will trigger an error too, as they will all be mixded together.
2023-05-25Ensure Fluent messages are in alphabetical orderclubby789-27/+27
2023-03-11Simplify message pathsest31-0/+52
This makes it easier to open the messages file while developing on features. The commit was the result of automatted changes: for p in compiler/rustc_*; do mv $p/locales/en-US.ftl $p/messages.ftl; rmdir $p/locales; done for p in compiler/rustc_*; do sed -i "s#\.\./locales/en-US.ftl#../messages.ftl#" $p/src/lib.rs; done