[libcxx-commits] [libcxx] [libcxx] Add `LIBCXX_HAS_TERMINAL_AVAILABLE` CMake option to disable `print` terminal checks (PR #99259)
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Aug 14 08:28:17 PDT 2024
================
@@ -97,6 +97,7 @@ option(LIBCXX_ENABLE_UNICODE
"Whether to include support for Unicode in the library. Disabling Unicode can
be useful when porting to platforms that don't support UTF-8 encoding (e.g.
embedded)." ON)
+option(LIBCXX_HAS_TERMINAL_AVAILABLE "Build libc++ with terminal checking support" ON)
----------------
ldionne wrote:
```suggestion
option(LIBCXX_ENABLE_TERMINAL_SUPPORT "Build libc++ with support for checking whether a stream is a terminal." ON)
```
https://github.com/llvm/llvm-project/pull/99259
More information about the libcxx-commits
mailing list