-
Notifications
You must be signed in to change notification settings - Fork 9
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
Problems following example usage #2
Comments
@karlb I also run into the same issue. |
I have the same issue. Came here after several hours of debugging. What is the point of releasing a library like this if we can't even use it?? My gosh. |
From the blog:
Maybe that'll help you? I haven't tried it myself since the code is AGPL. |
I just gave up and use https://github.com/wangfenjin/simple |
I've prepared pull request (#3) to fix the issue. I wasn't be able to figure out root cause and how it was supposed to work at first place, but fixed with just trials and errors |
The given compilation command did not create a dynamic library for me. Using the following command created one at the expected place (removed
--
and addedrelease
, since the example used a release build):The suggested
.load
command will only work on MacOS, since other systems use a different suffix for dynamic libraries. A simple way to avoid that problem is to omit the suffix, since sqlite will look up files with the correct suffix for the used OS:When changing these two things, sqlite3 find the library, but still fails to load it correctly due to
I haven't looked into that problem yet. Any obvious explanation? Did I break something by changing the rustc call?
The text was updated successfully, but these errors were encountered: