Build Instructions

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(Older Versions)
(328 intermediate revisions by 60 users not shown)
Line 1: Line 1:
[[Category:Users]]
+
{{Quicklinks|Build_Instructions}}
This page covers building OpenSim from source code on multiple platforms.  Please help us keep this page up to date as the project progresses.
+
  
==Download from SVN==
+
This page covers building OpenSimulator from source code on multiple platforms.  Please help us keep this page up to date as the project progresses. If you just want to run OpenSimulator, [[Download]] and [[Configuration|run]] the binary build instead. In the most cases, you should be fine with binaries.
Check out the [[Download]] Section
+
  
==MS Windows==
+
= Obtaining the Source Code =
  
OpenSim requires either the .Net framework version 2.0, or the latest Mono. It supports the following compilers:
+
Check out the [[Download]] page for instructions on obtaining an OpenSimulator source release. If you want the current development code (i.e. the Git master branch) see [[Developer_Documentation#Source_Code_Repository_Access]].
* [http://msdn2.microsoft.com/en-us/express/aa700756.aspx Microsoft Visual C# Express Edition] (note: not Visual C++)
+
* [http://www.mono-project.com/ mono]
+
  
Note for people who just downloaded the sources from http://dist.opensimulator.org/ (the "Downloads" link on the left) be advised that some important things are missing (like MySQL template scripts). For such features, you must download using svn!
+
= Building =
  
Additional note: any Microsoft C# Express edition should work (2005 or 2008)
 
  
=== Building ===
+
Although this page is long, building is generally quite simple.  See the BUILDING.txt file in the distribution itself for simplified instructions.
  
* In the top-level directory, run the '<tt>runprebuild.bat</tt>' file. This will create both a VS2005 solution file, and a nant build file.
+
== Version 0.9.3.0 and above ==
* Open the resulting sln file with visual studio, and build it there, or if you prefer to use nant, run nant in the same top-level directory. This will build the executables.
+
Microsoft stopped the development of .Net Framework and Mono, replacing them by new dotnet
 +
This is a significant breaking change that we try to follow on 0.9.3.0.
  
If you don't care about physics (walking on prims, etc), ignore the rest of this section.
+
=== Get source code ===
  
=== Running ===
+
get or update source from git
  
Recent versions of OpenSim come without an <tt>OpenSim.ini</tt> file. Copy the <tt>OpenSim.ini.example</tt> file to <tt>OpenSim.ini</tt> before making any changes.
+
git clone git://opensimulator.org/git/opensim
  
Double-click on the <tt>OpenSim.exe</tt> executable file in the <tt>bin</tt> directory. This will start up OpenSim in standalone mode.
+
=== Building on Windows ===
 +
To building under Windows, the following is required:
  
The debugger in VS2005 C# may be used to step through the code. For those that use a Cygwin shell, you may find that one or more dll's have permissions that cause problems running. Most find that a "<tt>chmod 777 *</tt>" from the <tt>bin</tt> directory solves this.
+
* [https://dotnet.microsoft.com/en-us/download/dotnet/6.0 dotnet 6.0 SDK and Desktop Runtime]
  
Physics can be invoked by adding the appropriate line to the [Startup] section of <tt>OpenSim.ini</tt>.  For ODE, that would be:
+
optionally also
  
physics = OpenDynamicsEngine
+
* Visual Studio .NET, version 2022 or later
  
You can also add a command line option to a shortcut, or run from a command prompt with:
 
  
-physics=OpenDynamicsEngine
+
Create the project files running:
  
'''''Windows Vista'''''
+
runprebuild.bat
  
To run on Windows Vista, you must first disable Windows Firewall.  Under the new "Start" button of Vista, select "Control panel". Then double-click "Windows Firewall".  In the window that pops up, on the left column, select "Turn Windows Firewall on or off".  You will have to give permission for this to run, then select the option "Off (not recommended)". Click "OK" and exit from the Windows Firewall window.
+
Load the generated OpenSim.sln into Visual Studio and build the solution, or just run
 +
  compile.bat
  
If you have McAfee SecurityCenter, see the description below.
+
to run you may also need
 +
* to install the [https://docs.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170 run time files for vc++]
 +
* to authorize the install of older .NetFramework 3.5
  
Once all the security features are disabled, right click on <tt>OpenSim.exe</tt> and select "Run as administrator".  This will pop up a window asking permission, select "Allow".  Your OpenSim server should run in a DOS-like window and accept connections.
 
  
 +
Configure, See [[Configuration]].
  
'''''McAfee Security'''''
 
  
McAfee Security does not allow applications to listen on ports not explicitly specified.  You have two options: 1) disable firewall protection all together, 2) enable <tt>OpenSim.exe</tt> to be able to open ports.
+
Now just run OpenSim.exe from the bin folder, and set up the region.
  
''Disable firewall''
+
=== Building on Linux / Mac ===
  
Open McAfee SecurityCenter. Select "Internet & Network". In the lower left corner is a small link to "Configure...".  Select this.  In the right side of the window, select the bar that says "Firewall protection is enabled".  Here you can select "Off".
+
you will need
 +
* [https://dotnet.microsoft.com/en-us/download/dotnet/6.0 dotnet 6.0 SDK and Runtime]
 +
* libgdiplus
 +
**if you have mono 6.x complete, you already have libgdiplus, otherwise you need to install it using a package manager for your operating system, like apt, brew, macports, etc. For example on debian:
 +
*** apt-get update && apt-get install -y apt-utils libgdiplus libc6-dev
  
''Enable <tt>OpenSim.exe</tt> to open ports''
 
  
Open McAfee SecurityCenter.  Select "Internet & Network".  In the lower left corner is a small link to "Configure...".  Select this.  In the right side of the window, select the bar that says "Firewall protection is enabled".  Select the "Advanced..." button.  This will pop up a new window.
+
Create the project files, run:
  
In the new window, on the left side, select "Program Permissions." In the middle on the right side of the window, select the "Add Allowed Program" button. Use the browser that pops up to find the OpenSim executable and select it.
+
  ./runprebuild.sh
  
Finally, select "OK" and exit the McAfee SecurityCenter window.
+
then run
 +
dotnet build --configuration Release OpenSim.sln
  
==Linux/Mac OS X/FreeBSD==
+
or just
 +
./compile.sh
  
The easiest plaform to get running on the Linux side is Ubuntu 8.04, 32bit.  This is what most of the developers running Linux use.  If you are looking for the quick path, start there.
 
  
=== Ubuntu 8.04 ===
+
Configure. See [[Configuration]].
  
For Ubuntu 7.10 users '''you need''' to upgrade your mono to 1.9.1.
 
  
You can use the built in packages for mono. However, for better performance, you may want to [http://xyzzyxyzzy.net/2008/05/08/updated-mono-build-script-for-hardy-heron-and-mono-191/ upgrade mono to 1.9.1] ([http://tempvariable.blogspot.com/2008/04/installing-mono-191-on-ubuntu-804-hardy.html Other simple method])
+
run ./opensim.sh from the bin folder, and set up the region
  
sudo apt-get install subversion nant mono-gmcs libmono-microsoft8.0-cil libmono-system-runtime2.0-cil libgdiplus libmono-i18n2.0-cil
+
== Older Versions ==
svn co http://opensimulator.org/svn/opensim/trunk opensim
+
  Source for old .Net Framework 4.x and Mono is in branch Mono-Net4X
cd opensim
+
  This is mostly same code as 0.9.2.2 release.
./runprebuild.sh
+
nant
+
  
=== openSUSE 10.3 and 11 ===
+
== Requirements ==
  
Install an openSUSE 11 or 10.3 with its default options, add the online repositories
+
OpenSimulator 0.9.0.x requires either
when finished installing do an online update with all the latest packages.
+
* [http://msdn.microsoft.com/en-us/netframework/cc378097 .NET Framework 4.0] on Windows
 +
* [https://www.mono-project.com/download/stable/ Mono] on Linux or Mac.  Mono 2.10.8 is the minimum version.
 +
You may also need nant tool.
  
In yast install these packages, for running Opensim in standalone mode.
 
(there is a slight diffrence between 10.3 and 11 but following should be same)
 
subversion
 
nant
 
mono-jscript
 
- check that mono-core is installed
 
  
If you just want to use SQLite then jump to last section
+
OpenSimulator >= 0.9.1 (including current master) requires
within this post.
+
* [http://msdn.microsoft.com/en-us/netframework/cc378097 .NET Framework 4.6] on Windows
 +
* [https://www.mono-project.com/download/stable/ Mono] on Linux or Mac. Mono 5.12 is the minimum recommended version.<br>'''Note:''' rather than using your Linux distro's Mono packages, which may be missing required components, please [https://www.mono-project.com/download/stable/ install from the official Mono repo for your distro].
 +
recommend compiling with msbuild.
  
* Optional mysql - for Opensim running in Grid mode:
+
Other platforms may have own mono distributions, or may need to compile mono on them.
Install these mysql packages via yast
+
  mysql
+
  mysql-client
+
  mysql-administrator
+
  mysql-gui-tools
+
  mysql-query-browser
+
  
Before building create the mysql database.
+
Other libraries used by OpenSimulator can be found at our opensim-libs git repo:
/etc/init.d/mysql start
+
mysql -u root -p -h localhost
+
(when asked for password just hit enter)
+
  
mysql> create database opensim;
+
git clone git://opensimulator.org/git/opensim-libs
mysql> quit
+
  
set the configuration in bin/mysql_connection.ini
+
libOpenMetaVerse used can be found at https://bitbucket.org/opensimulator/
Or on later builds set the connection string inside bin/OpenSim.ini
+
  
Build after installation of above in bash terminal. i save it in /opt
+
You may need to compile them for your platform, in particular the unmanaged ones like Bullet or ODE native code libraries
  
su -
+
== MS Windows ==
cd /opt
+
svn co http://opensimulator.org/svn/opensim/trunk opensim
+
cd opensim
+
./runprebuild.sh
+
nant
+
  
After this you should be able to continue on starting the diffrent Servers, look in the mysql-config section,or
+
=== Supported Compilers ===
just run your OpenSim as a Standalone. By - eagleFX
+
* [https://visualstudio.microsoft.com/downloads/ Visual Studio Community 2017]
 +
* Or any version that does support the .Net version. At least VS2010 for versions prior to 0.91, VS2015 for 0.91 and after.
 +
* OpenSimulator >=0.9.2.0 can compile for .Net Framework 4.8 using runprebuild48.bat instead of runprebuild.bat below and with VS2017/19/22
  
=== Mac OS X 10.5/10.4 ===
+
=== Compiling in an IDE ===
* OpenSim is now working on PowerPC Macs! Thanks to DrScofield and those who helped him. Current nightly builds for PowerPC are not working, not sure about Intel so use the 0.5 Build. OpenSim works on Intel Macs. I'm testing on PowerBook G4. Tested these step on 10.5, but not 10.4 but should work --[[User:Mokele|Mokele]] 22:36, 14 February 2008 (PST)
+
# Run "runprebuild.bat"
* Install XCode Developers Tools from DVD/CD Installation Disk or download  from http://developer.apple.com/. You have to create an Apple account to access the downloads if you don't have an Apple account.
+
# Open the resulting "OpenSim.sln" in Visual Studio IDE.
* Install X11 for 10.4 from the Optional Install from the DVD/CD Installation Disk. X11 for 10.5 is installed by default.
+
# Select Debug or Release configuration
* Install Mono 1.2.5 from http://ftp.novell.com/pub/mono/archive/1.2.5/macos-10-universal/5/MonoFramework-1.2.5_5.macos10.novell.universal.dmg and in Terminal or X11 edit the .profile file  and add the following line:
+
# Menu Build -> Build Solution.
export PKG_CONFIG_PATH="/Library/Frameworks/Mono.framework/Versions/Current/lib/pkgconfig/:${PKG_CONFIG_PATH}"
+
* Compile OpenSim
+
svn co http://opensimulator.org/svn/opensim/tags/0.5.0-release opensim
+
cd opensim
+
./runprebuild.sh
+
nant
+
  
* Download and Compile libopenjpeg-libsl-2.1.2.0.dylib and libsecondlife.dll
+
===Compiling at the Command Prompt ===
* libopenjpeg-libsl-2.1.2.0.dylib:
+
# Run "runprebuild.bat".
svn co http://opensimulator.org/svn/opensim-libs/libsl1550 opensim-libs
+
# Run the resulting "compile.bat" file.
cd opensim-libs/openjpeg-libsl
+
make -f Makefile.osx
+
cp libopenjpeg-libsl-2.1.2.0.dylib ../../opensim/bin
+
* Note: The Makefile that creates the libopenjpeg-libsl-2.1.2.0.so does not compile on PowerPC, but works properly on Intel Macs. Looks like a gcc issue with compile options.
+
  
* libsecondlife.dll: (for PowerPC Only, see  details on this step [http://xyzzyxyzzy.net/2008/02/12/installing-opensim-on-powerpcor-of-eggs-and-virtual-worlds installing OpenSim on PowerPC…or: of eggs and virtual worlds])
+
== Linux and Other Mono Platforms ==
cd .. (back into opensim-libs)
+
nant
+
cp bin/libsecondlife.dll ../opensim/bin
+
  
* Edit the libsecondlife.dll.config (PowerPC Only). Remove the cpu="x86" tag in the last dllmap line.
+
=== Prepare to compile ===
 +
To create the several project files run on the folder opensim:
  
=== FreeBSD 6.2 ===
+
  ./runprebuild.sh
su
+
cd /usr/ports/devel/subversion/ && make install clean (you may also need to rebuild apr-svn if this step fails)
+
cd /usr/ports/lang/mono/ && make install clean
+
cd /usr/ports/devel/nant/ && make install clean
+
cd /usr/ports/databases/sqlite3/ && make install clean
+
cd /usr/ports/x11-toolkits/libgdiplus/ && make install clean
+
cd /opensim/installation/directory/
+
svn co http://opensimulator.org/svn/opensim/trunk opensim
+
cd opensim
+
./runprebuild.sh
+
nant
+
  
Note: [http://opensimulator.org/wiki/OpenSim:FAQ#System.DllNotFoundException:_..2Flibopenjpeg-libsl-2.1.2.0.so|Follow the instructions on the FAQ to fix the]
+
==== Compile with Nant ====
"System.DllNotFoundException: ./libopenjpeg-libsl-2.1.2.0.so" issue, but use "gmake" instead of "make"
+
On some mono versions, in particular old ones may need the use of nant to proper compile OpenSimulator, in that case just run:
  
For ODE Physics you must do the following:
+
  nant
cd /usr/ports/graphics/libGL/ && make install clean
+
cd /usr/ports/graphics/libGLU/ && make install clean
+
cd /opensim/installation/directory/
+
svn co http://opensimulator.org/svn/opensim-libs/trunk opensim-libs
+
cd opensim-libs/unmanaged/OpenDynamicsEngine2/
+
sh autogen.sh
+
./configure --enable-shared --enable-release --disable-demos
+
make
+
mv ./ode/src/libode.so /opensim/installation/directory/opensim/bin/
+
  
=== RedHat Enterprise Linux 4 ===
+
==== Compile with xbuild ====
sudo vi /etc/yum.repos.d/mono.repo
+
  
  [mono]
+
On mono versions you can just use xbuild. ''(msbuild is recommended for 0.9.1.0.0+)''
  name=Mono for rhel-4-i386 (stable)
+
  baseurl=http://ftp.novell.com/pub/mono/download-stable/rhel-4-i386/
+
  enabled=1
+
  gpgcheck=0
+
  
sudo yum install mono-complete monodoc-core nant
+
  xbuild
svn co svn co http://opensimulator.org/svn/opensim/trunk opensim
+
cd opensim
+
./runprebuild.sh
+
nant
+
  
=== Fedora 5 ===
+
xbuild is no longer recommended on mono 5.x, but currently still works (5.12)
* I needed to build latest mono and nant from sources to build OpenSim successfully, the ones available in yum repository didn't work so I had to uninstall and build and configure the packages.
+
  
For detailed instructions go [http://ruakuu.blogspot.com/2008/06/installing-and-configuring-opensim-on.html here]
+
''>>>> xbuild tool is deprecated and will be removed in future updates, use msbuild instead <<<<''
  
=== Debian 4 ===
+
On more recent mono versions Release configuration may give some performance gain, but you do lose some debug capabilities.
 +
to compile Release configuration:
 +
  xbuild /p:Configuration=Release
  
The following packages and their dependencies are required to run OpenSim on a default Debian 4 netinstall:
+
==== Compile with msbuild ====
* mono
+
For Opensim 0.9.1 you can still use xbuild but Mono recommends the use of msbuild. You might need to install the package msbuild in addition to mono-complete for that. (Currently msbuild is included if you install mono-complete, on Ubuntu, from the official mono repositories. https://www.mono-project.com/download/stable/#download-lin )
* libmono-corlib2.0-cil
+
* libmono-sqlite2.0-cil
+
* libmono-system-web2.0-cil
+
* libmono-microsoft8.0-cil
+
* libmono-system-runtime2.0-cil
+
  
=== 64bit ===
+
Use xbuild on the other cases as a last resort.
Please note that only 32bit binaries are provided in the bin/ directory of subversion. If you want to use 64bit, you'll need to rebuild these shared objects.  See [[Installing and running on x86-64]]
+
  
 +
Recent improvements, specially on JIT runtime, justify compiling in Release configuration, but you do lose some debug capabilities.
  
=== Physics (Open Dynamics Engine ODE) ===
+
to compile with Debug configuration:
As installed from svn, ODE will work on most 32 bit platforms.  If you get an ODE-related crash, and/or a <i>libode.so not found</i> type of error, you will need to build libode from source.
+
  msbuild
  
Remove <tt>libode.so</tt> from the <tt>./bin</tt> folder.  (Note that subsequent svn updates may replace it again; best fix is to copy your built <tt>libode.so</tt> to <tt>bin</tt>).  Do NOT remove <tt>ode.net.dll</tt>!  Download the latest source from:
+
to compile with Release configuration:
 +
  msbuild /p:Configuration=Release
  
svn co http://opensimulator.org/svn/opensim-libs/trunk/unmanaged/OpenDynamicsEngine2
+
to compile with the debug configuration and detailed opensim.log file can then be read with a text editor:
 +
  msbuild /p:Configuration=Debug /fileLogger /flp:logfile=opensim.log /v:d
  
OpenSim requires a couple of patches on top of ODE which are not yet included upstream.  When compiling, make sure to use the following configure options:
+
you can specify the following values for the level of detail of the opensim.log file:
 +
  q [quiet], m [minimal], n [normal], d [detailed] and diag [diagnostic].
  
--with-trimesh=gimpact
+
To compile for .Net Framework 4.8 with mono >=6.12. you can run runprebuild48.sh instead of runprebuild.sh above. Not much gain doing that, if any.
--enable-shared
+
  
Make sure the configure script confirms these choices, and always compile with single precision (I believe that's the default). Try <code> make -k </code> if you get errors relating to drawstuff, test*, or openGL. <code> make install </code> should put <tt>libode.so</tt> in the proper place (usually <tt>/usr/local/lib</tt>), and it should be seen by opensim (<tt>ode.net.dll</tt>)
+
== Ahead of Time compilation (AOT)==
 +
As you all know the files *.exe and .dll created by the compiling process above do no contain native code for the machine.<br>
 +
With those files, the native code required by the cpu is created at runtime, as needed, in a process known as Just in Time (JIT)<br>
 +
It is possible to do another compile stage on those files to create native code, that will ready when the program starts. This is the Ahead of time process (AOT).<br>
 +
Since JIT is done at runtime, it has limited time to do extensive code optimizations, AOT on the other hand can do all.<br>
 +
AOT should this way be faster to load, save some the memory needed by JIT work, and reduce latency due to code generation when a new code section is needed.<br>
 +
This way AOT helps reduce the huge performance gap between C# and a more proper language like C++, even considering JIT can do some optimization dependent on current code execution state, that AOT can't. (if you think c# is as fast as competent c++ code, better change what you are smoking...)<br>
 +
In fact both .net and mono do AOT on their components during install<br>
 +
JIT will still be active, compiling some other code at run time. OpenSim and used .net/mono framework parts depend on it.<br>
  
===Running===
+
For Linux, 0.9.2.0 now includes scripts makeaot.sh and cleanaot.sh to help testing AOT.<br>
Recent versions of OpenSim come without an <tt>OpenSim.ini</tt> file. Copy the <tt>OpenSim.ini.example</tt> file to <tt>OpenSim.ini</tt> before making any changes.
+
Run makeaot.sh after the compile stage above, to generate the native code files. The option -O=all must be added to mono when executing opensim.exe, ex:<br>
cd bin
+
mono --desktop -O=all OpenSim.exe
mono OpenSim.exe
+
Script cleanaot.sh removes the binary files used by AOT. You must run it if you recompile the code (to be safe even if running makeaot).<br>
 +
<b>DO NOT FORGET to run makeaot.sh or cleanaot.sh after recompile!</b><br>
 +
The generated files are specific for that machine. <b>Do not copy the native code files to other machine, unless it is absolutely identical</b><br>
 +
The original .exe and .dll are still needed<br>
  
* To invoke ODE, add the option:
+
AOT is also possible in windows, but using different tools, and those add things to central repository on the machine, harder to isolate and maintain. see [https://docs.microsoft.com/en-us/dotnet/framework/tools/ngen-exe-native-image-generator ngen]<br>
-physics=OpenDynamicsEngine
+
to the <tt>mono OpenSim.exe</tt> line
+
  
or add <code>  physics = OpenDynamicsEngine </code> to the [Startup] section of <tt>OpenSim.ini</tt>. Same deal for other physics engines, when available.
+
Macs are.. Macs.. Future models may totally forbid JIT, like Apple mobile products do. Mono AOT on current Macs may work as on Linux<br>
  
On mono 1.2.6, some distributions may see
+
In practical use, don't expect much more than a bit faster loading.<br>
Unhandled Exception: System.NotSupportedException: CodePage 1252 not supported
+
Additionally, since compilation is different, it may add new issues. So test with care<br>
on startup when using mysql. This can be resolved by installing the package libmono-i18n2.0-cil (see http://bugs.mysql.com/bug.php?id=33938).
+
Opensim performance issues are mostly on its own code, terrible bad communications protocols, use of bad .net/mono framework code (demo quality in same cases), etc.<br>
 +
And of course eternally broken GC<br>
 +
But... well every ns counts..<br>
  
=== Additional Items ===
+
= Configuration =
  
* [[GC_NO_EXPLICIT|GC NO EXPLICIT]] - Enable Large Heap in Mono, this has been known to help performance and stability
+
See [[Configuration]].
  
 
[[Category:Users]]
 
[[Category:Users]]
 +
[[Category:Users]]
 +
[[Category:Getting Started]]

Revision as of 07:59, 27 November 2023

This page covers building OpenSimulator from source code on multiple platforms. Please help us keep this page up to date as the project progresses. If you just want to run OpenSimulator, Download and run the binary build instead. In the most cases, you should be fine with binaries.

Contents

Obtaining the Source Code

Check out the Download page for instructions on obtaining an OpenSimulator source release. If you want the current development code (i.e. the Git master branch) see Developer_Documentation#Source_Code_Repository_Access.

Building

Although this page is long, building is generally quite simple. See the BUILDING.txt file in the distribution itself for simplified instructions.

Version 0.9.3.0 and above

Microsoft stopped the development of .Net Framework and Mono, replacing them by new dotnet This is a significant breaking change that we try to follow on 0.9.3.0.

Get source code

get or update source from git

git clone git://opensimulator.org/git/opensim

Building on Windows

To building under Windows, the following is required:

optionally also

  • Visual Studio .NET, version 2022 or later


Create the project files running:

runprebuild.bat

Load the generated OpenSim.sln into Visual Studio and build the solution, or just run

compile.bat

to run you may also need


Configure, See Configuration.


Now just run OpenSim.exe from the bin folder, and set up the region.

Building on Linux / Mac

you will need

  • dotnet 6.0 SDK and Runtime
  • libgdiplus
    • if you have mono 6.x complete, you already have libgdiplus, otherwise you need to install it using a package manager for your operating system, like apt, brew, macports, etc. For example on debian:
      • apt-get update && apt-get install -y apt-utils libgdiplus libc6-dev


Create the project files, run:

./runprebuild.sh

then run

dotnet build --configuration Release OpenSim.sln

or just

./compile.sh


Configure. See Configuration.


run ./opensim.sh from the bin folder, and set up the region

Older Versions

  Source for old .Net Framework 4.x and Mono is in branch Mono-Net4X 
  This is mostly same code as 0.9.2.2 release.

Requirements

OpenSimulator 0.9.0.x requires either

You may also need nant tool.


OpenSimulator >= 0.9.1 (including current master) requires

recommend compiling with msbuild.

Other platforms may have own mono distributions, or may need to compile mono on them.

Other libraries used by OpenSimulator can be found at our opensim-libs git repo:

git clone git://opensimulator.org/git/opensim-libs

libOpenMetaVerse used can be found at https://bitbucket.org/opensimulator/

You may need to compile them for your platform, in particular the unmanaged ones like Bullet or ODE native code libraries

MS Windows

Supported Compilers

  • Visual Studio Community 2017
  • Or any version that does support the .Net version. At least VS2010 for versions prior to 0.91, VS2015 for 0.91 and after.
  • OpenSimulator >=0.9.2.0 can compile for .Net Framework 4.8 using runprebuild48.bat instead of runprebuild.bat below and with VS2017/19/22

Compiling in an IDE

  1. Run "runprebuild.bat"
  2. Open the resulting "OpenSim.sln" in Visual Studio IDE.
  3. Select Debug or Release configuration
  4. Menu Build -> Build Solution.

Compiling at the Command Prompt

  1. Run "runprebuild.bat".
  2. Run the resulting "compile.bat" file.

Linux and Other Mono Platforms

Prepare to compile

To create the several project files run on the folder opensim:

 ./runprebuild.sh

Compile with Nant

On some mono versions, in particular old ones may need the use of nant to proper compile OpenSimulator, in that case just run:

 nant

Compile with xbuild

On mono versions you can just use xbuild. (msbuild is recommended for 0.9.1.0.0+)

 xbuild

xbuild is no longer recommended on mono 5.x, but currently still works (5.12)

>>>> xbuild tool is deprecated and will be removed in future updates, use msbuild instead <<<<

On more recent mono versions Release configuration may give some performance gain, but you do lose some debug capabilities. to compile Release configuration:

 xbuild /p:Configuration=Release

Compile with msbuild

For Opensim 0.9.1 you can still use xbuild but Mono recommends the use of msbuild. You might need to install the package msbuild in addition to mono-complete for that. (Currently msbuild is included if you install mono-complete, on Ubuntu, from the official mono repositories. https://www.mono-project.com/download/stable/#download-lin )

Use xbuild on the other cases as a last resort.

Recent improvements, specially on JIT runtime, justify compiling in Release configuration, but you do lose some debug capabilities.

to compile with Debug configuration:

  msbuild

to compile with Release configuration:

  msbuild /p:Configuration=Release

to compile with the debug configuration and detailed opensim.log file can then be read with a text editor:

  msbuild /p:Configuration=Debug /fileLogger /flp:logfile=opensim.log /v:d

you can specify the following values for the level of detail of the opensim.log file:

  q [quiet], m [minimal], n [normal], d [detailed] and diag [diagnostic].

To compile for .Net Framework 4.8 with mono >=6.12. you can run runprebuild48.sh instead of runprebuild.sh above. Not much gain doing that, if any.

Ahead of Time compilation (AOT)

As you all know the files *.exe and .dll created by the compiling process above do no contain native code for the machine.
With those files, the native code required by the cpu is created at runtime, as needed, in a process known as Just in Time (JIT)
It is possible to do another compile stage on those files to create native code, that will ready when the program starts. This is the Ahead of time process (AOT).
Since JIT is done at runtime, it has limited time to do extensive code optimizations, AOT on the other hand can do all.
AOT should this way be faster to load, save some the memory needed by JIT work, and reduce latency due to code generation when a new code section is needed.
This way AOT helps reduce the huge performance gap between C# and a more proper language like C++, even considering JIT can do some optimization dependent on current code execution state, that AOT can't. (if you think c# is as fast as competent c++ code, better change what you are smoking...)
In fact both .net and mono do AOT on their components during install
JIT will still be active, compiling some other code at run time. OpenSim and used .net/mono framework parts depend on it.

For Linux, 0.9.2.0 now includes scripts makeaot.sh and cleanaot.sh to help testing AOT.
Run makeaot.sh after the compile stage above, to generate the native code files. The option -O=all must be added to mono when executing opensim.exe, ex:

mono --desktop -O=all OpenSim.exe

Script cleanaot.sh removes the binary files used by AOT. You must run it if you recompile the code (to be safe even if running makeaot).
DO NOT FORGET to run makeaot.sh or cleanaot.sh after recompile!
The generated files are specific for that machine. Do not copy the native code files to other machine, unless it is absolutely identical
The original .exe and .dll are still needed

AOT is also possible in windows, but using different tools, and those add things to central repository on the machine, harder to isolate and maintain. see ngen

Macs are.. Macs.. Future models may totally forbid JIT, like Apple mobile products do. Mono AOT on current Macs may work as on Linux

In practical use, don't expect much more than a bit faster loading.
Additionally, since compilation is different, it may add new issues. So test with care
Opensim performance issues are mostly on its own code, terrible bad communications protocols, use of bad .net/mono framework code (demo quality in same cases), etc.
And of course eternally broken GC
But... well every ns counts..

Configuration

See Configuration.

Personal tools
General
About This Wiki