<div dir="ltr"><div>Just tried out of main, and and the include tests of a c++11 project fail</div><div> </div><div>Below my fix, if we agree on, I'll make a MR</div><div><br></div><div>diff --git a/config/BuildSystem/config/compilers.py b/config/BuildSystem/config/compilers.py</div>index c96967e..44e4657 100644<br>--- a/config/BuildSystem/config/compilers.py<br>+++ b/config/BuildSystem/config/compilers.py<br>@@ -527,6 +527,8 @@ class Configure(config.base.Configure):<br>         if self.setCompilers.checkCompilerFlag(flag, includes, body+body14):<br>           newflag = getattr(self.setCompilers,LANG+'FLAGS') + ' ' + flag # append flag to the old<br>           setattr(self.setCompilers,LANG+'FLAGS',newflag)<br>+          newflag = getattr(self.setCompilers,LANG+'PPFLAGS') + ' ' + flag # append flag to the old<br>+          setattr(self.setCompilers,LANG+'PPFLAGS',newflag)<br>           cxxdialect = 'C++14'<br>           self.addDefine('HAVE_'+LANG+'_DIALECT_CXX14',1)<br>           self.addDefine('HAVE_'+LANG+'_DIALECT_CXX11',1)<br>@@ -546,6 +548,8 @@ class Configure(config.base.Configure):<br>         if self.setCompilers.checkCompilerFlag(flag, includes, body):<br>           newflag = getattr(self.setCompilers,LANG+'FLAGS') + ' ' + flag # append flag to the old<br>           setattr(self.setCompilers,LANG+'FLAGS',newflag)<br>+          newflag = getattr(self.setCompilers,LANG+'PPFLAGS') + ' ' + flag # append flag to the old<br>+          setattr(self.setCompilers,LANG+'PPFLAGS',newflag)<br>           cxxdialect = 'C++11'<br>           self.addDefine('HAVE_'+LANG+'_DIALECT_CXX11',1)<br>           break<br><br clear="all"><br>-- <br><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature">Stefano</div></div>