summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/native_files.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-12-09 16:32:12 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2018-12-09 21:58:12 +0200
commit51aaa15bda0e955e45da014ca7720d038219eeff (patch)
tree366e47ee0c92e4e98854317cf513ddfdf3815d63 /docs/markdown/snippets/native_files.md
parentf7e657629fe2e779c9485112eb31632db77db9e7 (diff)
downloadmeson-51aaa15bda0e955e45da014ca7720d038219eeff.tar.gz
Update everything for release 0.49.0
Diffstat (limited to 'docs/markdown/snippets/native_files.md')
-rw-r--r--docs/markdown/snippets/native_files.md15
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/markdown/snippets/native_files.md b/docs/markdown/snippets/native_files.md
deleted file mode 100644
index 7bc3644b4..000000000
--- a/docs/markdown/snippets/native_files.md
+++ /dev/null
@@ -1,15 +0,0 @@
-## Native config files
-
-Native files are the counterpart to cross files, and allow specifying
-information about the build machine, both when cross compiling and when not.
-
-Currently the native files only allow specifying the names of binaries, similar
-to the cross file, for example:
-
-```ini
-[binaries]
-llvm-config = "/opt/llvm-custom/bin/llvm-config"
-```
-
-Will override the llvm-config used for *native* binaries. Targets for the host
-machine will continue to use the cross file.