diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-11-15 22:47:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-15 22:47:51 +0200 |
commit | c104251d2ef1ca1c4b8caea52fa6ab2da1dbaefe (patch) | |
tree | 0beb5ebae4bdbaf8e2385f644e7e6a8c406d0213 /docs/markdown/snippets | |
parent | 6a2dc7576e00e849510f7bc1f939d66d0b2f6f80 (diff) | |
parent | 0ab27add49cedb6f5985dfba7ba40c8d29ae91dc (diff) | |
download | meson-c104251d2ef1ca1c4b8caea52fa6ab2da1dbaefe.zip meson-c104251d2ef1ca1c4b8caea52fa6ab2da1dbaefe.tar.gz meson-c104251d2ef1ca1c4b8caea52fa6ab2da1dbaefe.tar.bz2 |
Merge pull request #4216 from dcbaker/wip/config-file
native file support
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/native_files.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/markdown/snippets/native_files.md b/docs/markdown/snippets/native_files.md new file mode 100644 index 0000000..7bc3644 --- /dev/null +++ b/docs/markdown/snippets/native_files.md @@ -0,0 +1,15 @@ +## 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. |