godot/core
Rémi Verschelde 39facb35a0 SCons: Unify tools/target build type configuration
Implements https://github.com/godotengine/godot-proposals/issues/3371.

New `target` presets
====================

The `tools` option is removed and `target` changes to use three new presets,
which match the builds users are familiar with. These targets control the
default optimization level and enable editor-specific and debugging code:

- `editor`: Replaces `tools=yes target=release_debug`.
  * Defines: `TOOLS_ENABLED`, `DEBUG_ENABLED`, `-O2`/`/O2`
- `template_debug`: Replaces `tools=no target=release_debug`.
  * Defines: `DEBUG_ENABLED`, `-O2`/`/O2`
- `template_release`: Replaces `tools=no target=release`.
  * Defines: `-O3`/`/O2`

New `dev_build` option
======================

The previous `target=debug` is now replaced by a separate `dev_build=yes`
option, which can be used in combination with either of the three targets,
and changes the following:

- `dev_build`: Defines `DEV_ENABLED`, disables optimization (`-O0`/`/0d`),
  enables generating debug symbols, does not define `NDEBUG` so `assert()`
  works in thirdparty libraries, adds a `.dev` suffix to the binary name.

Note: Unlike previously, `dev_build` defaults to off so that users who
compile Godot from source get an optimized and small build by default.
Engine contributors should now set `dev_build=yes` in their build scripts or
IDE configuration manually.

Changed binary names
====================

The name of generated binaries and object files are changed too, to follow
this format:

`godot.<platform>.<target>[.dev][.double].<arch>[.<extra_suffix>][.<ext>]`

For example:
- `godot.linuxbsd.editor.dev.arm64`
- `godot.windows.template_release.double.x86_64.mono.exe`

Be sure to update your links/scripts/IDE config accordingly.

More flexible `optimize` and `debug_symbols` options
====================================================

The optimization level and whether to generate debug symbols can be further
specified with the `optimize` and `debug_symbols` options. So the default
values listed above for the various `target` and `dev_build` combinations
are indicative and can be replaced when compiling, e.g.:

`scons p=linuxbsd target=template_debug dev_build=yes optimize=debug`
will make a "debug" export template with dev-only code enabled, `-Og`
optimization level for GCC/Clang, and debug symbols. Perfect for debugging
complex crashes at runtime in an exported project.
2022-09-26 16:31:46 +02:00
..
config Merge pull request #65816 from bruvzg/proj_settings_missing_flags 2022-09-21 18:56:31 +02:00
crypto Swap arguments of ResourceSaver.save() 2022-07-29 19:53:09 +02:00
debugger Code quality: Fix header guards consistency 2022-07-25 11:17:40 +02:00
error Errors: Fallback to fprintf if OS singleton doesn't exist 2022-06-30 16:00:30 +02:00
extension Merge pull request #65817 from bruvzg/typed_array 2022-09-23 10:24:46 +02:00
input Merge pull request #63109 from OverloadedOrama/fix-input-event-action 2022-09-25 11:06:38 +02:00
io Merge pull request #66246 from Jummit/fix-dir-crash 2022-09-23 09:41:59 +02:00
math Merge pull request #66435 from akien-mga/style-header-guards-cleanup 2022-09-26 15:48:56 +02:00
object Merge pull request #66110 from Zylann/reference_get_count 2022-09-22 08:26:29 +02:00
os SCons: Cleanup DEBUG, _DEBUG and NDEBUG defines 2022-09-23 15:21:26 +02:00
string Style: Cleanup header guards for consistency 2022-09-26 13:51:17 +02:00
templates Style: Cleanup header guards for consistency 2022-09-26 13:51:17 +02:00
variant Merge pull request #65817 from bruvzg/typed_array 2022-09-23 10:24:46 +02:00
core_bind.cpp Add method bind for Geometry2D.decompose_polygon_in_convex 2022-09-21 09:40:03 +04:00
core_bind.h Remove unused includes & move some includes to top of file 2022-09-23 19:06:31 -04:00
core_builders.py
core_constants.cpp Fix key mapping changes when moving from macOS to other platform 2022-09-07 18:45:35 +02:00
core_constants.h Code quality: Fix header guards consistency 2022-07-25 11:17:40 +02:00
core_globals.cpp Variant memory pools 2022-07-04 12:01:46 +01:00
core_globals.h Variant memory pools 2022-07-04 12:01:46 +01:00
core_string_names.cpp
core_string_names.h
doc_data.cpp Fix missing method qualifiers in script doc 2022-07-24 23:00:19 +02:00
doc_data.h Remove unused includes & move some includes to top of file 2022-09-23 19:06:31 -04:00
register_core_types.cpp Remove unused includes & move some includes to top of file 2022-09-23 19:06:31 -04:00
register_core_types.h
SCsub SCons: Unify tools/target build type configuration 2022-09-26 16:31:46 +02:00
typedefs.h
version.h