diff options
| author | Jieyou Xu <jieyouxu@outlook.com> | 2025-05-15 16:51:32 +0800 | 
|---|---|---|
| committer | Josh Stone <cuviper@gmail.com> | 2025-05-22 15:39:14 -0700 | 
| commit | fcdcea758ec03be56586d1e631f8b574a4626f6c (patch) | |
| tree | 33b18779c5d47877c0757e8a9e723c2ee2773da8 /compiler/rustc_codegen_ssa/src/lib.rs | |
| parent | e39669866a746fc891f4285692e53ddb8d5c5d8d (diff) | |
| download | rust-fcdcea758ec03be56586d1e631f8b574a4626f6c.tar.gz rust-fcdcea758ec03be56586d1e631f8b574a4626f6c.zip | |
Revert "Fix linking statics on Arm64EC #140176"
Unfortunately, multiple people are reporting linker warnings related to `__rust_no_alloc_shim_is_unstable` after this change. The solution isn't quite clear yet, let's revert to green for now, and try a reland with a determined solution for `__rust_no_alloc_shim_is_unstable`. This reverts commit c8b7f32434c0306db5c1b974ee43443746098a92, reversing changes made to 667247db71ea18c4130dd018d060e7f09d589490. (cherry picked from commit 734a5b1aa7888db3d86faffea1a15254022d68c9)
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/lib.rs')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/lib.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/compiler/rustc_codegen_ssa/src/lib.rs b/compiler/rustc_codegen_ssa/src/lib.rs index 4f9757f198b..bfec208c4ae 100644 --- a/compiler/rustc_codegen_ssa/src/lib.rs +++ b/compiler/rustc_codegen_ssa/src/lib.rs @@ -219,7 +219,7 @@ pub struct CrateInfo { pub target_cpu: String, pub target_features: Vec<String>, pub crate_types: Vec<CrateType>, - pub exported_symbols: UnordMap<CrateType, Vec<(String, SymbolExportKind)>>, + pub exported_symbols: UnordMap<CrateType, Vec<String>>, pub linked_symbols: FxIndexMap<CrateType, Vec<(String, SymbolExportKind)>>, pub local_crate_name: Symbol, pub compiler_builtins: Option<CrateNum>, | 
