File tree Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -146,6 +146,7 @@ jobs:
146
146
' generic-no-experimental' ,
147
147
' generic-no-filesystem' ,
148
148
' generic-no-localization' ,
149
+ ' generic-no-terminal' ,
149
150
' generic-no-random_device' ,
150
151
' generic-no-threads' ,
151
152
' generic-no-tzdb' ,
Original file line number Diff line number Diff line change @@ -97,7 +97,8 @@ 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
+ option (LIBCXX_HAS_TERMINAL_AVAILABLE
101
+ "Build libc++ with support for checking whether a stream is a terminal." ON )
101
102
option (LIBCXX_ENABLE_WIDE_CHARACTERS
102
103
"Whether to include support for wide characters in the library. Disabling
103
104
wide character support can be useful when porting to platforms that don't
Original file line number Diff line number Diff line change
1
+ set (LIBCXX_HAS_TERMINAL_AVAILABLE OFF CACHE BOOL "" )
2
+
3
+ # Speed up the CI
4
+ set (LIBCXX_TEST_PARAMS "enable_modules=clang" CACHE STRING "" )
5
+ set (LIBCXXABI_TEST_PARAMS "${LIBCXX_TEST_PARAMS} " CACHE STRING "" )
Original file line number Diff line number Diff line change @@ -469,6 +469,11 @@ generic-no-localization)
469
469
generate-cmake -C " ${MONOREPO_ROOT} /libcxx/cmake/caches/Generic-no-localization.cmake"
470
470
check-runtimes
471
471
;;
472
+ generic-no-terminal)
473
+ clean
474
+ generate-cmake -C " ${MONOREPO_ROOT} /libcxx/cmake/caches/Generic-no-terminal.cmake"
475
+ check-runtimes
476
+ ;;
472
477
generic-no-unicode)
473
478
clean
474
479
generate-cmake -C " ${MONOREPO_ROOT} /libcxx/cmake/caches/Generic-no-unicode.cmake"
You can’t perform that action at this time.
0 commit comments