1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
[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 = ['or1k-unknown-elf-gcc', '-nostdlib']
cpp = ['or1k-unknown-elf-g++', '-nostdlib']
ar = 'or1k-unknown-elf-ar'
as = 'or1k-unknown-elf-as'
nm = 'or1k-unknown-elf-nm'
strip = 'or1k-unknown-elf-strip'
exe_wrapper = ['sh', '-c', 'test -z "$PICOLIBC_TEST" || run-or1k "$@"', 'run-or1k']
[host_machine]
system = 'none'
cpu_family = 'or1k'
cpu = 'or1k'
endian = 'little'
[properties]
skip_sanity_check = true
default_flash_addr = '0x00000000'
default_flash_size = '0x00400000'
default_ram_addr = '0x00400000'
default_ram_size = '0x00400000'
|