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.
14 lines
390 B
14 lines
390 B
7 years ago
|
## Keyword argument for symbol visibility
|
||
|
|
||
|
Build targets got a new keyword, `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', ...
|
||
|
symbol_visibility: 'hidden')
|
||
|
```
|
||
|
|
||
|
In this case only symbols explicitly marked as visible in the source
|
||
|
files get exported.
|