Page 2 of 2

Re: I got a blue screen D:

Posted: Wed Aug 19, 2009 4:51 pm
by Falco Girgis
dani93 wrote:I also had a SDL-program that caused a bluescreen when it was started outside the IDE.
I think I linked Mingw-DLLs (not libs ^^) with VS :lol:
Programming on Windows (especially with VS) is so complicated... just

Code: Select all

g++ -o executeable *.h *.cpp -Wall `sdl-config --cflags --libs` -lSDL_ttf -lSDL_net -lSDL_image
and everything works fine on other operating systems :)
...until you want to do more than just compile every .cpp file in the directory. What about when you want to handle only compiling files that changed? This is unrealistic for large projects.

Then you use a makefile, which--unless you're a masochist--is more hell than any IDE.

Re: I got a blue screen D:

Posted: Thu Aug 20, 2009 12:20 pm
by dani93
GyroVorbis wrote:Then you use a makefile, which--unless you're a masochist--is more hell than any IDE.
I like makefiles, but I don't know enough to create them. So I let qmake create them for me (when I'm using Qt, what I currently always do) and then I adjust the variable with the linker flags ^^