dl: minor improvement of get_shared_library_extension (#9070)

pull/9078/head
StunxFS 2021-03-02 15:38:32 -04:00 committed by GitHub
parent b3a31e7626
commit 0dafdb4cde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 7 deletions

View File

@ -9,14 +9,13 @@ pub const (
// i.e. .dll on windows, .so on most unixes, .dylib on macos.
[inline]
pub fn get_shared_library_extension() string {
mut res := '.so'
$if macos {
res = '.dylib'
return $if windows {
'.dll'
} $else $if macos {
'.dylib'
} $else {
'.so'
}
$if windows {
res = '.dll'
}
return res
}
// get_libname returns a library name with the operating system specific extension for