File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ set (LIBCXX_ENABLE_STD_MODULES ON CACHE BOOL "" ) # TODO MODULES Remove when enabled automatically.
1
2
set (LIBCXX_ENABLE_WIDE_CHARACTERS OFF CACHE BOOL "" )
Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ export namespace std {
44
44
using std::strtoull;
45
45
46
46
// [c.mb.wcs], multibyte / wide string and character conversion functions
47
- #ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS
48
47
using std::mblen;
48
+ #ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS
49
49
using std::mbstowcs;
50
50
using std::mbtowc;
51
51
using std::wcstombs;
Original file line number Diff line number Diff line change @@ -666,8 +666,11 @@ steps:
666
666
- " **/test-results.xml"
667
667
- " **/*.abilist"
668
668
env :
669
- CC : " clang-${LLVM_HEAD_VERSION}"
670
- CXX : " clang++-${LLVM_HEAD_VERSION}"
669
+ # Note: Modules require and absolute path for clang-scan-deps
670
+ # https://github.com/llvm/llvm-project/issues/61006
671
+ CC : " /usr/lib/llvm-${LLVM_HEAD_VERSION}/bin/clang"
672
+ CXX : " /usr/lib/llvm-${LLVM_HEAD_VERSION}/bin/clang++"
673
+ CMAKE : " /opt/bin/cmake"
671
674
ENABLE_CLANG_TIDY : " On"
672
675
agents :
673
676
queue : " libcxx-builders"
You can’t perform that action at this time.
0 commit comments