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.
13 lines
375 B
13 lines
375 B
8 years ago
|
project('trivial test', 'c')
|
||
|
|
||
|
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')
|