aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/interpreter
AgeCommit message (Collapse)AuthorFilesLines
2023-09-22interpreter: Move code that dumps generated ASTXavier Claessens1-24/+14
That code is common to any method that generates an AST, like cargo subprojects coming soon.
2023-09-22CMakeInterpreter: Remove useless argumentsXavier Claessens1-5/+3
2023-09-22Allow to fallback to cmake subprojectXavier Claessens2-9/+7
The method can be overridden by setting the `method` key in the wrap file and always defaults to 'meson'. cmake.subproject() is still needed in case specific cmake options need to be passed. This also makes it easier to extend to other methods in the future e.g. cargo.
2023-09-19Rust: Fix both_libraries() caseXavier Claessens1-0/+4
Rustc does not produce object files we can reuse to build both libraries. Ideally this should be done with a single target that has both `--crate-type` arguments instead of having 2 different build rules. As temporary workaround, build twice and ensure they don't get conflicts in intermediary files created by rustc by passing target's private directory as --out-dir. See https://github.com/rust-lang/rust/issues/111083.
2023-09-19Rust: Fix proc-macro usage when cross compilingXavier Claessens1-0/+4
Force BUILD machine and allow to link with HOST machine.
2023-09-19Rust: Replace rust_crate_type with rust_abiXavier Claessens1-0/+25
Meson already knows if it's a shared or static library, user only need to specify the ABI (Rust or C).
2023-09-19interpreter: Use common definition for sources typeXavier Claessens2-15/+20
2023-09-19interpreter: Allow regex matching in expect_error()Xavier Claessens1-4/+9
2023-09-18Remove get_configtool_variable()Xavier Claessens1-1/+7
This also makes it more consistent with get_pkgconfig_variable() which always return empty value instead of failing when the variable does not exist. Linking that to self.required makes no sense and was never documented any way.
2023-09-18Remove get_pkgconfig_variable()Xavier Claessens3-14/+24
Make sure that pkgconfig_define is a pair of strings and not a list with more than 2 strings.
2023-09-13install_{data,headers,subdir}: implement follow_symlinksArsen Arsenović3-6/+23
This permits users who rely on following symlinks to stay on the old default of following them.
2023-09-13Fix assertion raised with invalid option nameCharles Brunet1-0/+5
When option name contains more that one dot, it should be detected earlier to prevent an assert to be raised. Fixes #11904.
2023-09-11parser: use IdNode for function name and assignment nameCharles Brunet1-2/+2
2023-09-11parser: preserve escape chars in stringsCharles Brunet1-1/+1
use separate Node for multiline strings
2023-09-09Add support for padding zeroes in int.to_string() methodNomura1-5/+8
2023-09-09Add macro_name option to configure_fileNicholas Vinson2-1/+4
Allow macro_name to be speficied as a parameter to configure_file(). This allows C macro-style include guards to be added to configure_file()'s output when a template file is not given. This change simplifies the creation of configure files that define macros with dynamic names and want the C-style include guards.
2023-09-07Fix include_directories test for relative pathCharles Brunet1-3/+3
- On Windows, it was not detected if include directory was an absolute path to source directory, because of the mis of path separators. - In the edgecase the include directory begins with the exact same string as the source directory, but is a different directory, it was falsely reported as an error. Fixes #12217.
2023-09-07syntax-highlighting: vim: update builtin function listLiam Beguin1-11/+0
Update builtin function list using the refman python docs/genrefman.py \ -g vim \ -o data/syntax-highlighting/vim/syntax/ This also drops gettext() and find_library() from the list of builtin functions that have been deprecated since 2016. Changes are squashed here because test_vim_syntax_highlighting() would validate the file against the list of builtin functions that no longer matches the yaml documentation. Signed-off-by: Liam Beguin <liambeguin@gmail.com>
2023-09-07Compiler checks must use per-subproject optionsXavier Claessens1-1/+1
Fixes: #12202
2023-09-07Add compiler.has_defineMarvin Scholz1-2/+20
Adds a new method to the compiler object, has_define. This makes it possible to check if a preprocessor macro/define is set or not. This is especially helpful if the define in question is empty, for example: #define MESON_EMPTY_DEFINE This would yield the same results as a missing define with the existing get_define method, as it would return an empty string for both cases. Therefore this additional method is needed.
2023-08-31add json output format to configure fileCharles Brunet2-3/+3
2023-08-28include_directories: Always add both source and build dirsXavier Claessens1-1/+1
Compiler checks were not adding build dir side, which prevents using headers generated with configure_file().
2023-08-24find_program: Fallback if version mismatchXavier Claessens1-28/+42
Fixes: #11797
2023-08-14interpreter: use typed_kwargs for shared_library(darwin_versions)Dylan Baker2-0/+45
2023-08-14interpreter: use typed_kwargs for shared_library(soversion)Dylan Baker2-0/+2
2023-08-14interpreter: use typed_kwargs for shared_library(version)Dylan Baker2-3/+17
2023-08-11treewide: automatic rewriting of all comment-style type annotationsEli Schwartz1-1/+1
Performed using https://github.com/ilevkivskyi/com2ann This has no actual effect on the codebase as type checkers (still) support both and negligible effect on runtime performance since __future__ annotations ameliorates that. Technically, the bytecode would be bigger for non function-local annotations, of which we have many either way. So if it doesn't really matter, why do a large-scale refactor? Simple: because people keep wanting to, but it's getting nickle-and-dimed. If we're going to do this we might as well do it consistently in one shot, using tooling that guarantees repeatability and correctness. Repeat with: ``` com2ann mesonbuild/ ```
2023-08-10allow some ObjectHolder subclasses to continue to be genericEli Schwartz1-4/+14
ExternalProgram and CustomTarget have some use cases for producing subclassed interpreter holders with more specific types and methods. In order for those subclasses to properly refer to their held_object, we need a shared base class that is still generic, though bound. For the derived held objects, inherit from the base class and specify the final types as the module-specific type.
2023-08-08interpreter: delete dead code in func_declare_dependencyDylan Baker1-3/+0
2023-08-08interpreter: add type annotations to func_declare_dependencyDylan Baker2-3/+22
2023-08-07Compiler: Add werror kwarg to compiles(), links() and run() methodsXavier Claessens1-27/+29
Fixes: #5399
2023-08-05fixup: since: 1.1.0 -> 1.3.0Milan Hauth1-1/+1
2023-08-05compiler: Add required keyword to has_* methodsXavier Claessens1-40/+100
add the "required" keyword to the functions has_function has_type has_member has_members has_argument has_multi_arguments has_link_argument has_multi_link_argument has_function_attribute Co-authored-by: Milan Hauth <milahu@gmail.com>
2023-08-04Add default_options argument to find_program()Nomura2-5/+11
2023-08-03run_command: Remove useless node argumentXavier Claessens1-4/+3
There is no need to pass it, we already have self.current_node.
2023-08-02convert booleans in summary function to correct representationEli Schwartz1-3/+6
str() is going to return titlecased "True" which is not how meson works. This is misleading, so use the meson-specific format instead.
2023-08-02Unify message(), format() and fstring formattingXavier Claessens2-23/+19
Share a common function to convert objects to display strings for consistency. While at it, also add support for formatting user options.
2023-07-26Fix install_data() default install pathDaniele Nicolodi1-10/+18
This fixes two issues in constructing the default installation path when install_dir is not specified: - inside a subproject, install_data() would construct the destination path using the parent project name instead than the current project name, - when specifying preserve_path, install_data() would construct the destination path omitting the project name. Fixes #11910.
2023-07-26interpreter: Remove redundant commentDaniele Nicolodi1-1/+0
The function name adheres to the pattern used by many other Meson DSL implementation methods, thus stating that this is the implementation of the functionality without argument validation is not very useful. The docstring is separated from the function declaration by a blank line. Removing the docstring avoids having to decide if the blank line should be there or not.
2023-07-25make 'gui_app' an interpreter only conceptDylan Baker1-0/+12
Since it's deprecated anyway, we don't really want to plumb it all the way down into the build and backend layers. Instead, we can just turn it into a `win_subsystem` value in the interpreter if `win_subsystem` isn't already set.
2023-07-25interpreter: use typed_kwargs for Executable(win_subsystem)Dylan Baker3-2/+15
2023-07-25interpreter: use typed_kwargs for gui_appDylan Baker3-4/+6
2023-07-24interpreter: fix typing for adding testsEli Schwartz1-1/+3
We know exactly what type we need, since the interpreter function is correctly typed and thinly wraps over this. But we didn't even get the container type correct. :(
2023-07-24interpreter: stop setting member out of initializer that isn't even usedDylan Baker1-1/+0
2023-07-21Prevent summary displaying timestamp twiceCharles Brunet1-2/+2
Before: [117.000] Subprojects [117.000] OptelMessagingApi : [117.000] YES [117.000] Python27 : [117.000] YES [117.000] op300rtos : [117.000] YES [117.000] optel-common-protos: [117.000] YES After: [38.938] Subprojects [38.938] OptelMessagingApi : YES [38.938] Python27 : YES [38.938] op300rtos : YES [38.938] optel-common-protos: YES
2023-07-20interpreter: deprecate 'jar' value of build_target(target_type)Dylan Baker1-1/+5
Jar has a very low set of overlap with other target types, including that jar sources *must* be .java, and no other target allows .java sources. As such, the difficulty in crafting a useful `build_target` invocation that allows both `jar` and anything else is high, and the usefulness is dubious. Just use `jar()` directly instead. This depends on the changes to make all of the jar() specific keyword arguments be handled by typed_kwargs so that the deprecation messages are correct and consistent.
2023-07-20interpreter: use kwarginfo for build_target(target_type)Dylan Baker3-11/+17
Which lets us remove a bunch of validation code
2023-07-20interpreter: use typed_kwargs for jar(java_resources)Dylan Baker2-1/+3
With the added bonus of adding the correct `since` checking values!
2023-07-20build|interpreter: move main_class to typed_kwargsDylan Baker2-2/+5
Also move it into the Jar class. This is an exclusive Jar keyword argument, and is only used inside java paths, so there's no reason to have this in all build targets.
2023-07-20interpreter: use type_checking defined target argument listsDylan Baker2-9/+90
This moves to a list of shared objects inside the type_checking module. This is based on my experience of fully typing all of these functions several times, and will make it easier to slowly land all of the changes we want to make.