aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools/OpenSim.32BitLaunch/Program.cs
diff options
context:
space:
mode:
authorTedd Hansen2008-02-02 05:03:28 +0000
committerTedd Hansen2008-02-02 05:03:28 +0000
commita004ea5f1772e6e36efae29980f2d95a9efeb851 (patch)
tree59ea076e5eaafbaf594d7eabbfce169062328146 /OpenSim/Tools/OpenSim.32BitLaunch/Program.cs
parentNote to self: Next time read debug-files on correct computer. It makes bughun... (diff)
downloadopensim-SC_OLD-a004ea5f1772e6e36efae29980f2d95a9efeb851.zip
opensim-SC_OLD-a004ea5f1772e6e36efae29980f2d95a9efeb851.tar.gz
opensim-SC_OLD-a004ea5f1772e6e36efae29980f2d95a9efeb851.tar.bz2
opensim-SC_OLD-a004ea5f1772e6e36efae29980f2d95a9efeb851.tar.xz
Almost forgot to check in:
OpenSim.32BitLaunch.exe is a 32-bit application that loads OpenSim.exe using .Net framework, hence it is JIT-compiled to 32-bit. Use this app to start OpenSim on 64-bit systems (works great on Vista 64 :))
Diffstat (limited to 'OpenSim/Tools/OpenSim.32BitLaunch/Program.cs')
-rw-r--r--OpenSim/Tools/OpenSim.32BitLaunch/Program.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Tools/OpenSim.32BitLaunch/Program.cs b/OpenSim/Tools/OpenSim.32BitLaunch/Program.cs
new file mode 100644
index 0000000..ba2f461
--- /dev/null
+++ b/OpenSim/Tools/OpenSim.32BitLaunch/Program.cs
@@ -0,0 +1,10 @@
1namespace OpenSim._32BitLaunch
2{
3 class Program
4 {
5 static void Main(string[] args)
6 {
7 OpenSim.Application.Main(args);
8 }
9 }
10}