Anyone getting problems with Node 11?
# general
q
Anyone getting problems with Node 11?
Copy code
../deps/grpc/src/core/ext/transport/chttp2/transport/flow_control.cc: In member function ‘virtual uint32_t grpc_core::chttp2::TransportFlowControl::MaybeSendUpdate(bool)’:
../deps/grpc/src/core/ext/transport/chttp2/transport/flow_control.cc:193:50: error: type qualifiers ignored on cast result type [-Werror=ignored-qualifiers]
       static_cast<const uint32_t>(target_window());
                                                  ^
cc1plus: all warnings being treated as errors
i
are you using gcc8?
q
Ah, I see the GitHub issue now
Yeah,
8.2.1
i
yeah, so there are unfortunately two issues here: 1 ) upstream gRPC doesn’t provide prebuilt binaries for Node 11 yet and 2) upstream gRPC doesn’t compile with gcc >8
q
Fun 🙂
i
we’re going to release an updated Node package that works with Node 11 really soon (maybe even today?) but in order to fix the compilation error, you’ll probably need to install a gcc <7 or any version of clang and set that to be CC/CXX to get gRPC to compile.
yeah… 😞
q
I'll drop down to Node 10 👍
Thanks for your help
i
no problem!