commit | ec7f59c7dfed26ab3da8f3b29b78870c4ce6671f | [log] [tgz] |
---|---|---|
author | Ivan Lozano <ivanlozano@google.com> | Wed Jul 15 17:24:19 2020 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Jul 15 17:24:19 2020 +0000 |
tree | 05b29b5e19a76dec903846624857a7ef387f550f | |
parent | 7e32313ef2b107156cbeb6b74933df8d304ea747 [diff] | |
parent | 33c05281a523b7f651fb3250a9fe215d9b8b7236 [diff] |
Merge "Fix incorrect Rust dylib extension on darwin."
diff --git a/rust/config/x86_darwin_host.go b/rust/config/x86_darwin_host.go index 4c16693..9dd49ff 100644 --- a/rust/config/x86_darwin_host.go +++ b/rust/config/x86_darwin_host.go
@@ -66,6 +66,10 @@ return ".dylib" } +func (t *toolchainDarwin) DylibSuffix() string { + return ".rustlib.dylib" +} + func (t *toolchainDarwin) ProcMacroSuffix() string { return ".dylib" }