Make Install ERROR :(

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
PaulBird
Posts: 10
Joined: Sat Dec 31, 2011 10:06 pm

Make Install ERROR :(

Post by PaulBird »

Hello!
im on ubuntu and when i do a 'make install' i get this:

Code: Select all

cp: cannot stat `../../lib/Linux/libIrrlicht.so.1.7.2': No such file or directory
:( please help... (the make went fine btw..)
randomMesh
Posts: 1186
Joined: Fri Dec 29, 2006 12:04 am

Re: Make Install ERROR :(

Post by randomMesh »

make builds Irrlicht as a static library by default. So the message is correct, there is no shared object. You have to use another make target to build Irrlicht as shared library.
Makefile wrote: # If you want Irrlicht to be compiled as shared lib (libIrrlicht.so.versionnumber), then run:
#
# make sharedlib
# make install
"Whoops..."
PaulBird
Posts: 10
Joined: Sat Dec 31, 2011 10:06 pm

Re: Make Install ERROR :(

Post by PaulBird »

i did

Code: Select all

make sharedlib
but it gave me this error :\

Code: Select all

g++: error: unrecognized option ‘--no-export-all-symbols’
g++: error: unrecognized option ‘--add-stdcall-alias’
 
i have g++4.6..
Cube_
Posts: 1010
Joined: Mon Oct 24, 2011 10:03 pm
Location: 0x45 61 72 74 68 2c 20 69 6e 20 74 68 65 20 73 6f 6c 20 73 79 73 74 65 6d

Re: Make Install ERROR :(

Post by Cube_ »

I have some problems as well (CAn't get to the computer untill thursday)
It is something about it not being able to find some folder (Think it was x11/vidmode <---or something like that ^^*)
"this is not the bottleneck you are looking for"
hybrid
Admin
Posts: 14143
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany
Contact:

Re: Make Install ERROR :(

Post by hybrid »

No, it's about a wrongly used parameter, which is not ignored by the latest gcc anymore. Just remove those parameters from the Makefile and it should work.
Post Reply