The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
402 B
13 lines
402 B
## 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.
|
|
|