-
Notifications
You must be signed in to change notification settings - Fork 1.7k
howtox
Jussi Pakkanen edited this page Jul 1, 2016
·
16 revisions
This page lists code snippets for common tasks. These are written mostly using the C compiler, but the same approach should work on almost all other compilers.
When first running Meson, set it in an environment variable.
CC=mycc meson <options>
The behaviour is the same as with other build systems, with environment variables during first invocation.
CFLAGS=-fsomething LDFLAGS=-Wl,--linker-flag meson <options>
First check which arguments to use.
if meson.get_compiler('c').get_id() == 'clang'
extra_args = ['-fclang-flag']
else
extra_args = []
endif
Then use it in a target.
executable(..., c_args : extra_args)
If you want to use the arguments on all targets, then do this.
if meson.get_compiler('c').get_id() == 'clang'
add_global_arguments('-fclang-flag', language : 'c')
endif
All documentation is now on the main web site.
This page should be at this address.