commit | a8450fd2bebcd7bc4d43bdeb22d2645bcfb358f8 | [log] [tgz] |
---|---|---|
author | Ivan Lozano <ivanlozano@google.com> | Fri May 29 13:44:13 2020 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri May 29 13:44:13 2020 +0000 |
tree | 6395819b38ab58957316c3f136735c1d48a4b7c2 | |
parent | e739f1ed9fb7ec7ae269a2615c03d0e44f7dc981 [diff] | |
parent | c0ccb6b4433ebe0f4ada8ae4a3594c24e1003222 [diff] |
Merge "Fix darwin shared library and proc macro suffixes."
diff --git a/rust/config/x86_darwin_host.go b/rust/config/x86_darwin_host.go index 7cfc59c..4c16693 100644 --- a/rust/config/x86_darwin_host.go +++ b/rust/config/x86_darwin_host.go
@@ -62,7 +62,11 @@ return "x86_64-apple-darwin" } -func (t *toolchainDarwin) ShlibSuffix() string { +func (t *toolchainDarwin) SharedLibSuffix() string { + return ".dylib" +} + +func (t *toolchainDarwin) ProcMacroSuffix() string { return ".dylib" }