https://github.com/fspv/bitcoin-build
Build tools for bitcoin repo
https://github.com/fspv/bitcoin-build
Last synced: 2 months ago
JSON representation
Build tools for bitcoin repo
- Host: GitHub
- URL: https://github.com/fspv/bitcoin-build
- Owner: fspv
- Created: 2021-11-04T00:56:32.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-12-06T15:58:11.000Z (over 3 years ago)
- Last Synced: 2025-01-10T12:16:56.075Z (4 months ago)
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Build tools for bitcoin repo
Here are some scripts to build [bitcoin repo](https://github.com/bitcoin/bitcoin).
## Install vagrant
Use this [manual](https://www.vagrantup.com/docs/installation)
## Build Vagrant VM
1. Check out bitcoin repo:
```bash
git clone https://github.com/bitcoin/bitcoin
```
2. CD into bitcoin repo root. Copy `Vagrantfile` from this repo.
3. Build VM: `vagrant up`.
4. SSH intor vm: `vagrant ssh`
6. Now you can build bitcoin source:
```bash
cd /vagrant
./autogen.sh
./configure
make -j 8
make -j 8 check
```The separate user is created to prevent setting incorrect file permissions on the host.