diff options
author | xarkes <xarkes@users.noreply.github.com> | 2017-10-02 21:18:36 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-10-03 01:15:30 +0300 |
commit | a28db4577a36bf53f09e439f2032f28eb9cd7079 (patch) | |
tree | 4327a8867bbb2f994b15e67fd0fd7b4cb9de0977 /docs | |
parent | 9483875798bb6842769a0b3d52635ff950ea11a7 (diff) | |
download | meson-a28db4577a36bf53f09e439f2032f28eb9cd7079.zip meson-a28db4577a36bf53f09e439f2032f28eb9cd7079.tar.gz meson-a28db4577a36bf53f09e439f2032f28eb9cd7079.tar.bz2 |
Fix typo and clarify library documentation
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/Reference-manual.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 3bdd3c5..86ad15e 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -820,10 +820,11 @@ static with only one option. The keyword arguments for this are the same as for [`executable`](#executable) with the following additions: -- `name_prefix` the string that will be used as the suffix for the +- `name_suffix` the string that will be used as the suffix for the target by overriding the default (only used for libraries). By default this is `lib` on all platforms and compilers except with - MSVC where it is omitted. + MSVC where it is omitted and set to `a` to avoid potential name clash + with shared libraries (which also generates `lib` files). - `rust_crate_type` specifies the crate type for Rust libraries. Defaults to `dylib` for shared libraries and `rlib` for static libraries. |