Merge "Fix darwin shared library and proc macro suffixes."

This commit is contained in:
Ivan Lozano 2020-05-29 13:44:13 +00:00 committed by Gerrit Code Review
commit a8450fd2be
1 changed files with 5 additions and 1 deletions

View File

@ -62,7 +62,11 @@ func (t *toolchainDarwinX8664) RustTriple() string {
return "x86_64-apple-darwin"
}
func (t *toolchainDarwin) ShlibSuffix() string {
func (t *toolchainDarwin) SharedLibSuffix() string {
return ".dylib"
}
func (t *toolchainDarwin) ProcMacroSuffix() string {
return ".dylib"
}