-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make 64 bit Linux native lib the default.
Since 64bit OS's are more common we should make the 64 bit version of the native ibrary the default. This helps when running under .net Core. But it will also allow us to easliy remove the 32 bit version in the future.
- Loading branch information
1 parent
d321af1
commit 34dc213
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<dllmap dll="libzip" os="osx" target="libzip.dylib"/> | ||
<dllmap dll="libzip" os="linux" cpu="x86" target="libzip.so"/> | ||
<dllmap dll="libzip" os="linux" cpu="x86-64" target="lib64/libzip.so"/> | ||
<dllmap dll="libzip" os="linux" cpu="x86" target="lib32/libzip.so"/> | ||
<dllmap dll="libzip" os="linux" cpu="x86-64" target="libzip.so"/> | ||
</configuration> |