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
In order to compile Mash on Ubuntu 20.04 LTS I had to make the following changes:
In configure:
Line 2009 - Change the path because apt installs capnp to /usr/bin/ and not /usr/local/bin/: with_capnp=/usr/
/usr/bin/
/usr/local/bin/
with_capnp=/usr/
In Makefile:
Line 40 - These are the correct paths of these files on x86_64 Ubuntu: /usr/lib/x86_64-linux-gnu/libcapnp.a /usr/lib/x86_64-linux-gnu/libkj.a
/usr/lib/x86_64-linux-gnu/libcapnp.a /usr/lib/x86_64-linux-gnu/libkj.a
With these changes it compiled without errors. I didn't try it yet, but I think it should work..
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In order to compile Mash on Ubuntu 20.04 LTS I had to make the following changes:
In configure:
Line 2009 - Change the path because apt installs capnp to
/usr/bin/
and not/usr/local/bin/
:with_capnp=/usr/
In Makefile:
Line 40 - These are the correct paths of these files on x86_64 Ubuntu:
/usr/lib/x86_64-linux-gnu/libcapnp.a /usr/lib/x86_64-linux-gnu/libkj.a
With these changes it compiled without errors. I didn't try it yet, but I think it should work..
The text was updated successfully, but these errors were encountered: