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.
7 lines
342 B
7 lines
342 B
6 years ago
|
## Position-independent executables
|
||
|
|
||
|
When `b_pie` option, or `executable()`'s `pie` keyword argument is set to
|
||
|
`true`, position-independent executables are built. All their objects are built
|
||
|
with `-fPIE` and the executable is linked with `-pie`. Any static library they
|
||
|
link must be built with `pic` set to `true` (see `b_staticpic` option).
|