Now i have literally spent hours trying to figure this problem out on my own.
I'm using SFML 1.6 with Code::Blocks 10.05.
When trying to staticly link librarys I can link them all staticly except system?
My linker is...
-lsfml-graphics-s
-lsfml-window-s
-lsfml-audio-s
-lsfml-system-s
-static-libgcc
and my code starts with..
#include <SFML/Graphics.hpp>
#include <SFML/Window.hpp>
#include <SFML/Audio.hpp>
#include <SFML/System.hpp>
All the librarys are linked staticly, however when running the program it says sfml-system.dll is missing, no other dlls. Simply adding the dll to the executables directory fixes the problem but I'm wondering if there is a way to actually link system staticly? And yes I have googled and researched and tried/tested everything i can think of but no luck, any help would be greatly appreciated. Thank you!
(Also, yes, i have pathing fully configured and my search directorys)