We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I solved my previous issue with options #83 ( with @E-B-Smith help, big thanks! ). But, however, I want to know something.
( Bug of feature? )
In objectivec-descriptor.proto we have import statement: import "google/protobuf/descriptor.proto";
import "google/protobuf/descriptor.proto";
In example we have another import statement. import "objectivec-descriptor.proto";
import "objectivec-descriptor.proto";
For satisfying all conditions you need this compiler invocation:
protoc --plugin=/usr/local/bin/protoc-gen-objc --proto_path="path_to/protobuf-objc/src/compiler/" --proto_path="path_to/protobuf-objc/src/compiler/google/protobuf/" --proto_path='./' pony.proto --objc_out="./"
Or in descriptive version:
Maybe it is better to change google/protobuf/descriptor.proto to descriptor.proto?
google/protobuf/descriptor.proto
descriptor.proto
Or it is much better to leave only one proto_path from protobuf ( top path )?
--proto_path="path_to/protobuf-objc/src/compiler/"
And all statements will be relative to this path. google/protobuf/objectivec-descriptor.proto and google/protobuf/descriptor.proto
google/protobuf/objectivec-descriptor.proto
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I solved my previous issue with options #83 ( with @E-B-Smith help, big thanks! ).
But, however, I want to know something.
( Bug of feature? )
In objectivec-descriptor.proto we have import statement:
import "google/protobuf/descriptor.proto";
In example we have another import statement.
import "objectivec-descriptor.proto";
For satisfying all conditions you need this compiler invocation:
Or in descriptive version:
Maybe it is better to change
google/protobuf/descriptor.proto
todescriptor.proto
?Or it is much better to leave only one proto_path from protobuf ( top path )?
--proto_path="path_to/protobuf-objc/src/compiler/"
And all statements will be relative to this path.
google/protobuf/objectivec-descriptor.proto
andgoogle/protobuf/descriptor.proto
The text was updated successfully, but these errors were encountered: