Commit a879c3ea0b
Changed files (1)
src
src/target.zig
@@ -268,6 +268,7 @@ pub fn classifyCompilerRtLibName(name: []const u8) CompilerRtClassification {
return .both;
}
if (std.mem.eql(u8, name, "compiler_rt") or
+ std.mem.eql(u8, name, "gcc") or
std.mem.eql(u8, name, "atomic"))
{
return .only_compiler_rt;