I am trying to run a program that uses SFML(Multimedia library): http://www.sfml-dev.org/tutorials/2.0/start-cb.php
Maybe this part is interesting:
I am able to compile the program and I can start it via double click inside the debug folder.There are multiple variants of gcc for Windows, which are incompatible with each other (different exception management, threading model, etc.). Make sure that you pick up the right package according to the version that you use. If you don't know, check which of the libgcc_s_sjlj-1.dll or libgcc_s_dw2-1.dll file you have in your MinGW/bin folder. If you're using the version of MinGW shipped with Code::Blocks, you probably have a SJLJ version.
If you feel like your version of gcc can't work with the precompiled SFML libraries, don't hesitate to recompile SFML, it's not complicated.
But running it via codelite gives me this error:
(Couldn't find entry point __gxx_personality_v0 in sfml-graphics-d-2.dll)
Running the debugger fails with:
I am using the official MinGW build (DW2).
The SFML libraries i am linking are DW2 libraries too.
Is it possible, that I am not able to run this inside codelite because it's no sjlj?! Like I said, running outside of codelite works just fine.
Codelite V.: 5.1
MinGW 4.7.2 (not TDM)