File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ option(LIBCXX_ENABLE_UNICODE
97
97
"Whether to include support for Unicode in the library. Disabling Unicode can
98
98
be useful when porting to platforms that don't support UTF-8 encoding (e.g.
99
99
embedded)." ON )
100
+ option (LIBCXX_HAS_TERMINAL_AVAILABLE "Build libc++ with terminal checking support" ON )
100
101
option (LIBCXX_ENABLE_WIDE_CHARACTERS
101
102
"Whether to include support for wide characters in the library. Disabling
102
103
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
297
298
option (LIBCXX_HAS_EXTERNAL_THREAD_API
298
299
"Build libc++ with an externalized threading API.
299
300
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 )
301
301
302
302
if (LIBCXX_ENABLE_THREADS )
303
303
set (LIBCXX_PSTL_BACKEND "std_thread" CACHE STRING "Which PSTL backend to use" )
Original file line number Diff line number Diff line change @@ -378,6 +378,7 @@ def _mingwSupportsModules(cfg):
378
378
"_LIBCPP_HAS_NO_FILESYSTEM" : "no-filesystem" ,
379
379
"_LIBCPP_HAS_NO_RANDOM_DEVICE" : "no-random-device" ,
380
380
"_LIBCPP_HAS_NO_LOCALIZATION" : "no-localization" ,
381
+ "_LIBCPP_HAS_NO_TERMINAL" : "no-terminal" ,
381
382
"_LIBCPP_HAS_NO_WIDE_CHARACTERS" : "no-wide-characters" ,
382
383
"_LIBCPP_HAS_NO_TIME_ZONE_DATABASE" : "no-tzdb" ,
383
384
"_LIBCPP_HAS_NO_UNICODE" : "libcpp-has-no-unicode" ,
You can’t perform that action at this time.
0 commit comments