We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.0
libgccjit.so
1 parent 15b6fde commit c939e90Copy full SHA for c939e90
src/bootstrap/src/core/build_steps/gcc.rs
@@ -40,8 +40,7 @@ impl GccOutput {
40
// However, at runtime, it will by default look for libgccjit.so.0.
41
// So when we install the built libgccjit.so file to the target `directory`, we add it there
42
// with the `.0` suffix.
43
- let mut target_filename = self.libgccjit.file_name().unwrap().to_str().unwrap().to_string();
44
- target_filename.push_str(".0");
+ let target_filename = self.libgccjit.file_name().unwrap().to_str().unwrap().to_string();
45
46
// If we build libgccjit ourselves, then `self.libgccjit` can actually be a symlink.
47
// In that case, we have to resolve it first, otherwise we'd create a symlink to a symlink,
0 commit comments