aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets
AgeCommit message (Collapse)AuthorFilesLines
2020-03-23Fix legacy env var support with crossJohn Ericson1-0/+12
Fix #3969
2020-03-22Add property to disable compiler sanity checks during cross compilation.Jussi Pakkanen1-0/+9
2020-03-21-Add xc16 and c2000 C,Cpp toolchain supportalanNz1-0/+8
2020-03-19mtest: terminate a test via SIGTERM first then (if needed) via SIGKILLCamilo Celis Guzman1-0/+6
2020-03-19cmake: Add find_package COMPONETS supportDaniel Mensinger1-0/+4
2020-03-17envconfig: Make compiler and linker environment variables matchDylan Baker1-0/+7
2020-03-12docs: Update documentation for GDC linker overridingDylan Baker1-4/+6
2020-03-12docs: Document that ldc now supports linker overriding [skip ci]Dylan Baker1-0/+5
2020-03-09Merge pull request #6532 from jon-turney/languages-native-kwargJussi Pakkanen1-0/+20
Add add_languages(native:)
2020-03-08Merge pull request #6688 from dcbaker/emcc-linker-bugsJussi Pakkanen2-0/+11
Emcc linker bugs and improvments
2020-03-08qt5: Add has_tools() methodXavier Claessens1-0/+10
2020-03-06Simplify dependency() fallbackXavier Claessens1-0/+6
Now that subprojects can override the dependency name, there is no need to provide a variable name for the fallback any more.
2020-03-06Add meson.override_dependency()Xavier Claessens1-0/+59
Similar to meson.override_find_program() but overrides the result of the dependency() function. Also ensure that dependency() always returns the same result when looking for the same dependency, this fixes cases where parts of the project could be using a system library and other parts use the library provided by a subproject.
2020-03-04mesonbuild: Add mcompile commandDylan Baker1-0/+21
This is tested working with both msbuild and ninja/samu. Since our xcode support is pretty much broken I didn't bother. Fixes #6670
2020-03-04interpreter: add 'name' method to BuildTargetHolderStéphane Cerveau1-0/+2
As any child of BuildTargetHolder might need the name of the object, provides a method to get object name. This is useful in gst-build to display the plugin name and not the filename.
2020-03-02add -C to meson initMichael1-0/+5
2020-03-01Merge pull request #6692 from xclaesse/summary-warningsJussi Pakkanen1-0/+8
Summary improvements
2020-02-28Add release note snippetJon Turney1-0/+9
2020-02-27compilers/linkers: Add a representation for wasm-ldDylan Baker1-0/+5
Emscripten does have a stand alone linker, wasm-ld. This patch adds the linker, adds detection for the linker, and removes the IsLinkerMixin for emscripten. This is a little more correct, and makes the code a lot cleaner and more robust.
2020-02-27compilers/mixins/emscripten: Implement thread supportDylan Baker1-0/+6
Emscripten has pthread support (as well as C++ threads), but we don't currently implement them. This fixes that by adding the necessary code. The one thing I'm not sure about is setting the pool size. The docs suggest that you really want to do this to ensure that your code works correctly, but the number should really be configurable, not sure how to set that. Fixes #6684
2020-02-26summary: Add more info in Subprojects sectionXavier Claessens1-0/+3
This adds a warnings counter for subprojects that passed. This is to encourage developpers to check warnings in the logs and hopefully fix them. Otherwise they could be hidden in hundreds lines of logs. This also print the error message for subprojects that did not pass. The error message is often enough to fix the issue (e.g. missing dependency) and it's easier than searching in the logs why a subproject failed.
2020-02-26summary: Add list_sep keyword argumentXavier Claessens1-0/+5
This allows having lists on a single line instead of having each value aligned on a new line.
2020-02-25Typo fix. [skip ci]Jussi Pakkanen1-1/+1
2020-02-25Document the project policy on mixing build systems. [skip ci]Jussi Pakkanen1-0/+3
2020-02-23Merge pull request #6637 from ↔Jussi Pakkanen1-0/+10
mesonbuild/nirbheek/implement-symbolextractor-windows Implement symbolextractor on windows + some cleanups/fixes
2020-02-22ninjabackend: List PDBs in output list for targetsNirbheek Chauhan1-0/+10
This is more correct, and forces the target(s) to be rebuilt if the PDB files are missing. Increases the minimum required Ninja to 1.7, which is available in Ubuntu 16.04 under backports. We can't do the same for import libraries, because it is impossible for us to know at configure time whether or not an import library will be generated for a given DLL.
2020-02-20Introduce dataonly for the pkgconfig moduleRohan Garg1-0/+15
This allows users to disable writing out the inbuilt variables to the pkg-config file as they might actualy not be required. One reason to have this is for architecture-independent pkg-config files in projects which also have architecture-dependent outputs. For example : https://gitlab.freedesktop.org/wayland/weston/issues/269 Fixes #4011
2020-02-17minstall: Add a new option --quietNirbheek Chauhan1-0/+11
This is a significant speed-up on Windows because terminals are slow to print things out. Speed-up in gst-build on Windows: ``` meson install: before: 5.1 seconds after: 4.0 seconds ```
2020-02-12Add unity block size option.Jussi Pakkanen1-0/+12
2020-02-12Refine behaviour of add_languages() when native: is missingJon Turney1-2/+17
This improves the common case of a simple meson.build which doesn't contain any 'native: true' targets to not require a native compiler when cross-compiling, without needing any changes in the meson.build. v2: Do it the right way around!
2020-02-09Add add_languages(native:)Jon Turney1-0/+5
v2: Retain not using logical-and, to avoid short-circuiting side-effects of add_languages()
2020-02-07Merge pull request #6421 from dcbaker/zlib-system-depJussi Pakkanen1-0/+8
Add a "system" dependency for zlib
2020-02-06Make 'default_library' per-subproject builtin optionXavier Claessens1-0/+15
Currently it's just like if all builtin/base/compiler options are yielding. This patch makes possible to have non-yielding builtin options. The value in is overriden in this order: - Value from parent project - Value from subproject's default_options if set - Value from subproject() default_options if set - Value from command line if set
2020-02-05docMichael Hirsch, Ph.D1-2/+2
2020-02-05add get_external_property to replace get_cross_propertyMichael Hirsch, Ph.D1-3/+5
2020-02-05add meson.get_native_property for native filesMichael Hirsch, Ph.D1-0/+16
This allows Meson native-file [properties] to be used. This avoids the need to call meson from a script file or have a long command line invocation of `meson setup` The method meson.get_native_property('prop', 'fallback') is added. The native file can contain properties like ``` [properties] myprop1 = 'foo' mydir2 = 'lib/custom' ``` Then from within `meson.build` ```meson x1 = meson.get_native_property('myprop1') thedir = meson.get_native_property('mydir2', 'libs') ``` fallback values are optional
2020-02-05Merge pull request #6573 from michaelbadcrumble/add_sample_templatesJussi Pakkanen1-0/+6
Add new Meson sample templates
2020-02-05pkgconfig: Generate -uninstalled.pc filesXavier Claessens1-0/+8
Closes: #3472.
2020-02-02add feature noteMichael1-0/+6
2020-01-31docs: Add snippet for zlib system dependencyDylan Baker1-0/+8
2020-01-27Tell contributors not to write things in the snippet help file. [skip ci]Jussi Pakkanen1-3/+3
2020-01-27Only provide 64 bit MSIs going forward. [skip ci]Jussi Pakkanen1-0/+7
2020-01-26Support multiple args to message() and warning()Xavier Claessens1-0/+4
2020-01-22envconfig: add pkg_config_libdir propertyStéphane Cerveau1-0/+3
In order to unify the use of sysroot in the cross-file, the pkg_config_libdir can now be passed directly in the file.
2020-01-07Prepare new release.0.53.0Jussi Pakkanen16-170/+0
2019-12-22cmake: Fix obeject librariesDaniel Mensinger1-0/+11
This fixes an issue with generated sources and object libraries, as well as an issue on windows with the `link` linker and the vs backend. The last issue is resolved by building the source files multiple times to avoid extracting object files in meson.
2019-12-19summary: Change 'section' to be a kwarg instead of positionalXavier Claessens1-9/+9
Fixes: #6372.
2019-12-19add compiler.get_linker_id() methodMichael Hirsch, Ph.D1-0/+5
this can be useful for if/elif where linker behaviors must be considered. For example, clang with "link" vs gcc with "ld.bfd" etc. ci for compiler.get_linker_id() method doc add @FeatureNew check Co-Authored-By: Daniel Mensinger <daniel@mensinger-ka.de>
2019-12-18python: add embed to the python dependency functionDaniel Mensinger1-0/+4
2019-12-18Merge pull request #4649 from dcbaker/summary-functionJussi Pakkanen1-0/+37
Add a summary() function for configuration summarization