1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
[binaries]
# Meson 0.53.2 doesn't use any cflags when doing basic compiler tests,
# so we have to add -nostdlib to the compiler configuration itself or
# early compiler tests will fail. This can be removed when picolibc
# requires at least version 0.54.2 of meson.
c = ['msp430-elf-gcc', '-nostdlib']
cpp = ['msp430-elf-g++', '-nostdlib']
ar = 'msp430-elf-ar'
as = 'msp430-elf-as'
nm = 'msp430-elf-nm'
strip = 'msp430-elf-strip'
[host_machine]
system = 'zephyr'
cpu_family = 'msp430'
cpu = 'msp430'
endian = 'little'
[properties]
skip_sanity_check = true
libgcc = ['-lmul_none', '-lgcc']
default_alignment = 2
|