-
Notifications
You must be signed in to change notification settings - Fork 131
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
Generate c static library problem #110
Comments
windows environment |
which symbol can't be found? |
liq_image_destroy According to the readme, I generated the imagequant sys.lib file, and I have added it to VS. The above links compile with errors |
If none of the symbols can be found, there must be something wrong with your linking configuration. I'm certain these symbols are exported, so make sure the static library is added to linking of every binary product you're compiling. Also note that you can't link one static library with another, so if you're creating libraries internally you'll need to link with imagequant explicitly at the end. |
I have generated the imagequant sys.lib static library file under target\release. When I import the static library file into the project, it compiles successfully, but it prompts that the function symbol cannot be found, and the project configuration is release win32. How to solve
The text was updated successfully, but these errors were encountered: