is this NORMAL???

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
dw5000ad3
Posts: 8
Joined: Tue Apr 11, 2006 1:37 am

is this NORMAL???

Post by dw5000ad3 »

i've downloaded Irrlicht 1.0 SDK and i tried to run "HELLO WORLD" from the examples that come with the download.

(I have Dev-cpp)

it compiled OK, but when it runs it says:

Warning: The library version of the Irrlicht Engine (0.14.0) does not match the
version the application was compiled with (1.0). This may cause problems.

then it says

example.exe has encountered a problem and needs to close. We are sorry for the inconvenience.


some examples run, others not...
rooly
Posts: 224
Joined: Tue Oct 25, 2005 4:32 pm
Location: Louisiana, USA, backwater country
Contact:

Post by rooly »

no offense, but thats kinda to be expected...1.0 and 0.14.0 are completely different versions. anything that one does differently from the other is bound to cause problems in the runtime.
When banks compete, you win.
When ISPs compete, you win.
When electronics retailers compete, you win.
When governments compete...you get drafted.
dw5000ad3
Posts: 8
Joined: Tue Apr 11, 2006 1:37 am

Post by dw5000ad3 »

i forgot to say that i've never included 0.14 libraries...
also i deleted irrlicht 0.14 before getting 1.0.
( this was an important detail i fotgot to say)


can anyone help?
andrei25ni
Posts: 326
Joined: Wed Dec 14, 2005 10:08 pm

Post by andrei25ni »

That's exactly what it said to me when I switched my game to Irrlicht's v1.0. But then I remembered that I forgot to switch the Irrlicht dll in the project folder. Now it works just fine.

In your case, include the correct libraries, the 'include' folder and add Irrlicht v1.0 dll in your project folder. It will work.
dw5000ad3
Posts: 8
Joined: Tue Apr 11, 2006 1:37 am

Post by dw5000ad3 »

thanks, it worked! it was the irrlicht.dll like you said


it works in visual studio now, but not for Dev-cpp... try dev and see the big error.

mmm
rooly
Posts: 224
Joined: Tue Oct 25, 2005 4:32 pm
Location: Louisiana, USA, backwater country
Contact:

Post by rooly »

sounded like it would be the dll. them stupid things never compile on my machine. i can't make it work with msvc++ or dev...
When banks compete, you win.
When ISPs compete, you win.
When electronics retailers compete, you win.
When governments compete...you get drafted.
YukiKaze
Posts: 7
Joined: Thu Apr 20, 2006 3:34 am

Post by YukiKaze »

on what I believe to be a similar note, I've been trying to get Irrlicht to work with Code::Blocks. At first, I got about 12 errors and 57 warnings when attempting to recompile the Irrlicht library, so I did some poking around and found the "using Irrlicht with Code::Blocks" news item on the main site. Followed the instructions as closely as I could(the folders in question were, naturally, not in the same locations on my computer, but I'm pretty sure I used the correct folders).

Results: 0 errors, 14000-some warnings, and I had to cancel the compile in the middle because it was taking over an hour. Also, it was attempting to compile some of the additional libraries(not Irrlicht) that I had installed for support. Something tells me this isn't how it's supposed to happen. I suspect a combination of new version of Irrlicht, new version of Code::Blocks.

Any ideas? Anybody come up with a revised way to use Irrlicht with Code::Blocks? I haven't gotten any Irrlicht stuff to compile on it yet.
Post Reply