diff options
Diffstat (limited to 'plugins/dwarf')
| -rw-r--r-- | plugins/dwarf/dwarf_export/build.rs | 5 | ||||
| -rw-r--r-- | plugins/dwarf/dwarf_import/build.rs | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/plugins/dwarf/dwarf_export/build.rs b/plugins/dwarf/dwarf_export/build.rs index 97e3e7f5..9006f16a 100644 --- a/plugins/dwarf/dwarf_export/build.rs +++ b/plugins/dwarf/dwarf_export/build.rs @@ -17,6 +17,9 @@ fn main() { { let crate_name = std::env::var("CARGO_PKG_NAME").expect("CARGO_PKG_NAME not set"); let lib_name = crate_name.replace('-', "_"); - println!("cargo::rustc-link-arg=-Wl,-install_name,@rpath/lib{}.dylib", lib_name); + println!( + "cargo::rustc-link-arg=-Wl,-install_name,@rpath/lib{}.dylib", + lib_name + ); } } diff --git a/plugins/dwarf/dwarf_import/build.rs b/plugins/dwarf/dwarf_import/build.rs index 97e3e7f5..9006f16a 100644 --- a/plugins/dwarf/dwarf_import/build.rs +++ b/plugins/dwarf/dwarf_import/build.rs @@ -17,6 +17,9 @@ fn main() { { let crate_name = std::env::var("CARGO_PKG_NAME").expect("CARGO_PKG_NAME not set"); let lib_name = crate_name.replace('-', "_"); - println!("cargo::rustc-link-arg=-Wl,-install_name,@rpath/lib{}.dylib", lib_name); + println!( + "cargo::rustc-link-arg=-Wl,-install_name,@rpath/lib{}.dylib", + lib_name + ); } } |
