[libcxx-commits] [libcxx] [libcxx] Use the default rune table when using the LLVM libc (PR #106632)
via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Aug 29 14:20:29 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libcxx
Author: Joseph Huber (jhuber6)
<details>
<summary>Changes</summary>
Summary:
We currently do not provide a more complicated run table, so we want the
default.
---
Full diff: https://github.com/llvm/llvm-project/pull/106632.diff
1 Files Affected:
- (modified) libcxx/include/__config (+1-1)
``````````diff
diff --git a/libcxx/include/__config b/libcxx/include/__config
index 9dd8d46b48d28f..b8ec905a5cbfa6 100644
--- a/libcxx/include/__config
+++ b/libcxx/include/__config
@@ -888,7 +888,7 @@ typedef __char32_t char32_t;
# endif
# if defined(__BIONIC__) || defined(__NuttX__) || defined(__Fuchsia__) || defined(__wasi__) || \
- defined(_LIBCPP_HAS_MUSL_LIBC) || defined(__OpenBSD__)
+ defined(_LIBCPP_HAS_MUSL_LIBC) || defined(__OpenBSD__) || defined(__LLVM_LIBC__)
# define _LIBCPP_PROVIDES_DEFAULT_RUNE_TABLE
# endif
``````````
</details>
https://github.com/llvm/llvm-project/pull/106632
More information about the libcxx-commits
mailing list