mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 07:26:15 +01:00
Merge branch '3421-glib_debug-docs' into 'main'
docs: Set -Dglib_debug=enabled by default and document it for distros Closes #3421 See merge request GNOME/glib!4212
This commit is contained in:
commit
f92da0cb49
@ -61,6 +61,10 @@ Quite a bit of additional debugging code is compiled into GLib when this
|
|||||||
macro is defined, and since it is a globally visible define, third-party code
|
macro is defined, and since it is a globally visible define, third-party code
|
||||||
may be affected by it similarly to `G_DISABLE_ASSERT`.
|
may be affected by it similarly to `G_DISABLE_ASSERT`.
|
||||||
|
|
||||||
|
Some of these checks can be relatively expensive at runtime, as they affect
|
||||||
|
every GObject type cast. Distributions are recommended to disable
|
||||||
|
`G_ENABLE_DEBUG` in stable release builds.
|
||||||
|
|
||||||
The additional code executed/compiled for this macro currently includes the
|
The additional code executed/compiled for this macro currently includes the
|
||||||
following, but this is not an exhaustive list:
|
following, but this is not an exhaustive list:
|
||||||
- extra validity checks for `GDate`
|
- extra validity checks for `GDate`
|
||||||
|
@ -115,21 +115,21 @@ option('oss_fuzz',
|
|||||||
|
|
||||||
option('glib_debug',
|
option('glib_debug',
|
||||||
type : 'feature',
|
type : 'feature',
|
||||||
value : 'auto',
|
value : 'enabled',
|
||||||
yield : true,
|
yield : true,
|
||||||
description : 'Enable GLib debug infrastructure (see docs/macros.txt)')
|
description : 'Enable GLib debug infrastructure (distros typically want this disabled in production; see docs/macros.md)')
|
||||||
|
|
||||||
option('glib_assert',
|
option('glib_assert',
|
||||||
type : 'boolean',
|
type : 'boolean',
|
||||||
value : true,
|
value : true,
|
||||||
yield : true,
|
yield : true,
|
||||||
description : 'Enable GLib assertion (see docs/macros.txt)')
|
description : 'Enable GLib assertion (see docs/macros.md)')
|
||||||
|
|
||||||
option('glib_checks',
|
option('glib_checks',
|
||||||
type : 'boolean',
|
type : 'boolean',
|
||||||
value : true,
|
value : true,
|
||||||
yield : true,
|
yield : true,
|
||||||
description : 'Enable GLib checks such as API guards (see docs/macros.txt)')
|
description : 'Enable GLib checks such as API guards (see docs/macros.md)')
|
||||||
|
|
||||||
option('libelf',
|
option('libelf',
|
||||||
type : 'feature',
|
type : 'feature',
|
||||||
|
Loading…
Reference in New Issue
Block a user