File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed
Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 4444 - name : Install libuv
4545 run : |
4646 conda activate py376_build
47- curl https://dist.libuv.org/dist/v1.38.0 /libuv-v1.38.0 .tar.gz --output libuv-v1.38.0 .tar.gz
48- tar xzvf libuv-v1.38.0 .tar.gz
49- cd libuv-v1.38.0
47+ curl https://dist.libuv.org/dist/v1.49.2 /libuv-v1.49.2 .tar.gz --output libuv-v1.49.2 .tar.gz
48+ tar xzvf libuv-v1.49.2 .tar.gz
49+ cd libuv-v1.49.2
5050 mkdir -p build
5151 cd build
5252 mkdir -p ${{ env.libuv_path }}
Original file line number Diff line number Diff line change @@ -54,9 +54,9 @@ if(MSVC)
5454 message (STATUS "Set USE_NCCL OFF" )
5555 set (USE_RCCL OFF )
5656 message (STATUS "Set USE_RCCL OFF" )
57- set (USE_LIBUV OFF )
58- message (STATUS "Set USE_LIBUV OFF " )
59- # message(STATUS "Only USE_LIBUV is supported on Windows")
57+ set (USE_LIBUV ON )
58+ message (STATUS "Set USE_LIBUV ON " )
59+ message (STATUS "Only USE_LIBUV is supported on Windows" )
6060
6161 if (BUILD_BENCHMARK)
6262 message (FATAL_ERROR "BUILD_BENCHMARK is not supported on Windows yet" )
Original file line number Diff line number Diff line change 2020
2121namespace gloo {
2222
23- enum LogLevel {
24- ERROR,
25- WARN,
26- INFO,
27- DEBUG,
28- UNSET,
23+ enum class LogLevel : std:: int8_t {
24+ ERROR = 0 ,
25+ WARN = 1 ,
26+ INFO = 2 ,
27+ DEBUG = 3 ,
28+ UNSET = - 1 ,
2929};
3030
3131LogLevel logLevel ();
You can’t perform that action at this time.
0 commit comments