diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-02-06 12:18:10 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-08-01 22:00:06 -0700 |
commit | bbba6a7f365f8b7dc7f2d4c3ce7f3e5f4c05fc5e (patch) | |
tree | 4391f82cb4f0264438c3b6fd74ef48f16d1836b8 /cross/armclang.txt | |
parent | af763e093a8172536d96e24901b82edd2e5b2dc9 (diff) | |
download | meson-bbba6a7f365f8b7dc7f2d4c3ce7f3e5f4c05fc5e.zip meson-bbba6a7f365f8b7dc7f2d4c3ce7f3e5f4c05fc5e.tar.gz meson-bbba6a7f365f8b7dc7f2d4c3ce7f3e5f4c05fc5e.tar.bz2 |
Allow setting built-in options from cross/native files
This is like the project options, but for meson builtin options.
The only real differences here have to do with the differences between
meson builtin options and project options. Some meson options can be set
on a per-machine basis (build.pkg_config_path vs pkg_config_path) others
can be set on a per-subproject basis, but should inherit the parent
setting.
Diffstat (limited to 'cross/armclang.txt')
-rw-r--r-- | cross/armclang.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cross/armclang.txt b/cross/armclang.txt index 955b7ef..6146e0d 100644 --- a/cross/armclang.txt +++ b/cross/armclang.txt @@ -7,7 +7,7 @@ cpp = 'armclang' ar = 'armar' strip = 'armar' -[properties] +[built-in options] # The '--target', '-mcpu' options with the appropriate values should be mentioned # to cross compile c/c++ code with armclang. c_args = ['--target=arm-arm-none-eabi', '-mcpu=cortex-m0plus'] |