diff options
author | UbitUmarov | 2017-05-27 05:47:05 +0100 |
---|---|---|
committer | UbitUmarov | 2017-05-27 05:47:05 +0100 |
commit | c54985f8a16a00032a3647112555b5c82b43efde (patch) | |
tree | 862483e0e10e4862e99b5437340e326df3f3f072 /bin | |
parent | Merge branch 'master' into httptests (diff) | |
parent | minor cleanup (diff) | |
download | opensim-SC-c54985f8a16a00032a3647112555b5c82b43efde.zip opensim-SC-c54985f8a16a00032a3647112555b5c82b43efde.tar.gz opensim-SC-c54985f8a16a00032a3647112555b5c82b43efde.tar.bz2 opensim-SC-c54985f8a16a00032a3647112555b5c82b43efde.tar.xz |
Merge branch 'master' into httptests
Diffstat (limited to 'bin')
-rw-r--r-- | bin/OpenSim.ini.example | 4 | ||||
-rwxr-xr-x | bin/opensim-ode.sh | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 74888b3..3482270 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -256,6 +256,10 @@ | |||
256 | ;; alternative OpenDynamicsEngine engine. ubODEMeshmerizer meshing above MUST be selected also | 256 | ;; alternative OpenDynamicsEngine engine. ubODEMeshmerizer meshing above MUST be selected also |
257 | ; physics = ubODE | 257 | ; physics = ubODE |
258 | 258 | ||
259 | ; ubODE and OpenDynamicsEngine does allocate a lot of memory on stack. On linux you may need to increase its limit | ||
260 | ; script opensim-ode-sh starts opensim setting that limit. You may need to increase it even more on large regions | ||
261 | ; edit the line ulimit -s 262144, and change this last value | ||
262 | |||
259 | ;# {DefaultScriptEngine} {} {Default script engine} {XEngine} XEngine | 263 | ;# {DefaultScriptEngine} {} {Default script engine} {XEngine} XEngine |
260 | ;; Default script engine to use. Currently, we only have XEngine | 264 | ;; Default script engine to use. Currently, we only have XEngine |
261 | ; DefaultScriptEngine = "XEngine" | 265 | ; DefaultScriptEngine = "XEngine" |
diff --git a/bin/opensim-ode.sh b/bin/opensim-ode.sh index b901425..7c61571 100755 --- a/bin/opensim-ode.sh +++ b/bin/opensim-ode.sh | |||
@@ -1,4 +1,4 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | echo "Starting OpenSimulator with ODE. If you get an error saying limit: Operation not permitted. Then you will need to chmod 0600 /etc/limits" | 2 | echo "Starting OpenSimulator with ODE or ubOde. If you get an error saying limit: Operation not permitted. Then you will need to chmod 0600 /etc/limits" |
3 | ulimit -s 262144 | 3 | ulimit -s 262144 |
4 | mono OpenSim.exe -physics=OpenDynamicsEngine | 4 | mono OpenSim.exe |