Files
RedBear-OS/local/recipes/dev/meson/source/test cases/common/23 endian/meson.build
T

8 lines
170 B
Meson

project('endian check', 'c')
if host_machine.endian() == 'big'
add_global_arguments('-DIS_BE', language : 'c')
endif
test('endiantest', executable('prog', 'prog.c'))