fspv / bitcoin-build

Build tools for bitcoin repo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build tools for bitcoin repo

Here are some scripts to build bitcoin repo.

Install vagrant

Use this manual

Build Vagrant VM

  1. Check out bitcoin repo:
    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
  5. Now you can build bitcoin source:
    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.

About

Build tools for bitcoin repo