1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-24 00:56:14 +00:00

[meson] -std=c++17 added to extracflags

This commit is contained in:
Witold Filipczyk 2022-02-22 22:23:59 +01:00
parent af86fdd75b
commit e25654404c

View File

@ -133,7 +133,7 @@ conf_data.set10('HAVE_SYS_TIME_H', 1)
compiler = meson.get_compiler('c')
if conf_data.get('CONFIG_ECMASCRIPT')
extracflags = ['-xc++', '-fpermissive', '-Wno-sign-compare']
extracflags = ['-xc++', '-fpermissive', '-Wno-sign-compare', '-std=c++17']
else
extracflags = ['-Wc++-compat']
endif