diff options
author | Tedd Hansen | 2008-02-02 05:03:28 +0000 |
---|---|---|
committer | Tedd Hansen | 2008-02-02 05:03:28 +0000 |
commit | a004ea5f1772e6e36efae29980f2d95a9efeb851 (patch) | |
tree | 59ea076e5eaafbaf594d7eabbfce169062328146 /OpenSim/Tools/OpenSim.32BitLaunch/Program.cs | |
parent | Note to self: Next time read debug-files on correct computer. It makes bughun... (diff) | |
download | opensim-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.cs | 10 |
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 @@ | |||
1 | namespace OpenSim._32BitLaunch | ||
2 | { | ||
3 | class Program | ||
4 | { | ||
5 | static void Main(string[] args) | ||
6 | { | ||
7 | OpenSim.Application.Main(args); | ||
8 | } | ||
9 | } | ||
10 | } | ||