#Installing an external library (hunspell) on Window

17 messages · Page 1 of 1 (latest)

rough scroll
#

I'm trying to install hunspell for a project, I tried every solution on the internet for windows, linux but it never worked.

summer urchinBOT
#

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.

still shadow
#

What are you installing the library for? Is it to use in a project of yours?

rough scroll
#

yes

still shadow
#

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

mild wing
#

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

summer urchinBOT
#

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.

rough scroll
#

I'm using Visual Studio but there is no version for the newest Visual Studio Interpreter

mild wing
#

so build it

rough scroll
#

but it gives an error

#

I'm trying it now in WSL

summer urchinBOT
#
How to Ask A Programming Question

Anyone can ask a question in our programming channels.
Following the guide
Writing The Perfect Question
is recommended.

What To Post

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
Where To Post

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!
summer urchinBOT
#

```cpp
int main() {
return 0;
}
```