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.
25 lines
511 B
25 lines
511 B
# This file assumes that path to the Texas Instruments MSP430 toolchain is added |
|
# to the environment(PATH) variable, so that Meson can find |
|
# cl430 and ar430 while building. |
|
[binaries] |
|
c = cl430 |
|
ar = ar430 |
|
strip = strip430 |
|
|
|
[host_machine] |
|
system = 'baremetal' |
|
cpu_family = 'msp430' |
|
endian = 'little' |
|
|
|
[built-in options] |
|
c_args = [ |
|
'-vmsp', |
|
'--printf_support=minimal'] |
|
c_link_args = [ |
|
'--rom_model', |
|
'-llibc.a',] |
|
cpp_args = [] |
|
cpp_link_args = [] |
|
|
|
[properties] |
|
needs_exe_wrapper = true
|
|
|