Robert Osfield <robert.osfi...@gmail.com> wrote:

> Good to hear things are progressing.  How much is built so far?

Approx. 90%, just finished linking the OpenFlight loader ....  I had
been out of home this afternoon for a while.
Just as a side note I'd like to mention my little 'trick' when building
on IRIX:

The OSG build is N32 by default, but as CMake identifies few of the
dependencies by their N64 libraries (both installed), I'm running this
little hack to fix:

  for i in gif freetype; do
    for j in src/osgPlugins/${i}/CMakeFiles/osgdb_${i}.dir/*link.txt; do
      sed -e 's/lib64/lib32/g' < ${j} > TEMP
      mv TEMP ${j}
    done
  done


This has been working for me since the introduction of CMake with
OSG, no idea if it's worth adding a 'proper' workaround.

Cheers,
        Martin.
-- 
 Unix _IS_ user friendly - it's just selective about who its friends are !
--------------------------------------------------------------------------
_______________________________________________
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Reply via email to