#Installing an external library (hunspell) on Window
17 messages · Page 1 of 1 (latest)
When your question is answered use !solved to mark the question as resolved.
Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question run !howto ask.
What are you installing the library for? Is it to use in a project of yours?
yes
Ok, you can either try to compile the library yourself, or find compiled binaries for your platform
The compiler has to match, and you should be looking for includes (.h) as well as libs (.lib)
Sometimes there are no compiled binaries available
debug/release needs to match also
their respective ABIs are not guaranteed compatible
and sadly most binary downloads are release only, so you probably need to compile yourself
https://conan.io can help with that, and conan appears to have hunspell https://conan.io/center/hunspell
Conan is an open source, decentralized and multi-platform package manager for C/C++ that allows you to create and share all your native binaries.
Version 1.7.0 of the hunspell package. Hunspell is a free spell checker and morphological analyzer library
This question thread is being automatically closed. If your question is not answered feel free to bump the post or re-ask. Take a look at !howto ask for tips on improving your question.
I'm using Visual Studio but there is no version for the newest Visual Studio Interpreter
so build it
Anyone can ask a question in our programming channels.
Following the guide
Writing The Perfect Question
is recommended.
State your problem clearly and provide all necessary details:
- the relevant portion of your code, or all of it
- the expected output
- the actual output (or the full error)
🏆 Gold Standard: Minimal Reproducible Example
Provide the relevant code in the message, and format it nicely with a code block*.
If it's too much for one message, you can upload it:
- Compiler Explorer for most C/C++ snippets
- OnlineGDB for interaction, debugging
⛔ Do not post screenshots, let alone photos of your screen!
```cpp
int main() {
return 0;
}
```