[SOLVED]A doubt about the Irrlicht on the Code::Blocks

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
battousaihimura
Posts: 3
Joined: Fri Mar 31, 2006 1:37 pm
Location: Brasil

[SOLVED]A doubt about the Irrlicht on the Code::Blocks

Post by battousaihimura »

Hi, I'm a noob user of both Irrlicht and Code::Blocks (before I used to program with Dev C/C++). I was reading the tutorial to how setup the engine on the Code::Blocks IDE (this one -> http://irrlicht.sourceforge.net/tut_codeblocks.html, but I have a doubt on the step 5. There it says to add some libraries to the project, but I don't know if I just have to put the name of the lib or put the path to them. Since I didn't find the path to them, I just put their name... but the IDE didn't find the compiler... Can anyone help me on this? Thanks ^__^x
afecelis
Admin
Posts: 3075
Joined: Sun Feb 22, 2004 10:44 pm
Location: Colombia
Contact:

Post by afecelis »

those libs you type in the name (or copy-paste them from the tut) one by one followed by enter. But you must have the MS sdk installed and properly setup in your system for them to be found.
Acki
Posts: 3496
Joined: Tue Jun 29, 2004 12:04 am
Location: Nobody's Place (Venlo NL)
Contact:

Post by Acki »

If you're using C::B with MinGW you have to use the same as for DevC++ (it's the same compiler) ;)
while(!asleep) sheep++;
IrrExtensions:Image
http://abusoft.g0dsoft.com
try Stendhal a MORPG written in Java
battousaihimura
Posts: 3
Joined: Fri Mar 31, 2006 1:37 pm
Location: Brasil

Post by battousaihimura »

I did everything just like the tutorial, and there's the error:
Image

Anyway, thnx for the help ^^x
darkfox404
Posts: 26
Joined: Thu Mar 02, 2006 3:49 am

Post by darkfox404 »

as they said... do you have it installed?
afecelis
Admin
Posts: 3075
Joined: Sun Feb 22, 2004 10:44 pm
Location: Colombia
Contact:

Post by afecelis »

darkfox is right: Either you haven't installed MSVC toolkit or you haven't run vcvars32.bat in the VCToolit directory to adjust system paths.

You can also add the path manually:(in your environment variables, in system variables' PATH:)
C:\PROGRAM FILES\MICROSOFT VISUAL C++ TOOLKIT 2003\BIN
Nova (guest)

Post by Nova (guest) »

Sometimes you may have the Toolkit installed and the error still occurs.
Just try to fix exactly what it is saying. Maybe you did not install the Compiler in the default directory and C::B did not look for it in a different location.

Just check your compiler options -> programms tab if the setup path is correct
battousaihimura
Posts: 3
Joined: Fri Mar 31, 2006 1:37 pm
Location: Brasil

Post by battousaihimura »

I have found the error...
I'm brazilian, so, here the path to the VC toolkit is this one:
C:\Arquivos de programas\Microsoft Visual C++ Toolkit 2003

and not this one, that was the default in the C::B:
C:\Program Files\Microsoft Visual C++ Toolkit 2003

so I just have to change the path to the VCTollkit.

Thnx everyone for the help =)
Acki
Posts: 3496
Joined: Tue Jun 29, 2004 12:04 am
Location: Nobody's Place (Venlo NL)
Contact:

Post by Acki »

Right, C::B comes with only MinGW !!!
All other supported compiler you have to download and install first...
while(!asleep) sheep++;
IrrExtensions:Image
http://abusoft.g0dsoft.com
try Stendhal a MORPG written in Java
afecelis
Admin
Posts: 3075
Joined: Sun Feb 22, 2004 10:44 pm
Location: Colombia
Contact:

Post by afecelis »

we're glad it helped. Adding the "SOLVED" tag now.
Post Reply