SFML community forums
Help => General => Topic started by: abcd1234567 on October 22, 2023, 04:04:59 pm
-
I run on Windows 10, and using Clion (with Cmake).
I downloaed from the website the following package: 'GCC 13.1.0 MinGW (SEH) - 64-bit'; and also the 'WinLibs MSVCRT 13.1.0 (64-bit)' MinGW compiler, to guarantee a 100% match.
I changed Clion's toolchain to be said compiler.
I have this weird problem, where when I run the code from the IDE - it runs perfectly fine.
But when I run from the .exe itself, it says that libstdc++-6.dll is missing.
I copied the entirety of my SFML\bin to the .exe directory, but the problem persists.
This is the Cmake file I use (took it from the internet):
https://pastebin.com/W8XbNG5K
Thanks in advance.
-
When running it from the IDE, it will have the compiler's bin dir in PATH and thus the runtime libs are found.
Copy the libraries from the compiler bin directory.
-
When running it from the IDE, it will have the compiler's bin dir in PATH and thus the runtime libs are found.
Copy the libraries from the compiler bin directory.
It worked, thanks a lot :)
Would you be so kind to give a brief explanation as to why I need some of the compiler's dynamic libraries, if I already copied all of SFML's libraries?
-
Those libraries contain the standard library implementations and other runtime constructs. If you link them dynamically, which is often the default, then you need to provide the shared library (DLL) as well.
SFML also links those dynamically, so you need to provide them not just for your own application, but also for SFML