diff options
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -252,11 +252,9 @@ def configure(conf): lib=['icuio', 'icui18n', 'icudata', 'icuuc'], uselib_store='ICU') - # If ICU version > 75 we need stdc++17, otherwise we stick with stdc++11 + # For ICU version > 75 we need stdc++17 if conf.check_cfg(modversion='icu-i18n') >= '75': conf.env.append_value('CXXFLAGS', '-std=c++17') - else: - conf.env.append_value('CXXFLAGS', '-std=c++11') # libsamplerate conf.check_cfg(package='samplerate', args='--cflags --libs', uselib_store='SAMPLERATE', mandatory=True) |
