Skip to content

Commit 23f87e3

Browse files
authored
docs: add basic clean virtualised linux install and build notes (tari-project#784)
Description Add basic docs and script for linux install and builds Motivation and Context Help with builds from a common point
1 parent 42452d4 commit 23f87e3

File tree

5 files changed

+183
-0
lines changed

5 files changed

+183
-0
lines changed

.license.ignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
./CODEOWNERS
22
./LICENSE
33
./applications/tari_indexer/src/substate_storage_sqlite/schema.rs
4+
./buildtools/vagrant/Vagrantfile
45
./comms/tari_comms_logging/src/schema.rs
56
./dan_layer/storage_sqlite/src/global/schema.rs
67
./dan_layer/state_store_sqlite/src/schema.rs

buildtools/build-notes.md

+119
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
## Build Notes we don't want to lose?
2+
3+
Build options:
4+
- Native
5+
- Docker
6+
- Virtualised
7+
- Emulated
8+
9+
# Building Linux x86_64 & ARM64
10+
11+
Using Vagrant and VirtualBox has a baseline for building needs, including tools, libs and testing
12+
13+
Linux ARM64 can be built using Vagrant and VirtualBox or Docker and cross
14+
15+
# Prep Ubuntu for development
16+
# From - https://github.com/tari-project/tari-dan/blob/development/scripts/install_ubuntu_dependencies.sh
17+
```bash
18+
sudo apt-get update
19+
sudo DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends --assume-yes \
20+
apt-transport-https \
21+
ca-certificates \
22+
curl \
23+
gpg \
24+
openssl \
25+
libssl-dev \
26+
pkg-config \
27+
libsqlite3-dev \
28+
git \
29+
cmake \
30+
dh-autoreconf \
31+
libc++-dev \
32+
libc++abi-dev \
33+
libprotobuf-dev \
34+
protobuf-compiler \
35+
libncurses5-dev \
36+
libncursesw5-dev \
37+
build-essential \
38+
zip
39+
```
40+
41+
# Install rust
42+
```bash
43+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
44+
```
45+
# or unattended rust install
46+
```bash
47+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
48+
```
49+
50+
```bash
51+
source "$HOME/.cargo/env"
52+
```
53+
54+
# Install wasm prerequisite
55+
```bash
56+
rustup target add wasm32-unknown-unknown
57+
```
58+
59+
# Install nodejs prerequisite
60+
```bash
61+
export NODE_MAJOR=20
62+
sudo mkdir -p /etc/apt/keyrings
63+
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | \
64+
sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
65+
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_${NODE_MAJOR}.x nodistro main" | \
66+
sudo tee /etc/apt/sources.list.d/nodesource.list
67+
68+
sudo apt-get update
69+
70+
sudo DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends --assume-yes \
71+
nodejs
72+
```
73+
74+
# Prep Ubuntu for cross-compile aarch64/arm64 on x86_64
75+
```bash
76+
sudo DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends --assume-yes \
77+
pkg-config-aarch64-linux-gnu \
78+
gcc-aarch64-linux-gnu \
79+
g++-aarch64-linux-gnu
80+
```
81+
82+
# Prep rust for cross-compile aarch64/arm64 on x86_64
83+
```bash
84+
rustup target add aarch64-unknown-linux-gnu
85+
rustup toolchain install stable-aarch64-unknown-linux-gnu
86+
```
87+
88+
# Check was tools chains rust has in place
89+
```bash
90+
rustup target list --installed
91+
rustup toolchain list
92+
```
93+
94+
# get/git the code base
95+
```bash
96+
mkdir -p ~/src
97+
cd ~/src
98+
git clone git@github.com:tari-project/tari-dan.git
99+
cd tari-dan
100+
```
101+
102+
# Build Testing
103+
```bash
104+
cargo build \
105+
--target aarch64-unknown-linux-gnu \
106+
--bin tari_dan_wallet_cli
107+
```
108+
109+
# Build target Release
110+
```bash
111+
cargo build --locked --release \
112+
--target aarch64-unknown-linux-gnu
113+
```
114+
115+
# Using a single command line build using Docker
116+
```bash
117+
cross build --locked --release \
118+
--target aarch64-unknown-linux-gnu
119+
```

buildtools/vagrant/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.vagrant
2+
*.log

buildtools/vagrant/Vagrantfile

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# -*- mode: ruby -*-
2+
# vi: set ft=ruby :
3+
4+
Vagrant.configure("2") do |config|
5+
config.vm.box = "ubuntu/bionic64"
6+
7+
# Disable automatic box update checking. If you disable this, then
8+
# boxes will only be checked for updates when the user runs
9+
# `vagrant box outdated`. This is not recommended.
10+
# config.vm.box_check_update = false
11+
config.vm.box_check_update = false
12+
13+
# https://subscription.packtpub.com/book/virtualization_and_cloud/9781786464910/1/ch01lvl1sec12/enabling-virtualbox-guest-additions-in-vagrant
14+
# vagrant vbguest --status
15+
# vagrant vbguest --do install
16+
if Vagrant.has_plugin?("vagrant-vbguest") then
17+
config.vbguest.auto_update = false
18+
end
19+
20+
# Share an additional folder to the guest VM. The first argument is
21+
# the path on the host to the actual folder. The second argument is
22+
# the path on the guest to mount the folder. And the optional third
23+
# argument is a set of non-required options.
24+
# config.vm.synced_folder "../data", "/vagrant_data"
25+
26+
# virtualbox settings
27+
config.vm.provider :virtualbox do |vb|
28+
vb.cpus = 4
29+
vb.memory = 6*1024
30+
vb.gui = false
31+
vb.linked_clone = true
32+
end
33+
34+
# Enable provisioning with a shell script. Additional provisioners such as
35+
# Ansible, Chef, Docker, Puppet and Salt are also available. Please see the
36+
# documentation for more information about their specific syntax and use.
37+
# config.vm.provision "shell", inline: <<-SHELL
38+
# apt-get update
39+
# apt-get install -y apache2
40+
# SHELL
41+
end
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
apt-get install --no-install-recommends --assume-yes \
2+
apt-transport-https \
3+
ca-certificates \
4+
curl \
5+
gpg \
6+
openssl \
7+
libssl-dev \
8+
pkg-config \
9+
libsqlite3-dev \
10+
git \
11+
cmake \
12+
dh-autoreconf \
13+
libc++-dev \
14+
libc++abi-dev \
15+
libprotobuf-dev \
16+
protobuf-compiler \
17+
libncurses5-dev \
18+
libncursesw5-dev \
19+
build-essential \
20+
zip

0 commit comments

Comments
 (0)