SFML community forums

Help => General => Topic started by: Stuff on March 27, 2020, 02:13:07 am

Title: Error when using the exe
Post by: Stuff on March 27, 2020, 02:13:07 am
I've finished developing my program, now I have to get a working exe and then release it,

But I have encountered a problem, once I copy and paste the SFML dll files like instructed for the exe to work, now i run the exe it shows an error:

"The code execution cannot proceed because libgcc_s_sjlj-1.dll was not found.
Reinstalling the program may fix this problem"


Once looking through the project files I couldn't find the specified "libgcc_s_sjlj-1.dll" the exe needs,
is there a solution to this problem, please alert me if I'm missing, or not getting something it would be a real help.

Thank you.
Title: Re: Error when using the exe
Post by: eXpl0it3r on March 27, 2020, 08:20:40 am
The top results for your error on Google, all point to StackOverflow with good answers. ;)

The DLL comes with your compiler and can be found in your compiler bin directory. Copy it next to your exe and you should be good to go.
Title: Re: Error when using the exe
Post by: Stuff on March 27, 2020, 03:15:51 pm
Thanks, it works.

Thank you so much.