Just wanted to add my two cents to both problems on this thread. I'm
also running 64-bit Ubuntu (8.10 intrepid ibix).
1) I had a bunch of boost problems as well. I tracked it down to a
problem
in environment.py; I've attached a patch. This was generated using
the
latest SVN trunk, which I downloaded this morning.
2) I can confirm Matej's problem. Exactly the same thing happens to
me:
I can run the normal OGRE demos without any problems, but the
python-ogre
equivalents always hang when "Parsing scripts for resource group
Autodetect".
I'm not an OGRE expert, so my efforts to debug this quickly got
stonewalled. I
did try ensuring that all of the configuration files were exactly
the same between
the python-ogre demos and the standard OGRE demos, but that
didn't seem
to make a difference.
Andy, I can give you ssh access to my machine. Please email me and we
can
discuss it:
wing...@mit.edu.
Thanks,
-- David
Index: environment.py
===================================================================
--- environment.py (revision 904)
+++ environment.py (working copy)
@@ -467,7 +467,7 @@
versionBase = '1_37' ## the version used on the library name
if isLinux():
- bjambase = 'boost-jam-3.1.17-1-linuxx86'
+ bjambase = 'boost-jam-3.1.17'
if is64():
bjambuilddir = 'bin.linuxx86_64'
else:
@@ -475,7 +475,7 @@
bjambuildset = 'gcc'
source = [
- [wget,'
http://downloads.sourceforge.net/boost/boost-
jam-3.1.17-1-linuxx86.tgz', downloadPath],
+ [wget,'
http://downloads.sourceforge.net/boost/'+bjambase
+'.tgz', downloadPath],
[wget,'
http://downloads.sourceforge.net/boost/'+base
+'.tar.gz',downloadPath]
]
On Feb 21, 6:02 am, Andy Miller <
nzmill...@gmail.com> wrote:
> Does anyone have a 64 bit system they'd be prepared to offer me ssh access
> to ?? This way I could at least take an initial look..
> Regards
> Andy
>
> 2009/2/21 yorick <
vyor...@gmail.com>