summaryrefslogtreecommitdiffstats
path: root/platform_methods.py
Commit message (Collapse)AuthorAgeFilesLines
* Buildsystem: Unify compatibility aliasesYevhen Babiichuk (DustDFG)2024-11-111-0/+7
| | | | Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
* Build System: Extract `validate_arch` helper functionYevhen Babiichuk (DustDFG)2024-10-061-0/+10
| | | | Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
* Update pre-commit hooks configuration to use `ruff` instead of `black`Jakub Marcowski2024-05-211-10/+6
|
* SCons: Generate all scripts nativelyThaddeus Crews2024-05-071-27/+0
|
* SCons: Colorize warnings/errors during generationThaddeus Crews2024-04-281-2/+1
|
* SCons: Add an option to enable the experimental ninja build backendRiteo2024-03-151-1/+0
| | | | | | | | | | | | | | | With this option turned on, if properly set up, SCons generates a `build.ninja` file and quits. To actually build the engine, the user can then call `ninja` with whatever options they might prefer (not everything is yet transferred properly to this new generated file). Ideally, the scons file should never be called again, as ninja automatically detects any SCons build script change and invokes the required commands to regenerate itself. This approach speeds up incremental builds considerably, as it limits SCons to code generation and uses ninja's extremely fast timestamp-based file change detector.
* SCons: unify code generations routine and minimize timestamp changesRiteo2024-03-151-2/+3
| | | | | | | | | Previously, all of the code generation routines would just needlessly write the same files over and over, even when not needed. This became a problem with the advent of the experimental ninja backend for SCons, which can be trivially enabled with a few lines of code and relies on timestamp changes, making it thus impractical.
* SCons: Remove `run_in_subprocess` dependencyThaddeus Crews2024-03-111-69/+0
|
* SCons: Ensure `with` statement where applicableThaddeus Crews2024-03-101-9/+7
|
* Enforce `\n` eol for Python writesThaddeus Crews2024-03-091-2/+2
| | | | • Ensure utf-8 encoding if previously unspecified
* [iOS/macOS] Add option to automatically build (and sign / archive) bundles.bruvzg2024-02-131-0/+105
|
* SCons: Move platform logo/run icon to `export` folderRémi Verschelde2023-06-201-0/+30
| | | | | | | | | | | | Follow-up to #75932. Since these icons are only used by the export plugin, it makes sense to move them and generate the headers there. The whole `detect.is_active()` logic seems to be a leftover from before times, as far back as 1.0-stable it already wasn't used for anything. So I'm removing it and moving the export icon generation to `platform_methods`, where it makes more sense.
* CI: Update static checks to black 23.3.0Rémi Verschelde2023-06-191-1/+0
| | | | And apply it to the codebase, removing empty lines at the start of blocks.
* Unify bits, arch, and android_arch into env["arch"]Aaron Franke2022-08-251-1/+35
| | | | | | Fully removes the `bits` option and adapts the code that relied on it. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* Merge python EnvironmentError, IOError and WindowsError into OSError.Marcel Admiraal2020-09-021-1/+1
|
* SCons: Refactor running commands through buildersAndrii Doroshenko (Xrayez)2020-07-281-5/+6
| | | | | | | | | | | | A new `env.Run` method is added which allows to control the verbosity of builders output automatically depending on whether the "verbose" option is set. It also allows to optionally run any SCons commands in a subprocess using the existing `run_in_subprocess` method, unifying the interface. `Action` objects wrap all builder functions to include a short build message associated with any action. Notably, this removes quite verbose output generated by `make_doc_header` and `make_editor_icons_action` builders.
* SCons: Format buildsystem files with psf/blackRémi Verschelde2020-03-301-19/+18
| | | | | | | | | | | | | | | | | | | | | Configured for a max line length of 120 characters. psf/black is very opinionated and purposely doesn't leave much room for configuration. The output is mostly OK so that should be fine for us, but some things worth noting: - Manually wrapped strings will be reflowed, so by using a line length of 120 for the sake of preserving readability for our long command calls, it also means that some manually wrapped strings are back on the same line and should be manually merged again. - Code generators using string concatenation extensively look awful, since black puts each operand on a single line. We need to refactor these generators to use more pythonic string formatting, for which many options are available (`%`, `format` or f-strings). - CI checks and a pre-commit hook will be added to ensure that future buildsystem changes are well-formatted.
* SCons: Drop support for Python 2Rémi Verschelde2020-03-251-4/+1
| | | | | | We now require SCons 3.0+ (first version with Python 3 support), and we set min required Python 3 version to 3.5 (3.4 and earlier are EOL).
* Fixed short circuiting on non-Windows platformsViktor Ferenczi2018-07-301-4/+4
|
* Fixed Mac build by running builders in subprocess only on WindowsViktor Ferenczi2018-07-301-6/+22
| | | | Also passing serializable SCons environment variables (env) for compatibility with debug builds (search for uses of env in make functions)
* Running builder (content generator) functions in subprocesses on WindowsViktor Ferenczi2018-07-271-0/+66
- Refactored all builder (make_*) functions into separate Python modules along to the build tree - Introduced utility function to wrap all invocations on Windows, but does not change it elsewhere - Introduced stub to use the builders module as a stand alone script and invoke a selected function There is a problem with file handles related to writing generated content (*.gen.h and *.gen.cpp) on Windows, which randomly causes a SHARING VIOLATION error to the compiler resulting in flaky builds. Running all such content generators in a new subprocess instead of directly inside the build script works around the issue. Yes, I tried the multiprocessing module. It did not work due to conflict with SCons on cPickle. Suggested workaround did not fully work either. Using the run_in_subprocess wrapper on osx and x11 platforms as well for consistency. In case of running a cross-compilation on Windows they would still be used, but likely it will not happen in practice. What counts is that the build itself is running on which platform, not the target platform. Some generated files are written directly in an SConstruct or SCsub file, before the parallel build starts. They don't need to be written in a subprocess, apparently, so I left them as is.