Function linkSystemLibrary2 [src]
Prototype
pub fn linkSystemLibrary2( compile: *Compile, name: []const u8, options: Module.LinkSystemLibraryOptions, ) void
Parameters
compile: *Compile
name: []const u8
options: Module.LinkSystemLibraryOptions
Source
pub fn linkSystemLibrary2(
compile: *Compile,
name: []const u8,
options: Module.LinkSystemLibraryOptions,
) void {
return compile.root_module.linkSystemLibrary(name, options);
}