How to Compile Irrlicht 1.1 with Dev C++

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
Gladius_Coldhead
Posts: 56
Joined: Thu Oct 12, 2006 5:15 am

How to Compile Irrlicht 1.1 with Dev C++

Post by Gladius_Coldhead »

Hi, i try to compile Irrlicht 1.1 with dev c++ without changes in the source and the IDE givme a error message:

133 C:\WINDOWS\Desktop\irrlicht-\source\Irrlicht\CImageLoaderJPG.cpp
[Warning] variable 'rowPtr' might be clobbered by `longjmp' or `vfork'

how i reapir this?
n00b
Posts: 58
Joined: Tue Sep 05, 2006 3:00 pm
Location: Earth
Contact:

Post by n00b »

search around in the forums, theres tons of help for this problem.
bitplane
Admin
Posts: 3204
Joined: Mon Mar 28, 2005 3:45 am
Location: England
Contact:

Post by bitplane »

that's a warning, not an error. problem is we have to use a longjmp there as you can't use exception handling from inside C code (or at least not on all compilers).. so it's there to stay, unless you want to volunteer to port jpeglib to c++, or have your program exit on a bad jpeg! ;)
Submit bugs/patches to the tracker!
Need help right now? Visit the chat room
FreakNigh
Posts: 122
Joined: Thu Oct 19, 2006 7:31 am
Location: Orlando FL, USA
Contact:

Post by FreakNigh »

you know in the tools->update packages(or whatever) there is a dev package called irrlicht 0.14+DX3D or something like it, it works... gaurenteed win, only solution i could find =)
Post Reply