Error compiling irrlicht in Ubuntu

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
Virion
Competition winner
Posts: 2149
Joined: Mon Dec 18, 2006 5:04 am

Error compiling irrlicht in Ubuntu

Post by Virion »

Sorry this is my first time compiling Irrlicht in Ubuntu. I'm using make command to compile irrlicht but i got this error:

Code: Select all

g++ -I../../include -Izlib -Ijpeglib -Ilibpng -DIRRLICHT_EXPORTS=1 -MM -MF CGUISpriteBank.d CGUISpriteBank.cpp
make: g++: Command not found
g++ -I../../include -Izlib -Ijpeglib -Ilibpng -DIRRLICHT_EXPORTS=1 -MM -MF CDefaultGUIElementFactory.d CDefaultGUIElementFactory.cpp
make: g++: Command not found
g++ -I../../include -Izlib -Ijpeglib -Ilibpng -DIRRLICHT_EXPORTS=1 -MM -MF CGUIColorSelectDialog.d CGUIColorSelectDialog.cpp
make: g++: Command not found
...
...
...
I think the main problem is
make: g++: Command not found
Am I missing something? Thanks.
My company: https://kloena.com
My profile: https://zhieng.com
My co-working space: https://deskspace.info
My game engine: https://kemena3d.com
randomMesh
Posts: 1186
Joined: Fri Dec 29, 2006 12:04 am

Post by randomMesh »

Code: Select all

sudo aptitude install g++
;)
Virion
Competition winner
Posts: 2149
Joined: Mon Dec 18, 2006 5:04 am

Post by Virion »

randomMesh wrote:

Code: Select all

sudo aptitude install g++
;)
LOL I'm so noobish.
My company: https://kloena.com
My profile: https://zhieng.com
My co-working space: https://deskspace.info
My game engine: https://kemena3d.com
lukrop
Posts: 27
Joined: Wed Aug 29, 2007 10:28 am
Location: Vienna, Austria

Post by lukrop »

randomMesh wrote:

Code: Select all

sudo aptitude install g++
;)
also posisble: on ubuntu afaik ´sudo apt-get install build-essentials´
FlyingIsFun1217
Posts: 219
Joined: Fri Apr 13, 2007 8:29 pm
Location: Illinois
Contact:

Post by FlyingIsFun1217 »

lukrop wrote:
randomMesh wrote:

Code: Select all

sudo aptitude install g++
;)
also posisble: on ubuntu afaik ´sudo apt-get install build-essentials´
This would be the one you want to use ;)

FlyingIsFun1217
Post Reply