Jelajahi Sumber

Document compiling a debug server build

A debug server build is lighter than an editor headless build,
but still allows debugging tools to be used.
Hugo Locurcio 3 tahun lalu
induk
melakukan
3567542ce6

+ 6 - 1
development/compiling/compiling_for_osx.rst

@@ -77,7 +77,12 @@ projects in an automated manner, use::
 
     scons platform=server tools=yes target=release_debug --jobs=$(sysctl -n hw.logicalcpu)
 
-To compile a *server* build which is optimized to run dedicated game servers,
+To compile a debug *server* build which can be used with
+:ref:`remote debugging tools <doc_command_line_tutorial>`, use::
+
+    scons platform=server tools=no target=release_debug --jobs=$(sysctl -n hw.logicalcpu)
+
+To compile a release *server* build which is optimized to run dedicated game servers,
 use::
 
     scons platform=server tools=no target=release --jobs=$(sysctl -n hw.logicalcpu)

+ 5 - 0
development/compiling/compiling_for_x11.rst

@@ -142,6 +142,11 @@ projects in an automated manner, use::
 
     scons -j8 platform=server tools=yes target=release_debug
 
+To compile a debug *server* build which can be used with
+:ref:`remote debugging tools <doc_command_line_tutorial>`, use::
+
+    scons -j8 platform=server tools=no target=release_debug
+
 To compile a *server* build which is optimized to run dedicated game servers,
 use::