diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2018-03-10 15:31:30 +0000 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-03-11 00:51:18 +0200 |
commit | 64bc2b84f809a6e9afea61c43246c728be6faa0d (patch) | |
tree | 94a2e44a3c20a89a0ea6ba2903079e1825e8eac2 | |
parent | fa0386d98abbb8058bdfb89d6a2e48627eb02f67 (diff) | |
download | meson-64bc2b84f809a6e9afea61c43246c728be6faa0d.zip meson-64bc2b84f809a6e9afea61c43246c728be6faa0d.tar.gz meson-64bc2b84f809a6e9afea61c43246c728be6faa0d.tar.bz2 |
docs: update system cross file documentation
Works on all non-Windows since cf98f5e3 (PR #3119)
-rw-r--r-- | docs/markdown/Cross-compilation.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Cross-compilation.md b/docs/markdown/Cross-compilation.md index c1ad317..520a081 100644 --- a/docs/markdown/Cross-compilation.md +++ b/docs/markdown/Cross-compilation.md @@ -261,7 +261,7 @@ myvar = meson.get_cross_property('somekey') ## Cross file locations As of version 0.44.0 meson supports loading cross files from system locations -on Linux and the BSDs. This will be $XDG_DATA_DIRS/meson/cross, or if +(except on Windows). This will be $XDG_DATA_DIRS/meson/cross, or if XDG_DATA_DIRS is undefined, then /usr/local/share/meson/cross and /usr/share/meson/cross will be tried in that order, for system wide cross files. User local files can be put in $XDG_DATA_HOME/meson/cross, or @@ -272,7 +272,7 @@ The order of locations tried is as follows: - The user local location - The system wide locations in order -Linux and BSD distributions are encouraged to ship cross files either with +Distributions are encouraged to ship cross files either with their cross compiler toolchain packages or as a standalone package, and put them in one of the system paths referenced above. |