Dylan Baker
Dylan Baker
Tested building an SDK+Runtime and a Runtime without custom Sdk (thus no platform-id) Fixes: #630
### Checklist - [x] I agree to follow the [Code of Conduct](https://github.com/flatpak/flatpak/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. - [x] I have searched the [issue tracker](https://www.github.com/flatpak/flatpak-builder/issues) for a bug that matches...
Instead of having a raw python exception, provide a helpful error message that `[sub:sub1:project options]` should just be `[sub1:project options]` No test is provided as this is basic error handling,...
These changes attempt to make the OptionKey faster to initializer and to compare. with some light testing this makes initializing options keys roughly 5x as fast (when initializing the same...
Lets have a discussion about what is needed to make meson better support bare metal targets and low level targets such as building a libc. I think it would be...
A common problem for Meson is the need to call common code generators in the form of custom_targets (usually do to generating headers). While these generators can be unique, some...
Meson should be completely type safe. The following modules are still not fully type safe: - [ ] mesonmain.py - [x] modules/cmake.py - [x] modules/dlang.py (https://github.com/mesonbuild/meson/pull/15041) - [ ] modules/python.py...
Not too much here, mostly just asserts because of potentially code returning unions where we have a pretty good idea of what the type is.
The goal here is to be able to just get a nice struct of arguments. I haven't decided if I want to do this. It's nice in that it reduces...
This would make `get_variable` and `set_variable`'s implementation be basically free. It would simplify GVN It would allow the Object rather than Instruction to be the most basic object I would...