Skip to content

Commit

Permalink
use mdbx.dll as msbuild outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
wtdcode committed Dec 21, 2024
1 parent 86f065a commit 1b5781e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build_mdbx.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"linux": "libmdbx.so",
"linux2": "libmdbx.so",
"darwin": "libmdbx.dylib",
"win32": "libmdbx.dll",
"win32": "mdbx.dll",
}.get(sys.platform, "libmdbx.so")

def ensure_dependency():
Expand Down
2 changes: 1 addition & 1 deletion mdbx/mdbx.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"linux": "libmdbx.so",
"linux2": "libmdbx.so",
"darwin": "libmdbx.dylib",
"win32": "libmdbx.dll",
"win32": "mdbx.dll",
}.get(sys.platform, "libmdbx.so")

_lib_path = Path(__file__).parent.resolve() / "lib" / SO_FILE
Expand Down

0 comments on commit 1b5781e

Please sign in to comment.