Skip to content

Commit

Permalink
Fix support library name on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jieyouxu committed Feb 13, 2024
1 parent 49b9d65 commit 21df159
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/compiletest/src/runtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3765,7 +3765,7 @@ impl<'test> TestCx<'test> {
support_dylib_path.push(&build_root);
support_dylib_path.push(format!("{}-tools-bin", stage));
if self.config.target.contains("windows") {
support_dylib_path.push("librun_make_support.dll");
support_dylib_path.push("run_make_support.dll");
} else if self.config.target.contains("apple") {
support_dylib_path.push("librun_make_support.dylib");
} else {
Expand Down

0 comments on commit 21df159

Please sign in to comment.