Skip to content

Commit 49a5c52

Browse files
committed
Address comments
1 parent 769a7e8 commit 49a5c52

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

libcxx/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ option(LIBCXX_ENABLE_UNICODE
9797
"Whether to include support for Unicode in the library. Disabling Unicode can
9898
be useful when porting to platforms that don't support UTF-8 encoding (e.g.
9999
embedded)." ON)
100+
option(LIBCXX_HAS_TERMINAL_AVAILABLE "Build libc++ with terminal checking support" ON)
100101
option(LIBCXX_ENABLE_WIDE_CHARACTERS
101102
"Whether to include support for wide characters in the library. Disabling
102103
wide character support can be useful when porting to platforms that don't
@@ -297,7 +298,6 @@ option(LIBCXX_HAS_WIN32_THREAD_API "Ignore auto-detection and force use of win32
297298
option(LIBCXX_HAS_EXTERNAL_THREAD_API
298299
"Build libc++ with an externalized threading API.
299300
This option may only be set to ON when LIBCXX_ENABLE_THREADS=ON." OFF)
300-
option(LIBCXX_HAS_TERMINAL_AVAILABLE "Build libc++ with terminal checking support" ON)
301301

302302
if (LIBCXX_ENABLE_THREADS)
303303
set(LIBCXX_PSTL_BACKEND "std_thread" CACHE STRING "Which PSTL backend to use")

libcxx/utils/libcxx/test/features.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,7 @@ def _mingwSupportsModules(cfg):
378378
"_LIBCPP_HAS_NO_FILESYSTEM": "no-filesystem",
379379
"_LIBCPP_HAS_NO_RANDOM_DEVICE": "no-random-device",
380380
"_LIBCPP_HAS_NO_LOCALIZATION": "no-localization",
381+
"_LIBCPP_HAS_NO_TERMINAL": "no-terminal",
381382
"_LIBCPP_HAS_NO_WIDE_CHARACTERS": "no-wide-characters",
382383
"_LIBCPP_HAS_NO_TIME_ZONE_DATABASE": "no-tzdb",
383384
"_LIBCPP_HAS_NO_UNICODE": "libcpp-has-no-unicode",

0 commit comments

Comments
 (0)