wscript: silence MSVC tgmath nonsense

This commit is contained in:
Alibek Omarov 2019-11-05 09:41:26 +03:00
parent 15924aebaa
commit 39abd82e5d
1 changed files with 2 additions and 0 deletions

View File

@ -254,6 +254,8 @@ def configure(conf):
# check if we can use C99 tgmath
if conf.check_cc(header_name='tgmath.h', mandatory=False):
if conf.env.COMPILER_CC == 'msvc':
conf.define('_CRT_SILENCE_NONCONFORMING_TGMATH_H', 1)
tgmath_usable = conf.check_cc(fragment='''#include<tgmath.h>
int main(void){ return (int)sin(2.0f); }''',
msg='Checking if tgmath.h is usable', mandatory=False)