Problem with installing
Problem with installing
Hi guys, I have some problem with installing Irrlicht 1.8.1. I use Dev C++ and when I go to the Irrlicht-1.8.1/source/irrlicht and open the Irrlicht.dev then Dev C++ is opening and showed this: "INFORMACION The compiler setting format of Orwell Dev C++ has changed[...]"
and second MSGBOX -
"ERROR File not found C: \ Irrlicht-1.8.1 \ source \ irrlicht \ jpeglib \ jchuff.h" and third msgbox:
"ERROR File not found C: \ Irrlicht-1.8.1 \ source \ irrlicht \ jpeglib \ jdhuff.h" Please help me I trie reaper it for 3 days... Sorry for my English. English isnt my native language.
and second MSGBOX -
"ERROR File not found C: \ Irrlicht-1.8.1 \ source \ irrlicht \ jpeglib \ jchuff.h" and third msgbox:
"ERROR File not found C: \ Irrlicht-1.8.1 \ source \ irrlicht \ jpeglib \ jdhuff.h" Please help me I trie reaper it for 3 days... Sorry for my English. English isnt my native language.
Last edited by GoFor on Tue Nov 18, 2014 5:35 pm, edited 1 time in total.
Re: Problem with installing
Sorry, we no longer support Dev C++. For Windows we recommend to use either Code::Blocks or VisualStudio.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Re: Problem with installing
Allright. I tried install it in CODE::BLOCK too.
I don't have file "Irrlicht_Win32-gcc.cbp" to open it! In "Irrlicht Engine wiki - Installing Irrlicht" is wrote: Irrlicht_Win32-gcc.cbp if your are using Code::Blocks but I don't have this file ;//
I don't have file "Irrlicht_Win32-gcc.cbp" to open it! In "Irrlicht Engine wiki - Installing Irrlicht" is wrote: Irrlicht_Win32-gcc.cbp if your are using Code::Blocks but I don't have this file ;//
Re: Problem with installing
It's in the source/Irrlicht folder. Or better - use the one in the examples folder (that will also compile all the examples which is good to do as a first thing anyway).
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Re: Problem with installing
But I dont have this file in irrlicht-1.8.1\source\irrlicht I just don't have it
Re: Problem with installing
And when i run for example 01.HelloWordl and compile then showed this: Not Found The procedure entry point __gxx_personality_v0 in the library libstdc++-6.dll
Re: Problem with installing
It's called Irrlicht-gcc.cbp I think. But examples/buildAllExamples.workspace should allow you to build all the examples in code::blocks including a build of the library.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Re: Problem with installing
Thanks. I'll check it tomorow and ill write here
Re: Problem with installing
Yea, It really work. Thanks Alien But what I must to do to the other my projects can be compile? When I compile new project then show me this: C:\irrlicht-1.8.1\examples\Moje Testy\Testy1\main.cpp|1|fatal error: irrlicht.h: No such file or directory| How can i include that include?
Re: Problem with installing
For (nearly) all c/c++ libs you always have to set the include path and the library path. The include path has to be set to the place where the header of your library is and the library path to the place where the library is (.lib or .a depending on compiler). Search through the project settings in and you will find both paths somewhere (library path in some linker option tab in c::b I think). If you were to use Makefiles instead of an IDE those would be the -I and -L options.
If you check the project files of the Irrlicht examples they also should set those 2 paths (but your relative path can be different as your own project can be somewhere else than the examples).
If you check the project files of the Irrlicht examples they also should set those 2 paths (but your relative path can be different as your own project can be somewhere else than the examples).
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Re: Problem with installing
Thanks alien. Yu really helped me