Lines Matching full:cc
25 if cc.has_header(header)
39 if cc.has_header_symbol('float.h', symbol)
45 if cc.has_header_symbol('math.h', symbol)
66 if cc.has_function(function)
70 conf.set10('HAVE_DOPRNT', cc.has_function('_doprnt'))
73 if cc.has_header_symbol('stdio.h', f)
78 size = cc.sizeof('size_t', prefix: '#include <stddef.h>')
81 if cc.get_argument_syntax() == 'msvc'
82 size = cc.sizeof('SSIZE_T', prefix: '#include <BaseTsd.h>')
84 size = cc.sizeof('ssize_t', prefix: '#include <sys/types.h>')
89 size = cc.sizeof(type, prefix: '#include <stdint.h>')
93 if cc.links('int main(){__sync_synchronize();}', name: 'atomic builtins')
97 if cc.compiles('static __thread int x = 0;', name: '__thread')
103 elif cc.get_argument_syntax() == 'msvc'