1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
[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 = ['mips64-linux-gnuabi64-gcc', '-nostdlib']
cpp = ['mips64-linux-gnuabi64-g++', '-nostdlib']
ar = 'mips64-linux-gnuabi64-ar'
as = 'mips64-linux-gnuabi64-as'
ld = 'mips64-linux-gnuabi64-ld'
nm = 'mips64-linux-gnuabi64-nm'
strip = 'mips64-linux-gnuabi64-strip'
[host_machine]
system = 'linux'
cpu_family = 'mips'
cpu = 'mips64'
endian = 'big'
[properties]
skip_sanity_check = true
link_spec = '--build-id=none'
specs_extra = ['*libgcc:', '-lgcc']
|