Search found 5 matches

by d3wu
Sat May 06, 2006 9:52 pm
Forum: Beginners Help
Topic: Code::Blocks and Irrlicht in Linux
Replies: 12
Views: 1612

SOLVED

i finally solved it :) so i decided to do an Irrlicht Project Wizard. i compiled that and it worked perfectly. so i looked into that project's build options. and the only difference it had was the way it was linking the libraries: I was putting in the exact path to the file ../../lib/libIrrlicht.a /...
by d3wu
Sat May 06, 2006 7:28 pm
Forum: Beginners Help
Topic: Code::Blocks and Irrlicht in Linux
Replies: 12
Views: 1612

i found all the libraries and directories i needed, and put them in the exact order as the make file did - it turns out they were in /usr/lib/ mandrav i understand that i need to find the libraries since they are missing, but i dont see which ones are needed without looking at the makefile, etc. im ...
by d3wu
Sat May 06, 2006 7:14 am
Forum: Beginners Help
Topic: Code::Blocks and Irrlicht in Linux
Replies: 12
Views: 1612

i definitely see the makefile including those library files. if i try to just add those 3 to my linker->libraries, code::blocks complains about not finding it. so im guessing i have to add every library that the makefile is: g++ main.cpp -o example -I"../../include" -I"/usr/X11R6/incl...
by d3wu
Sat May 06, 2006 6:00 am
Forum: Beginners Help
Topic: Code::Blocks and Irrlicht in Linux
Replies: 12
Views: 1612

thanks for the tips i did the steps but seem to get the same errors. here's a sample of the first couple lines in the console: Linking console executable: HelloWorld.exe ../../lib/Linux/libIrrlicht.a(CIrrDeviceLinux.o): In function `irr::CIrrDeviceLinux::createWindow(irr::core::dimension2d<int> cons...
by d3wu
Sat May 06, 2006 1:14 am
Forum: Beginners Help
Topic: Code::Blocks and Irrlicht in Linux
Replies: 12
Views: 1612

Code::Blocks and Irrlicht in Linux

i found the tutorial how to setup Irrlicht in Windows, but am having trouble in Linux. http://irrlicht.sourceforge.net/tut_codeblocks.html when I do the cmd make in the console for the Hello World example, everything works correctly. but when using Code::Blocks, im getting linker errors when buildin...