Linux help

2 views
Skip to first unread message

Andy Miller

unread,
Feb 11, 2007, 1:06:28 AM2/11/07
to python-ogre...@googlegroups.com
Linux users

I'm building my test linux environment and wanted to see if you can
help me with a quick start :)

What command do you run to compile the CVS version of Ogre? (I don't
see a ./configure script, do you edit config files and run make? Etc
etc) I haven't spent any time on this yet - just want pointers to make
life easy :)

Thanks
Andy

Mike Handverger

unread,
Feb 11, 2007, 2:45:09 AM2/11/07
to Python Ogre Developers
Hi Andy,

The trick is:

./bootstrap

That'll generate the ./configure script.

Thanks,

Mike

trovao

unread,
Feb 14, 2007, 10:07:37 AM2/14/07
to Python Ogre Developers
On Feb 11, 5:45 am, "Mike Handverger" <mike.handver...@gmail.com>
wrote:

> Hi Andy,
>
> The trick is:
>
> ./bootstrap

After that I usually use the following arguments to configure:

./configure --with-platform=GLX --prefix=/usr --enable-dynamic #(and --
enable-cg if its installed)

After that, the usual make && make install is issued.

Another thing is that for some ogre versions I couldn't get some
plugins installed with 'make install', so I had to copy them manually.
If its your case, then this would do it:

for so in `find $OGRE_BUILDROOT -iname Plugin*.so
do
cp $so $OGRE_DESTDIR/usr/lib/OGRE/
done

for so in `find $OGRE_BUILDROOT -iname Render*.so`
do
cp $so $OGRE_DESTDIR/usr/lib/OGRE/
done

Regards,
Renato.

Reply all
Reply to author
Forward
0 new messages