summaryrefslogtreecommitdiffstats
path: root/test cases/linuxlike/10 large file support/meson.build
blob: 66833456c2fcba7d0f42b9e8bbcd0d9bfae1f2f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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')