Difference between revisions of "DebugMode"

From The Battle for Wesnoth Wiki
(Categorize)
(Debug Mode: debug mode is not disabled in network games since a while)
 
(9 intermediate revisions by 8 users not shown)
Line 9: Line 9:
 
Debug mode can also be enabled within the game using :debug (see [[CommandMode]]), and on Mac versions of the game, by holding down the Option key when starting Wesnoth.
 
Debug mode can also be enabled within the game using :debug (see [[CommandMode]]), and on Mac versions of the game, by holding down the Option key when starting Wesnoth.
  
''' Debug mode is disabled when you play a network multiplayer game. '''
+
== Building the game with extra debugging ==
 +
 
 +
The game can be built to support debugging, enabling a few code snippets for the benefit of external debuggers like ''gdb'', and disabling compiler optimizations.
 +
 
 +
It is a good idea to run a debug build of the game if you do development, since it can be necessary to diagnose serious problems.
 +
 
 +
'''scons:'''
  
== Building the game with extra debugging ==
+
scons build=debug [...]
 +
 
 +
'''cmake:'''
  
The game can be built to support debugging by supplying ''--enable-debug'' as an argument to ''configure'' during the build process. Currently this enables a few code snippets for the benefit of an external debugging tool like ''gdb'',
+
cmake -DCMAKE_BUILD_TYPE=Debug [...] <path to top source dir>
and calls the compiler with ''-g'' and ''-O0'' flags.
+
make
You probably don't want to strip a debugging build, since the symbols are needed for the debugging tool.
 
  
An unstripped debug build on linux is over 80MB, compared to 2-3MB stripped. It is a good idea to run a debug build of the game if you do development, since it can be necessary to diagnose serious problems.
+
An unstripped debug build on linux is over 400 MB, compared to around 16 MB stripped. You probably don't want to strip a debugging build, though, since the extra symbols are required by debug tools.
  
 
== See Also ==
 
== See Also ==
  
 
* [[CommandMode]]
 
* [[CommandMode]]
 +
* [[DebuggingWesnoth]]
 
* [[DeveloperResources]]
 
* [[DeveloperResources]]
  
 
[[Category:Building and Installing]]
 
[[Category:Building and Installing]]
[[Category:Committers]]
+
[[Category:Development]]

Latest revision as of 16:19, 30 July 2025

Debug Mode

Running the game with commandline option --debug or -d enables debug mode within the game.

Debug mode displays additional information. It also enables context menu options to create units anywhere on the map, changing unit sides, and some additional CommandMode commands. If you create units in debug mode, you can then use the :unit command to set the unit's attributes (see CommandMode).

Debug mode can also be enabled within the game using :debug (see CommandMode), and on Mac versions of the game, by holding down the Option key when starting Wesnoth.

Building the game with extra debugging

The game can be built to support debugging, enabling a few code snippets for the benefit of external debuggers like gdb, and disabling compiler optimizations.

It is a good idea to run a debug build of the game if you do development, since it can be necessary to diagnose serious problems.

scons:

scons build=debug [...]

cmake:

cmake -DCMAKE_BUILD_TYPE=Debug [...] <path to top source dir>
make

An unstripped debug build on linux is over 400 MB, compared to around 16 MB stripped. You probably don't want to strip a debugging build, though, since the extra symbols are required by debug tools.

See Also

This page was last edited on 30 July 2025, at 16:19.