Hello -
So the TL:DR of it is that I simply cannot get a simple sfml program (opening a window), on windows, compiled with MinGW, to be moved to another machine (without minGW installed), and running correctly.
So, I'm including the required (at least, the ones that it will throw an error window for) .dlls (sfml-system.dll, sfml-window.dll, libstdc++-6.dll, libgcc_s_dw2-1.dll). These are the respective sfml-mingw and mingw release libraries of the correct versions (since it's correctly running on the machine I'm compiling it on).
What's happening with the current code that I'm compiling is a command prompt window will open with nothing in it (regardless of any printf's that occur before any sfml code), and then stay open until I close it by clicking the "x". No rendering window or other window opens up at any point.
I've also tried it both with the precompiled samples from-source compilations. Non-window applications seem to work (like the ftp sample), whereas the windowed ones (like the pong sample) just throw up a window which immediately closes.
I'm unsure where to go from this point, as google and forum searches on this particular subject haven't given anything useful yet. I just have so many native pieces of code (in linux) lying around that I'd like to share around to windows folks, without having to go through the pain of VS.
Anyone encounter something like this before?