diff options
| author | Eric Fiselier <eric@efcs.ca> | 2017-04-20 20:22:19 +0000 |
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2017-04-20 20:22:19 +0000 |
| commit | 91bd4d9048a96a2be01a24019dd815eef498959e (patch) | |
| tree | fdfe1ea6751f5af370e68643d3828f83d6b3aa9e | |
| parent | 49f1c3297bccea315ded8424da24d76a5072efb6 (diff) | |
| download | bcm5719-llvm-91bd4d9048a96a2be01a24019dd815eef498959e.tar.gz bcm5719-llvm-91bd4d9048a96a2be01a24019dd815eef498959e.zip | |
Fix comment and remove incorrect linker flags in test configuration
llvm-svn: 300881
| -rw-r--r-- | libcxx/utils/libcxx/test/config.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py index c9a3629f885..bd99e8ddd97 100644 --- a/libcxx/utils/libcxx/test/config.py +++ b/libcxx/utils/libcxx/test/config.py @@ -414,7 +414,11 @@ class Configuration(object): if self.is_windows: self.config.available_features.add('windows') if self.cxx_stdlib_under_test == 'libc++': - # LIBCXX-WINDOWS-FIXME is a + # LIBCXX-WINDOWS-FIXME is the feature name used to XFAIL the + # initial Windows failures until they can be properly diagnosed + # and fixed. This allows easier detection of new test failures + # and regressions. Note: New failures should not be suppressed + # using this feature. self.config.available_features.add('LIBCXX-WINDOWS-FIXME') # Attempt to detect the glibc version by querying for __GLIBC__ @@ -482,8 +486,6 @@ class Configuration(object): self.cxx.flags += ['-m32'] # Use verbose output for better errors self.cxx.flags += ['-v'] - if self.is_windows: - self.cxx.link_flags += ['-Wl,-v'] sysroot = self.get_lit_conf('sysroot') if sysroot: self.cxx.flags += ['--sysroot', sysroot] |

