std.Target: Rename is_lib{c,cxx}_lib_name() to isLib{C,Cxx}LibName().
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user