-
Notifications
You must be signed in to change notification settings - Fork 191
update installation doc #1683
New issue
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
update installation doc #1683
Conversation
| #### Notes on upgrading versions generally: | ||
|
|
||
| If you just want the latest version in a new directory, go to the [releases](https://github.com/AdamISZ/joinmarket-clientserver/releases) page. | ||
| Binary executables (of JoinmarketQt) are currently being built only for Windows, please verify the signature on the .exe file attached to the release. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
latest JM release don't have these, so removed it
|
|
||
| (to build `libsodium` after): | ||
|
|
||
| git clone git@github.com:jedisct1/libsodium.git |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this doesn't work
so changed it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, HTTPS is safer option for read-only access, for git@github.com to work, some additional configuration is needed.
| git checkout 490022745164b56439688b0fc04f9bd43578e5c3 | ||
| make clean | ||
| ./autogen.sh | ||
| ./configure --prefix JM_ROOT --enable-module-recovery --disable-jni --enable-experimental --enable-module-ecdh --enable-benchmark=no |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
--disable-jni this is an unrecognized option
related #1657
docs/INSTALL.md
Outdated
| git clone git@github.com:bitcoin-core/secp256k1 | ||
| git clone https://github.com/bitcoin-core/secp256k1.git | ||
| cd secp256k1 | ||
| git checkout 490022745164b56439688b0fc04f9bd43578e5c3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also, is this ok?
it's a very old commit
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, should be changed to git checkout v0.4.1, to match install.sh.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
kristapsk
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK 6e33686
.