Skip to content

Commit f71d86b

Browse files
committed
compiletest: Fix typo in get_lib_name(); .lib -> .rlib
1 parent df1b1af commit f71d86b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/tools/compiletest/src/runtest.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ fn get_lib_name(lib: &str, dylib: bool) -> String {
8686
// In some casess (e.g. MUSL), we build a static
8787
// library, rather than a dynamic library.
8888
// In this case, the only path we can pass
89-
// with '--extern-meta' is the '.lib' file
89+
// with '--extern-meta' is the '.rlib' file
9090
if !dylib {
9191
return format!("lib{}.rlib", lib);
9292
}

0 commit comments

Comments
 (0)