You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using nix to create a custom derivation on macOS for building protoc-gen-grpc-web I ran into an issue where the protobuf libraries in nixpkgs are compiled with clang and the Makefile inside javascript/net/grpc/web hardcodes CXX to g++.
It builds fine if CXX is set to clang++ so I would propose changing the Makefile line to read
CXX ?= g++
...
to default to g++ but still allow overrides.
The text was updated successfully, but these errors were encountered:
When using nix to create a custom derivation on macOS for building
protoc-gen-grpc-web
I ran into an issue where the protobuf libraries in nixpkgs are compiled with clang and theMakefile
insidejavascript/net/grpc/web
hardcodes CXX to g++.It builds fine if CXX is set to clang++ so I would propose changing the
Makefile
line to readCXX ?= g++ ...
to default to g++ but still allow overrides.
The text was updated successfully, but these errors were encountered: