std.Target: Rename is_lib{c,cxx}_lib_name() to isLib{C,Cxx}LibName().

This commit is contained in:
Alex Rønne Petersen
2024-10-08 06:42:42 +02:00
parent 482759079f
commit c76a98f28a
5 changed files with 10 additions and 10 deletions

View File

@@ -492,11 +492,11 @@ pub fn linkSystemLibrary(
const b = m.owner;
const target = m.requireKnownTarget();
if (target.is_libc_lib_name(name)) {
if (target.isLibCLibName(name)) {
m.link_libc = true;
return;
}
if (target.is_libcpp_lib_name(name)) {
if (target.isLibCxxLibName(name)) {
m.link_libcpp = true;
return;
}