-
Notifications
You must be signed in to change notification settings - Fork 252
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Delete of native lib doesn't work on Windows #132
Comments
As far as I searched the Web, there is no reliable way to delete a temporary native library at exit on Windows. However, I found this approach in sqlite-jdbc might help solve the problem. I will investigate it more. |
Fixed by 08b3bff. |
This is a duplicate of issue #102, which was closed without actually being fixed. When loading a native library on Windows, the file is locked and cannot be deleted. Attempting to use the "delete on exit" feature doesn't actually work, because the delete attempt occurs before the native library is unloaded.
The text was updated successfully, but these errors were encountered: