I got a blue screen D:

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

User avatar
Falco Girgis
Elysian Shadows Team
Elysian Shadows Team
Posts: 10294
Joined: Thu May 20, 2004 2:04 pm
Current Project: Elysian Shadows
Favorite Gaming Platforms: Dreamcast, SNES, NES
Programming Language of Choice: C/++
Location: Studio Vorbis, AL
Contact:

Re: I got a blue screen D:

Post 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.
User avatar
dani93
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 38
Joined: Mon Apr 13, 2009 9:38 am
Location: Austria

Re: I got a blue screen D:

Post 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 ^^
Post Reply