SFML community forums

Help => General => Topic started by: roccio on April 02, 2021, 08:21:44 am

Title: Sfml on dynamic dll
Post by: roccio on April 02, 2021, 08:21:44 am
Hello, I have an sfml exe that should dynamically (using loadlibrary) load a dll that uses sfml too. In the dll there is a base class and are exposed two function to create and destroy an instance of that class. All works, but when I try to do something sfml related like loading textures, I get opengl context errors and nothing works. I linked both (exe and dll) with sfml in a static way.

Any help to get it working?
Title: Re: Sfml on dynamic dll
Post by: eXpl0it3r on April 28, 2021, 09:41:26 am
So to understand this correctly you have the following setup:

Custom dynamic library: Links SFML statically
Executable: Links SFML statically and loads custom library via loadlibrary?

That way you essentially have two different SFML versions now, one as part of your executable and one as part of your dynamic library, this will cause all sorts of issues (since SFML uses some globally shared objects).

If you link SFML dynamically, I think you can avoid at least part of the issue.
Title: Re: Sfml on dynamic dll
Post by: roccio on April 28, 2021, 09:38:18 pm
Yes, if loading dynamically all works well. Just curious if this could be done also with static linking.