Open ariddell opened 8 years ago
I don't know if protoc with proton support is standard every/anywhere (e.g.-Ubuntu)---I think not, so this will break everything. :/
On Tue, Mar 8, 2016 at 2:25 PM, Allen Riddell notifications@github.com wrote:
protoc now needs to be findable in the current PATH.
If protoc is not on the current PATH one will need to do something like
PROTOC=./lib/protobuf/src/protoc make test
(this is part of the Makefile cleanup)
You can view, comment on, or merge this pull request online at:
https://github.com/sakrejda/protostan/pull/48 Commit Summary
- Enumerate .proto files to be transplied
File Changes
- M Makefile https://github.com/sakrejda/protostan/pull/48/files#diff-0 (12)
- M README.md https://github.com/sakrejda/protostan/pull/48/files#diff-1 (4)
Patch Links:
- https://github.com/sakrejda/protostan/pull/48.patch
- https://github.com/sakrejda/protostan/pull/48.diff
— Reply to this email directly or view it on GitHub https://github.com/sakrejda/protostan/pull/48.
I just followed Google's protobuf install instructions. I think we should at minimum figure out a way to support the official install instructions.
I'll fix the failing build in a second.
What's proton support?
ha, proto3
On Tue, Mar 8, 2016 at 2:46 PM, Allen Riddell notifications@github.com wrote:
What's proton support?
— Reply to this email directly or view it on GitHub https://github.com/sakrejda/protostan/pull/48#issuecomment-193938903.
I hate spellcheck on this mac...
On Tue, Mar 8, 2016 at 2:46 PM, Allen Riddell notifications@github.com wrote:
What's proton support?
— Reply to this email directly or view it on GitHub https://github.com/sakrejda/protostan/pull/48#issuecomment-193938903.
I'm thinking about this repo as providing a library, like boost or stan-math. PyStan and cmdstan-protostan, for example, would ship the generated .pb.cc
files with releases, so nobody would need to worry about having protoc
. Getting proto3 support is a challenge but in a year I think there's going to be no problem. We can talk more on Friday about this as well.
OK. It's passing. I have another PR that builds on this one but I thought it might be easiest to break them up.
protoc
now needs to be findable in the currentPATH
.If
protoc
is not on the current PATH one will need to do something likePROTOC=./lib/protobuf/src/protoc make test
(this is part of the Makefile cleanup)