aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2023-12-16 12:13:46 +0000
committerDimitry Andric <dim@FreeBSD.org>2023-12-16 12:16:39 +0000
commitd0c6c55d9fb02ec38d5525aab1dab583ded772a2 (patch)
tree5ad9e06636e8955f4d1db2aa4a4c991dfabfb119
parentc97cad275aa98c50f53bec1a8a0ae4b207e2e02e (diff)
devel/electron25: fix build with libc++ 17
Building www/qt6-webengine with libc++ 17 results in the following compile errors: In file included from ../../base/allocator/dispatcher/reentry_guard.cc:9: In file included from ../../base/debug/crash_logging.h:16: In file included from ../../base/strings/string_number_conversions.h:15: In file included from ../../base/containers/span.h:19: ../../base/containers/checked_iterators.h:248:8: error: no template named '__is_cpp17_contiguous_iterator'; did you mean '__libcpp_is_contiguous_iterator'? 248 | struct __is_cpp17_contiguous_iterator<::base::CheckedContiguousIterator<T>> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | __libcpp_is_contiguous_iterator /usr/include/c++/v1/__iterator/iterator_traits.h:476:8: note: '__libcpp_is_contiguous_iterator' declared here 476 | struct __libcpp_is_contiguous_iterator : _Or< | ^ This is because the copy of chromium in electron25 is missing an upstream fix for recent libc++ changes, in particular: https://chromium.googlesource.com/chromium/src/+/9bfbbffdba73668fdb483e5a850911d2b64c35d7 and its dependency: https://chromium.googlesource.com/chromium/src/+/5b5551edd3961481e617e510276b9f015a35b861 Apply these patches to work around the compile error. Reported by: Rainer Hurling <rhurlin@gwdg.de> Tested by: Rainer Hurling <rhurlin@gwdg.de>
-rw-r--r--devel/electron25/files/patch-base_containers_checked__iterators.h75
1 files changed, 75 insertions, 0 deletions
diff --git a/devel/electron25/files/patch-base_containers_checked__iterators.h b/devel/electron25/files/patch-base_containers_checked__iterators.h
new file mode 100644
index 000000000000..a5ad942a78cf
--- /dev/null
+++ b/devel/electron25/files/patch-base_containers_checked__iterators.h
@@ -0,0 +1,75 @@
+--- base/containers/checked_iterators.h.orig 2023-08-12 07:07:10 UTC
++++ base/containers/checked_iterators.h
+@@ -24,6 +24,9 @@ class CheckedContiguousIterator {
+ using pointer = T*;
+ using reference = T&;
+ using iterator_category = std::random_access_iterator_tag;
++#if __cplusplus >= 202002L
++ using iterator_concept = std::contiguous_iterator_tag;
++#endif
+
+ // Required for converting constructor below.
+ template <typename U>
+@@ -31,10 +34,8 @@ class CheckedContiguousIterator {
+
+ // Required for certain libc++ algorithm optimizations that are not available
+ // for NaCl.
+-#if defined(_LIBCPP_VERSION) && !BUILDFLAG(IS_NACL)
+ template <typename Ptr>
+ friend struct std::pointer_traits;
+-#endif
+
+ constexpr CheckedContiguousIterator() = default;
+
+@@ -224,7 +225,6 @@ using CheckedContiguousConstIterator = CheckedContiguo
+
+ } // namespace base
+
+-#if defined(_LIBCPP_VERSION) && !BUILDFLAG(IS_NACL)
+ // Specialize both std::__is_cpp17_contiguous_iterator and std::pointer_traits
+ // for CCI in case we compile with libc++ outside of NaCl. The former is
+ // required to enable certain algorithm optimizations (e.g. std::copy can be a
+@@ -242,13 +242,35 @@ using CheckedContiguousConstIterator = CheckedContiguo
+ // [1] https://wg21.link/iterator.concept.contiguous
+ // [2] https://wg21.link/std.iterator.tags
+ // [3] https://wg21.link/pointer.traits.optmem
+-namespace std {
+
++#if defined(_LIBCPP_VERSION)
++
++// TODO(crbug.com/1284275): Remove when C++20 is on by default, as the use
++// of `iterator_concept` above should suffice.
++_LIBCPP_BEGIN_NAMESPACE_STD
++
++// TODO(crbug.com/1449299): https://reviews.llvm.org/D150801 renamed this from
++// `__is_cpp17_contiguous_iterator` to `__libcpp_is_contiguous_iterator`. Clean
++// up the old spelling after libc++ rolls.
+ template <typename T>
++struct __is_cpp17_contiguous_iterator;
++template <typename T>
+ struct __is_cpp17_contiguous_iterator<::base::CheckedContiguousIterator<T>>
+ : true_type {};
+
+ template <typename T>
++struct __libcpp_is_contiguous_iterator;
++template <typename T>
++struct __libcpp_is_contiguous_iterator<::base::CheckedContiguousIterator<T>>
++ : true_type {};
++
++_LIBCPP_END_NAMESPACE_STD
++
++#endif
++
++namespace std {
++
++template <typename T>
+ struct pointer_traits<::base::CheckedContiguousIterator<T>> {
+ using pointer = ::base::CheckedContiguousIterator<T>;
+ using element_type = T;
+@@ -267,6 +289,5 @@ struct pointer_traits<::base::CheckedContiguousIterato
+ };
+
+ } // namespace std
+-#endif
+
+ #endif // BASE_CONTAINERS_CHECKED_ITERATORS_H_