|
| 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 | +``` |
0 commit comments