summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
...
* [SCons] Link MSVC debug runtime for optimize=none|debug only.Fabio Alessandrelli2022-11-212-7/+7
| | | | | Select windows runtime in "targets" tool, use "/MDd" flag only when building with optimize="none" and optimize="debug".
* Fix Android build on macOS.bruvzg2022-11-101-0/+1
|
* [SCons] Remove bogus CCFLAGS from windows toolchain.Fabio Alessandrelli2022-11-021-2/+0
| | | | The c++ standard is added as part of the main SConstruct
* [SCons] Refactor targets, symbols, optimizations.Fabio Alessandrelli2022-10-041-19/+50
| | | | | | | | | Now matches Godot `master` target names and supports the same flags with the following notable exceptions: - The default target is "template_debug", since it's compatible with editor builds (and TOOLS_ENABLED is never used internally). - separate_debug_symbols is still not supported, and will be done in a separate commit.
* [SCons] Add "optimize" and "debug_symbols" optionsFabio Alessandrelli2022-09-126-26/+64
| | | | | | | | | optimize = auto|none|debug|speed|size|0|1|2|3 debug_symbol = True|False optimize == "auto" will produce: - "debug" for "debug" builds - "speed" for "release" builds
* [MSVC] Add NOMINMAX flag to scons and cmake.Fabio Alessandrelli2022-09-121-1/+1
| | | | | Ensures user inclusion of windows.h do not define "min" and "max" macros.
* Add debug information to Windows buildsKevin Smith2022-07-281-0/+1
| | | | | | | | | | | | | | | Previously, Windows builds were being produced without debug information, leading to somewhat unhelpful backtraces etc. without symbols. This builds the symbols in (only for debug builds - I've deliberately not touched release builds here) so gdextension bugs are a little more tractable. Test-Information: Have been running this patch for weeks, and getting useful traces out on the commandline, and useful debugging from debuggers.
* [CI] Fix Android builds after GH container update.Fabio Alessandrelli2022-07-281-6/+2
|
* Rename OSX to macOS.bruvzg2022-07-204-16/+16
|
* Add clang-cl supportKevin Smith2022-07-121-0/+4
| | | | | | | | | | | | | | | | | Visual C++ has a clang-based driver, available through the clang-cl wrapper (which provides the same interface as cl) - this generates objects binary-compatible with the default (traditional) driver, and can then be linked in the normal way. As such, this patch simply configures for MSVCC and then overwrites the cl compiler with clang-cl in the environment. Clang gives (subjectively) much more understandable compiler warnings and errors than MSVCC, which was my motivation for switching. Test-Information: Builds for me with VS2022, and my gdextension library builds and links.
* [SCons] Fix msvc, linux-clang, add version check.Fabio Alessandrelli2022-07-042-9/+9
|
* [SCons] Add iOS OSXCross support, min version override.Fabio Alessandrelli2022-06-272-18/+56
|
* [SCons] Add OSXCross tool.Fabio Alessandrelli2022-06-272-1/+34
|
* [SCons] Move toolchains logic to tools folder.Fabio Alessandrelli2022-06-277-0/+437