mirror of
https://github.com/ziglang/zig.git
synced 2026-02-12 20:37:54 +00:00
compiler: Classify libssp as an alias for compiler-rt.
This is a GCC library providing symbols with stack smashing protection. We provide (most of) these symbols in our compiler-rt.
This commit is contained in:
parent
65cfc91836
commit
8f27fc6c07
@ -269,7 +269,8 @@ pub fn classifyCompilerRtLibName(name: []const u8) CompilerRtClassification {
|
||||
}
|
||||
if (std.mem.eql(u8, name, "compiler_rt") or
|
||||
std.mem.eql(u8, name, "gcc") or
|
||||
std.mem.eql(u8, name, "atomic"))
|
||||
std.mem.eql(u8, name, "atomic") or
|
||||
std.mem.eql(u8, name, "ssp"))
|
||||
{
|
||||
return .only_compiler_rt;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user