Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
Bitcoin Cash Node
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
4
Snippets
Groups
Projects
Show more breadcrumbs
Bitcoin Cash Node
Bitcoin Cash Node
Commits
4a8036c0
Verified
Commit
4a8036c0
authored
2 months ago
by
Marius Kjærstad
Browse files
Options
Downloads
Patches
Plain Diff
Update Ubuntu and Debian build guide
parent
4b729ce7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/build-unix-deb.md
+10
-4
10 additions, 4 deletions
doc/build-unix-deb.md
with
10 additions
and
4 deletions
doc/build-unix-deb.md
+
10
−
4
View file @
4a8036c0
...
...
@@ -6,10 +6,10 @@ about obtaining the required version of `cmake`.
## Preparation
Minimal build requirements
Minimal build requirements
:
```
bash
sudo
apt-get
install
build-essential cmake git libboost-chrono-dev libboost-filesystem-dev libboost-test-dev libboost-thread-dev libevent-dev libminiupnpc-dev libnatpmp-dev libssl-dev libzmq3-dev help2man ninja-build python3 libgmp-dev zlib1g-dev
sudo
apt-get
-y
install
build-essential cmake git libboost-chrono-dev libboost-filesystem-dev libboost-test-dev libboost-thread-dev libevent-dev libminiupnpc-dev libnatpmp-dev libssl-dev libzmq3-dev help2man ninja-build python3 libgmp-dev zlib1g-dev
```
You can do without the
`libminiupnpc-dev`
,
`libnatpmp-dev`
,
`libzmq3-dev`
, and
`help2man`
...
...
@@ -19,19 +19,25 @@ packages, then you just need to respectively pass `-DENABLE_UPNP=OFF`, `-DENABLE
BerkeleyDB 5.3 or later is required for the wallet. This can be installed with:
```
bash
sudo
apt-get
install
libdb-dev libdb++-dev
sudo
apt-get
-y
install
libdb-dev libdb++-dev
```
If you want to build the GUI client
`bitcoin-qt`
Qt 5 is necessary.
To build with Qt 5 you need the following packages installed:
```
bash
sudo
apt-get
install
libqrencode-dev qttools5-dev
sudo
apt-get
-y
install
libqrencode-dev qttools5-dev
```
You can do without the
`libqrencode`
package, just pass
`-DENABLE_QRCODE=OFF`
on the cmake command line.
Install all dependencies:
```
bash
sudo
apt-get
-y
install
build-essential cmake git libboost-chrono-dev libboost-filesystem-dev libboost-test-dev libboost-thread-dev libevent-dev libminiupnpc-dev libnatpmp-dev libssl-dev libzmq3-dev help2man ninja-build python3 libgmp-dev zlib1g-dev libdb-dev libdb++-dev libqrencode-dev qttools5-dev
```
## Building
Once you have installed the required dependencies (see sections above), you can
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment