| ... | @@ -272,7 +272,9 @@ pub fn classifyCompilerRtLibName(name: []const u8) CompilerRtClassification { | ... | @@ -272,7 +272,9 @@ pub fn classifyCompilerRtLibName(name: []const u8) CompilerRtClassification { |
| 272 | { | 272 | { |
| 273 | return .only_compiler_rt; | 273 | return .only_compiler_rt; |
| 274 | } | 274 | } |
| 275 | if (std.mem.eql(u8, name, "unwind")) { | 275 | if (std.mem.eql(u8, name, "unwind") or |
| | 276 | std.mem.eql(u8, name, "gcc_eh")) |
| | 277 | { |
| 276 | return .only_libunwind; | 278 | return .only_libunwind; |
| 277 | } | 279 | } |
| 278 | return .none; | 280 | return .none; |