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.
16 lines
493 B
16 lines
493 B
project('trivial test', 'c') |
|
|
|
if host_machine.system() == 'cygwin' |
|
error('MESON_SKIP_TEST _FILE_OFFSET_BITS not yet supported on Cygwin.') |
|
endif |
|
|
|
cc = meson.get_compiler('c') |
|
|
|
size = cc.sizeof('off_t') |
|
assert(size == 8, 'off_t size is @0@ bytes instead of 8'.format(size)) |
|
|
|
code = '''#if !defined(_FILE_OFFSET_BITS) || (_FILE_OFFSET_BITS != 64) |
|
#error "Large-file support was not enabled" |
|
#endif''' |
|
|
|
assert(cc.compiles(code, name : 'checking for LFS'), 'Large file support was not enabled')
|
|
|