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
Then the build plugin will generate files call foo/bar.grpc.swift and bar/bar.grpc.swift, when compiled these will both result in object files called bar.grpc.swift.o(the path prefix is dropped) which causes compilation to fail.
We currently pass FileNaming=FullPath to the protoc plugins, we should switch to PathToUnderscores instead.
The text was updated successfully, but these errors were encountered:
If two .proto files have the same name, e.g.:
Then the build plugin will generate files call
foo/bar.grpc.swift
andbar/bar.grpc.swift
, when compiled these will both result in object files calledbar.grpc.swift.o
(the path prefix is dropped) which causes compilation to fail.We currently pass
FileNaming=FullPath
to the protoc plugins, we should switch toPathToUnderscores
instead.The text was updated successfully, but these errors were encountered: