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
It says
running make in the root directory of the capnproto-java repository should build capnpc-java.
but Makefile has: CAPNP_CXX_FLAGS=-I $(CAPNP_PREFIX)/include -L $(CAPNP_PREFIX)/lib -lkj -lcapnp
Makefile
CAPNP_CXX_FLAGS=-I $(CAPNP_PREFIX)/include -L $(CAPNP_PREFIX)/lib -lkj -lcapnp
There is no include dir in capnproto: there is capnp: https://github.com/capnproto/capnproto/tree/v2/c%2B%2B/src One could build it with
include
capnp
make CAPNP_CXX_FLAGS="-I path_to_src -L path_to_libs -lkj -lcapnp -o capnpc-java"
but this is not very obvious.
And even this command builds dynamic executable (unlike capnpc itself which is static) which is not very convenient.
capnpc
I wish we had something like
PATH_TO_CAPNP_SRC=../some/path make
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It says
but
Makefile
has:CAPNP_CXX_FLAGS=-I $(CAPNP_PREFIX)/include -L $(CAPNP_PREFIX)/lib -lkj -lcapnp
There is no
include
dir in capnproto: there iscapnp
: https://github.com/capnproto/capnproto/tree/v2/c%2B%2B/srcOne could build it with
but this is not very obvious.
And even this command builds dynamic executable (unlike
capnpc
itself which is static) which is not very convenient.I wish we had something like
The text was updated successfully, but these errors were encountered: