aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)AuthorFilesLines
2021-01-10Hotdoc: use template for Commands.md instead of generating the entire file ↵Eli Schwartz2-80/+28
(#8154) * doc: fix hotdoc misuse for dynamically generated content hotdoc has a native include feature for including files inline. Use this to generate one file for each dynamically generated code block, and include that file in Commands.md; see: https://hotdoc.github.io/syntax-extensions.html#smart-file-inclusion-syntax This permits us to move back to using the in-tree version of the hotdoc *.md sources, thus fixing the incorrect inclusion of "builddir/" in the "Edit on github" links which resulted from using copies as the source. Fixes #8061 * doc: call the dummy file a "stamp" as it is a better known term
2021-01-06Merge pull request #7860 from dcbaker/wip/2020-10/rust-moduleJussi Pakkanen7-27/+74
Add a rust module
2021-01-05modules: Add an unstable-rust moduleDylan Baker5-27/+69
Like other language specific modules this module is module for holding rust specific helpers. This commit adds a test() function, which simplifies using rust's internal unittest mechanism. Rust tests are generally placed in the same code files as they are testing, in contrast to languages like C/C++ and python which generally place the tests in separate translation units. For meson this is somewhat problematic from a repetition point of view, as the only changes are generally adding --test, and possibly some dependencies. The rustmod.test() method provides a mechanism to remove the repatition: it takes a rust target, copies it, and then addes the `--test` option, then creates a Test() target with the `rust` protocol. You can pass additional dependencies via the `dependencies` keyword. This all makes for a nice, DRY, test definition.
2021-01-05Fix last mention of Python 3.5. [skip ci]Jussi Pakkanen1-49/+56
2021-01-05mtest: Add support for rust unit testsDylan Baker2-0/+5
Rust has it's own built in unit test format, which is invoked by compiling a rust executable with the `--test` flag to rustc. The tests are then run by simply invoking that binary. They output a custom test format, which this patch adds parsing support for. This means that we can report each subtest in the junit we generate correctly, which should be helpful for orchestration systems like gitlab and jenkins which can parse junit XML.
2021-01-03doc: restore accidentally removed images used in Getting-meson.md [skip ci]Eli Schwartz3-0/+0
Broken in commit 8a11cf357eaae46fd7efbb9993c0bb00e9529a13 Fixes #8148
2020-12-22Add simple start page for beginners. [skip ci]Jussi Pakkanen15-0/+170
2020-12-17Revert "add owl chess in Users.md [skip ci]"Eli Schwartz1-1/+0
This reverts commit 7092efabb5a0488b694418c823463048ddbb310c. No longer exists. See: https://github.com/mesonbuild/meson/pull/7592#issuecomment-747817950
2020-12-15Merge pull request #7902 from bonzini/mtest-build-depends-onlyJussi Pakkanen1-0/+17
mtest: only build what is needed for the tests
2020-12-15docs: Update link to libspng [skip ci]Jean-Michel Gorius1-1/+1
libspng moved from Gitlab to Github. Update the link to point to the new location.
2020-12-14doc: fix typos for doubled words [skip ci]Eli Schwartz1-2/+2
"more more" is one place where we don't need more. Fixes #8097
2020-12-14mtest: only build what is needed for the testsPaolo Bonzini1-0/+17
It is a usual workflow to fix something and retest to see if it is fixed using a particular test. When tests start to become numerous, it becomes time consuming for "meson test" to relink all of them (and in fact rebuild the whole project) where the user has already specified the tests they want to run, as well as the tests' dependencies. Teach meson to be smart and only build what is needed for the test (or suite) that were specified. Fixes: #7473 Related: #7830
2020-12-11CI: Move all remaining jobs from travis-ci to GHAChristoph Reiter2-9/+0
Some changes: * Set HOME to /root, since github mounts its own HOME and 'wine' (because of permissions) and 'dub' (can't find packages) don't like that. * Remove the seccomp option, doesn't seem to be needed.
2020-12-10compilers: add support for c++20/gnu++20Florian Schmaus2-2/+2
Fixes #8084.
2020-12-10pkgconfig: Respect variable ordering when passed as listXavier Claessens1-1/+2
This fix a regression introduced in Meson 0.56.0 when using python 3.5. Also mention in documentation that using a meson dict does not guarantee ordering. Fixes: #8074.
2020-12-10docs: fix "edit on GitHub" linksThomas Weißschuh1-1/+1
2020-12-03Add prelinking support for static libraries.Jussi Pakkanen2-0/+10
2020-11-29Update Vala Preprocessor section in documentation. Closes: #8040 [skip ci]Jerry Casiano1-1/+7
2020-11-24compiler: allow non-built internal dependencies as argumentsPaolo Bonzini1-0/+6
Allow methods on the compiler object to receive internal dependencies, as long as they only specify compiler/linker arguments or other dependencies that satisfy the same requirements. This is useful if you're using internal dependencies to add special "-D" flags such as -DNCURSES_WIDECHAR, -D_XOPEN_SOURCE_EXTENDED or -DGLIB_STATIC_COMPILATION.
2020-11-23add dependency recommendation [skip ci]Michael Brockus1-0/+8
Co-authored-by: Eli Schwartz <eschwartz@archlinux.org>
2020-11-22doc: fix confusing use of "build" as a directory argument [skip ci]Eli Schwartz3-9/+9
In most places, we now refer to "builddir/" which is a lot less likely to make people think it is a subcommand which needs to be used literally. This is a regression since commit 276d342ebaf859dd53e145ead3e98e2cebb360ab due to the existence of new docs which were added later on, using the wrong form.
2020-11-21Handle cmake dependencies which require a specified versionJason Ekstrand2-0/+10
Some CMake packages fail to find at all if no version is specified. This commit adds a cmake_version parameter to dependency() to allow you to specify the requested version.
2020-11-18Merge pull request #7894 from obilaniu/cudaupdatesJussi Pakkanen1-14/+7
Update unstable CUDA Module to support newest toolkits and drivers.
2020-11-18Update Tutorial.md [skip ci]Michael Brockus1-12/+38
2020-11-17Revert "Add thinlto support. Closes #7493."Jussi Pakkanen1-27/+0
This reverts commit 3e6fbde94c1cb8d4e01b7daf0282c315ff0e6c7d.
2020-11-17doc: add much-needed accuracy to pip installation instructions [skip ci]Eli Schwartz1-2/+7
- mention installing from local sources, not PyPI - warn against --user installs, which too often screw up users that then cannot install projects because ~/.local won't be in sudo's PYTHONPATH - advise installing with sudo -- current versions of pip assume --user for you rather than failing with permission errors, which is great unless, like meson, there are compelling reasons to need to install as root
2020-11-14Add doc on how to add the [provide] entry to wrapdb entries. [skip ci]Jussi Pakkanen1-41/+69
2020-11-12doc: fix typo [skip ci]Eli Schwartz1-1/+1
2020-11-12interpreter: Add get_keys function for configuration_data (#7887)Jones2-0/+10
2020-11-08Add thinlto support. Closes #7493.Jussi Pakkanen1-0/+27
2020-11-05Update documentation for CUDA module.Olexa Bilaniuk1-14/+7
2020-11-05docs: Recommend to use SPDX license identifiers [skip ci]Michael Weiss1-7/+8
Some license identifiers are ambiguous (e.g. "GPL3"). The SPDX license identifiers avoid this by providing standardized and unique identifiers (e.g. "GPL-3.0-only" or "GPL-3.0-or-later" for the previous example). Because SPDX short-form identifiers are also both human- and machine-readable we should recommend them in the documentation. More information (advantages, details, etc.) can be found here: - https://spdx.dev/resources/use/#identifiers - https://spdx.dev/ids/ Fix #7905.
2020-11-05rust: implement support for --editionDylan Baker1-0/+5
Using the std option, so now `rust_std=..` will work. I've chosen to use "std" even though rust calls these "editions", as meson refers to language versions as "standards", which makes meson feel more uniform, and be less surprising. Fixes: #5100
2020-11-05docs: Fix broken anchor links [skip ci]Johan Bjäreholt1-2/+2
Apparently anchor links are case-sensitive and needs to be lowercase in hotdoc. Prior to this change the anchor links were uppercase so the link did not refer to the anchor tag. Likely that there are more occurrences around the docs than this, have not looked.
2020-11-04qt module: fix error message typo, translation qresource accepts qm not tsEli Schwartz1-1/+2
Fixes #7925
2020-10-30Bump minimum supported Python version to 3.6. Closes #6297.Jussi Pakkanen1-0/+6
2020-10-30Bump version number for release. This is the 10 000th commit!0.56.0Jussi Pakkanen29-323/+358
2020-10-22Syntax.md: Fix variable used in substring exampleDanilo Spinella1-2/+2
2020-10-19fix markdown issuePaolo Bonzini1-1/+1
2020-10-16Fix consistency in variables kwargXavier Claessens3-2/+15
Share common code to extract the `variables` kwarg in declare_dependency() and pkg.generate().
2020-10-15intro: Add extra_files key to intro output (fixes #7310)Daniel Mensinger2-0/+10
2020-10-14Merge pull request #6968 from xclaesse/auto-promoteJussi Pakkanen4-22/+21
Merge wraps from subprojects into wraps from main project
2020-10-14vs: add static_from_buildtype to b_vscrtPeter Harris1-12/+12
2020-10-13Add wrap mode to disable auto promoteXavier Claessens3-2/+11
2020-10-13Merge wraps from subprojects into wraps from main projectXavier Claessens2-21/+11
wraps from subprojects are now merged into the list of wraps from main project, so they can be used to download dependencies of dependencies instead of having to promote wraps manually. If multiple projects provides the same wrap file, the first one to be configured wins. This also fix usage of sub-subproject that don't have wrap files. We can now configure B when its source tree is at `subprojects/A/subprojects/B/`. This has the implication that we cannot assume that subproject "foo" is at `self.subproject_dir / 'foo'` any more.
2020-10-13include_type: Add CMake subporject dependency method (fixes #6879)Daniel Mensinger2-1/+9
2020-10-13Merge pull request #7816 from mensinda/cmCrossJussi Pakkanen3-0/+102
cmake: Cross compilation support
2020-10-13mtest: Allow filtering tests by subprojectNirbheek Chauhan1-0/+18
You could always specify a list of tests to run by passing the names as arguments to `meson test`. If there were multiple tests with that name (in the same project or different subprojects), all of them would be run. Now you can: 1. Run all tests with the specified name from a specific subproject: `meson test subprojname:testname` 1. Run all tests defined in a specific subproject: `meson test subprojectname:` Also forbid ':' in test names. We already forbid this elsewhere, so should not be a big deal.
2020-10-13cmake: Add cross docsDaniel Mensinger3-0/+102
2020-10-13msubprojects: Handle wrap-file to wrap-git caseXavier Claessens2-1/+9