diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-10-12 09:53:35 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-10-12 09:53:35 +0000 |
commit | 1b9327f332035fb35ddaf5159ae1ae6913f25ca8 (patch) | |
tree | 18508984fe1782a730c4781f038fc46ed4d9e0dd /libcxx/test | |
parent | 1c3203a2c15ceef01765c47ae910a6d61f8286c8 (diff) | |
download | bcm5719-llvm-1b9327f332035fb35ddaf5159ae1ae6913f25ca8.tar.gz bcm5719-llvm-1b9327f332035fb35ddaf5159ae1ae6913f25ca8.zip |
support --param=std=gnu++XX
llvm-svn: 283997
Diffstat (limited to 'libcxx/test')
-rw-r--r-- | libcxx/test/libcxx/test/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/libcxx/test/config.py b/libcxx/test/libcxx/test/config.py index 06d3a7bdd81..a786c3f690e 100644 --- a/libcxx/test/libcxx/test/config.py +++ b/libcxx/test/libcxx/test/config.py @@ -347,7 +347,7 @@ class Configuration(object): 'Failed to infer a supported language dialect from one of %r' % possible_stds) self.cxx.compile_flags += ['-std={0}'.format(std)] - self.config.available_features.add(std) + self.config.available_features.add(std.replace('gnu++', 'c++')) # Configure include paths self.configure_compile_flags_header_includes() self.target_info.add_cxx_compile_flags(self.cxx.compile_flags) |