We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80151a9 commit 1f2bdcbCopy full SHA for 1f2bdcb
src/ffi.ts
@@ -96,7 +96,8 @@ function getLibraryPath(): string {
96
if (process.platform === 'darwin') {
97
return 'libtidesdb.dylib';
98
} else if (process.platform === 'win32') {
99
- return 'tidesdb.dll';
+ // MinGW builds produce libtidesdb.dll, MSVC produces tidesdb.dll
100
+ return 'libtidesdb.dll';
101
} else {
102
return 'libtidesdb.so';
103
}
0 commit comments