diff options
| author | Antoni Boucher <bouanto@zoho.com> | 2025-09-28 12:08:44 -0400 |
|---|---|---|
| committer | Antoni Boucher <bouanto@zoho.com> | 2025-09-28 13:57:33 -0400 |
| commit | 7fcbc5ea465a4e280d3b7a84fc3f781e9a120ed0 (patch) | |
| tree | c77bb7d892226e63dfc6b82529cf724ff7b5ad5c /compiler/rustc_codegen_gcc/src/lib.rs | |
| parent | a00a5159cfac23e9b1551566cf71ff31edc1f11b (diff) | |
| download | rust-7fcbc5ea465a4e280d3b7a84fc3f781e9a120ed0.tar.gz rust-7fcbc5ea465a4e280d3b7a84fc3f781e9a120ed0.zip | |
Add a leading dash to linker plugin arguments in the gcc codegen
Diffstat (limited to 'compiler/rustc_codegen_gcc/src/lib.rs')
| -rw-r--r-- | compiler/rustc_codegen_gcc/src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_gcc/src/lib.rs b/compiler/rustc_codegen_gcc/src/lib.rs index f76f933cad4..ec7eab8489a 100644 --- a/compiler/rustc_codegen_gcc/src/lib.rs +++ b/compiler/rustc_codegen_gcc/src/lib.rs @@ -184,6 +184,10 @@ impl CodegenBackend for GccCodegenBackend { crate::DEFAULT_LOCALE_RESOURCE } + fn name(&self) -> &'static str { + "gcc" + } + fn init(&self, _sess: &Session) { #[cfg(feature = "master")] { |
