Difference between revisions of "User:Signore Iredell"

From Second Life Wiki
Jump to navigation Jump to search
(Added basic info about me + Viewer build report)
 
Line 1: Line 1:
* [http://slurl.com/secondlife/Dotoorak/135/13/56/?img=http%3A//www.sluniverse.com/pics/MakeThumbnail.aspx%3Ffile%3D125776.jpg&title=Signore%20Iredell&msg=Una%20piccola%20parcel%20di%20512%20mq.%2C%20che%20ho%20preso%20in%20affitto%20e%20ho%20adibito%20a%20spazio%20per%20prove%20e%20sperimentazioni.%20Venite%20a%20trovarmi%20%3B-%29 Dotoorak (135,13,56)] - il mio laboratorio ''in-world'', 512mq in affitto 
 
* il mio [http://signore.wordpress.com blog in inglese] dedicato ai media in Second Life
== Stuff ==
 
* [http://slurl.com/secondlife/Dotoorak/135/13/56/?img=http%3A//www.sluniverse.com/pics/MakeThumbnail.aspx%3Ffile%3D125776.jpg&title=Signore%20Iredell&msg=Una%20piccola%20parcel%20di%20512%20mq.%2C%20che%20ho%20preso%20in%20affitto%20e%20ho%20adibito%20a%20spazio%20per%20prove%20e%20sperimentazioni.%20Venite%20a%20trovarmi%20%3B-%29 Dotoorak (135,13,56)] - my lab. rent.
* my [http://signore.wordpress.com blog] with some stuff about personal media in Second Life
* il [http://www.secondlifeitalia.com/blog blog di Second Life Italia], dove scrivo in italiano ('''volete contribuire? segnalatemelo''' con un [http://www.secondlifeitalia.com/community/privmsg.php?mode=post&u=436 PM nel forum] o in [http://www.secondlifeitalia.com/w/index.php?title=Discussioni_utente:Signore_Iredell&action=edit questa pagina]
* il [http://www.secondlifeitalia.com/blog blog di Second Life Italia], dove scrivo in italiano ('''volete contribuire? segnalatemelo''' con un [http://www.secondlifeitalia.com/community/privmsg.php?mode=post&u=436 PM nel forum] o in [http://www.secondlifeitalia.com/w/index.php?title=Discussioni_utente:Signore_Iredell&action=edit questa pagina]
* i [http://www.secondlifeitalia.com/commmunity forum di Second Life Italia]
* i [http://www.secondlifeitalia.com/commmunity forum di Second Life Italia]
* contribuisco al progetto [http://wiki.creativecommons.org/Second_Life Creative Commons in Second Life]
* [http://wiki.creativecommons.org/Second_Life Creative Commons in Second Life]
* i miei [http://del.icio.us/signore bookmarks] relativi a Second Life e argomenti correlati
* [http://del.icio.us/signore bookmarks] about Second Life
* [http://www.sluniverse.com/pics/Default.aspx?name=Signore%20Iredell le mie fotografie] prese in Second Life
* [http://www.sluniverse.com/pics/Default.aspx?name=Signore%20Iredell snapshots]





Revision as of 16:48, 9 January 2007

Stuff




January 8, 2007

Compiling the Second Life Viewer source code on Ubuntu Edgy

unpacked:

tar xzf slviewer-src-20070108c.tar.gz
tar xzf slviewer-linux-libs-20070108c.tar.gz
tar xzf fmodapi375linux.tar.gz

copied required FMOD headers and libraries into the Second Life Viewer source tree:

cd into the FMOD directory
cp api/inc/* ../linden/libraries/i686-linux/include/
cp api/libfmod-3.75.so ../linden/libraries/i686-linux/lib_release_client/

installed via Synaptic:

gcc-3.4 gcc-3.4-base g++-3.4 scons

Now, I am new to scons, and since I’m on Ubuntu Edgy -that uses gcc-4.1- I thought maybe I had to do something like this (not sure this is a good idea), but actually we don’t need it:

export CC=’/usr/bin/gcc-3.4′

after I learnt this in the Linux Client Users group chat (thanks you all guys!), I went to Maryport and enjoyed a compile’n'dance party while giving the magic command:

scons DISTCC=no BTARGET=client BUILD=release

Then I got some errors, asked help to Linux Client fellows, then I installed:

libglu1-mesa-dev libgl1-mesa-dev mesa-commons-dev
flex bison

I tried again running scons, and as described here, "compiler couldn't find gtk/gtk.h" So I edited the indra/SConstruct file removing the leading spaces from the 6 ‘ ../libraries/’ strings from around line 187 onwards.

A couple of hours later… …scons: done building targets. One step further!

Then I ran it:

 ( cd newview && LD_LIBRARY_PATH=../../libraries/i686-linux/lib_release_client:${LD_LIBRARY_PATH}:/usr/local/lib  ./secondlife-i686-bin )

And it started! But it is "unable to initialize communications": I’m running it from inside the tree but I forgot to do this from the indra directory:

  $ cp ../scripts/messages/message_template.msg newview/app_settings/

And then it works! I’m in world!


Next step: packaging the client, substituting ‘BUILD=release’ with ‘BUILD=releasefordownload’ in the ‘Compiling’ section, in order to use the faster libkdu_v42R.so and libllkdu.so libraries.