[libcxx-commits] [PATCH] D62874: Fix libc++'s lit configuration language dialect inference for GCC 5 and GCC 6
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Jul 22 09:24:16 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL366700: [libc++] Do not infer support for C++17 in GCC < 7 (authored by ldionne, committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D62874?vs=203002&id=211129#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D62874/new/
https://reviews.llvm.org/D62874
Files:
libcxx/trunk/utils/libcxx/test/config.py
Index: libcxx/trunk/utils/libcxx/test/config.py
===================================================================
--- libcxx/trunk/utils/libcxx/test/config.py
+++ libcxx/trunk/utils/libcxx/test/config.py
@@ -524,6 +524,7 @@
maj_v = int(maj_v)
if maj_v < 7:
possible_stds.remove('c++1z')
+ possible_stds.remove('c++17')
# FIXME: How many C++14 tests actually fail under GCC 5 and 6?
# Should we XFAIL them individually instead?
if maj_v <= 6:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D62874.211129.patch
Type: text/x-patch
Size: 569 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20190722/882c7bb8/attachment.bin>
More information about the libcxx-commits
mailing list