diff options
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index a9d24326960..7d7f03a40f8 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -3187,8 +3187,8 @@ class CppMapping(Mapping): def __init__(self, options=[]): Mapping.Config.__init__(self, options) - # if self.buildConfig == platform.getDefaultBuildConfig(): - # self.buildConfig = "cpp98-shared" + if self.buildConfig == platform.getDefaultBuildConfig(): + self.buildConfig = "cpp98-shared" # Derive from the build config the cpp11 option. This is used by canRun to allow filtering # tests on the cpp11 value in the testcase options specification |