diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-09-22 23:11:59 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-09-22 23:11:59 +0300 |
commit | 0cf4a6ab3aa3672d74091e28f6535477794d9839 (patch) | |
tree | b0a2069e5e5bb28d8a92fe0c59d7f100128402d2 /docs/markdown/snippets/visibility.md | |
parent | d1f3f1d023566a54dfc65dc6067a0416b7353dff (diff) | |
download | meson-0.48.0.tar.gz |
Updated release note page.0.48.0
Diffstat (limited to 'docs/markdown/snippets/visibility.md')
-rw-r--r-- | docs/markdown/snippets/visibility.md | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/docs/markdown/snippets/visibility.md b/docs/markdown/snippets/visibility.md deleted file mode 100644 index bbb99f1c9..000000000 --- a/docs/markdown/snippets/visibility.md +++ /dev/null @@ -1,13 +0,0 @@ -## Keyword argument for GNU symbol visibility - -Build targets got a new keyword, `gnu_symbol_visibility` that controls -how symbols are exported from shared libraries. This is most commonly -used to hide implementation symbols like this: - -```meson -shared_library('mylib', ... - gnu_symbol_visibility: 'hidden') -``` - -In this case only symbols explicitly marked as visible in the source -files get exported. |