aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/FAQ.md
diff options
context:
space:
mode:
authorMathieu Duponchelle <mathieu@centricular.com>2018-03-24 23:44:50 +0100
committerMathieu Duponchelle <mathieu@centricular.com>2018-04-06 23:48:48 +0200
commit31f0242a6fad3f15dc42f81927b5627c73516958 (patch)
treeed05c9eb260a825fa3c8659a9d2789568c28d154 /docs/markdown/FAQ.md
parentaef1a81b3586aeb48988b60fbeaef5c19e112c45 (diff)
downloadmeson-31f0242a6fad3f15dc42f81927b5627c73516958.zip
meson-31f0242a6fad3f15dc42f81927b5627c73516958.tar.gz
meson-31f0242a6fad3f15dc42f81927b5627c73516958.tar.bz2
new wrap-mode: forcefallback
This can be useful to make sure that a project builds when its fallbacks are used on systems where external dependencies satisfy the version requirements, or to easily hack on the sources of a dependency for which a fallback exists.
Diffstat (limited to 'docs/markdown/FAQ.md')
-rw-r--r--docs/markdown/FAQ.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/markdown/FAQ.md b/docs/markdown/FAQ.md
index f4cf89b..dffef8a 100644
--- a/docs/markdown/FAQ.md
+++ b/docs/markdown/FAQ.md
@@ -288,3 +288,9 @@ has a option called `wrap-mode` which can be used to disable wrap
downloads altogether with `--wrap-mode=nodownload`. You can also
disable dependency fallbacks altogether with `--wrap-mode=nofallback`,
which also implies the `nodownload` option.
+
+If on the other hand, you want meson to always use the fallback
+for dependencies, even when an external dependency exists and could
+satisfy the version requirements, for example in order to make
+sure your project builds when fallbacks are used, you can use
+`--wrap-mode=forcefallback`.