> For the complete documentation index, see [llms.txt](https://tinyhumans.gitbook.io/openhuman/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tinyhumans.gitbook.io/openhuman/developing/building-rust-core.md).

# Building the Rust Core

Build the Rust core from scratch on a fresh machine.

This page is the contributor-facing reference for compiling the Rust core on a fresh machine.

It covers the **core workspace and its sibling crates**:

* Cargo package: `openhuman`
* Binary: `openhuman-core`
* Library: `openhuman_core`

The root `Cargo.toml` is a virtual workspace whose members are `crates/openhuman-core`, `crates/openhuman-embed`, `crates/openhuman-rpc`, and `crates/openhuman-tui`. `crates/openhuman-app` (the Tauri desktop shell) is excluded from that workspace and builds from its own manifest.

If you want the full desktop app (`pnpm dev`, Tauri, frontend tooling), use [Getting Set Up](/openhuman/developing/getting-set-up.md). That path has extra JavaScript, submodule, and desktop-runtime requirements that are **not** needed for a core-only `cargo` workflow.

## 1. Install the pinned Rust toolchain

The repository pins Rust in [`rust-toolchain.toml`](https://github.com/tinyhumansai/openhuman/tree/main/rust-toolchain.toml):

* Channel: `1.96.1`
* Components: `rustfmt`, `clippy`

The pin exists because `rusqlite` 0.40 / `libsqlite3-sys` 0.38 use the `cfg_select!` macro, stabilized in 1.96 (unstable through 1.95).

Recommended install:

```bash
rustup toolchain install 1.96.1 --component rustfmt --component clippy
rustup default 1.96.1
```

You can also let `cargo` auto-install from `rust-toolchain.toml` after `rustup` itself is installed.

## 2. Clone the repo

Core-only work:

```bash
git clone https://github.com/tinyhumansai/openhuman.git
cd openhuman
```

That is enough for the Rust workspace. Core sources, the package manifest, and the authoritative domain implementation live under `crates/openhuman-core/`. The stable host-facing library facade is the sibling `crates/openhuman-embed/` package, while the terminal frontend is `crates/openhuman-tui/`. Shared JSON-RPC contracts and the HTTP client used by the Tauri shell and the TUI live in `crates/openhuman-rpc/`.

The recursive submodules under repo-root `vendor/` are required for the core build too, not just the desktop shell: `crates/openhuman-core/Cargo.toml` path-depends on `vendor/tinyagents`, `vendor/tinymemory`, `vendor/tinymcp`, and the rest of the `tiny*` family, and the root `Cargo.toml` `[patch]` tables point into `vendor/tinymemory`, `vendor/tinyflows`, `vendor/tinychannels`, `vendor/motosan-ai-oauth`, and the `tinyinference` copy nested under `vendor/tinyagents/`.

```bash
git submodule update --init --recursive vendor/
```

Desktop/Tauri work has extra requirements on top of this — follow [Getting Set Up](/openhuman/developing/getting-set-up.md) for those.

## 3. Build commands

From the repository root:

```bash
# Fast dependency + type check
cargo check --manifest-path Cargo.toml

# Debug build of the actual CLI / RPC binary
cargo build --manifest-path Cargo.toml --bin openhuman-core

# Check the stable host-facing embedding facade
cargo check --manifest-path Cargo.toml -p openhuman-embed

# Check the shared RPC contracts + HTTP client crate
cargo check --manifest-path Cargo.toml -p openhuman-rpc

# Build the terminal frontend (embeds the core in-process)
cargo build --manifest-path Cargo.toml -p openhuman-tui

# Check the desktop shell (separate Cargo world, own manifest/lockfile)
cargo check --manifest-path crates/openhuman-app/Cargo.toml

# Release build
cargo build --manifest-path Cargo.toml --release --bin openhuman-core

# Rust tests
cargo test --manifest-path Cargo.toml
```

Notes:

* The **package** name is `openhuman`, but the runnable binary is **`openhuman-core`**.
* If you prefer package-oriented cargo commands for packager scripts, use `-p openhuman`.
* The built binary lands at `target/debug/openhuman-core` or `target/release/openhuman-core`.

### Faster local linking (optional)

The `openhuman` core crate links a large single rlib, so the edit → `cargo check`/`cargo test` inner loop is frequently link-bound. A faster linker (mold on Linux, lld on macOS) can cut a large slice off every incremental relink. [`.cargo/config.toml`](https://github.com/tinyhumansai/openhuman/tree/main/.cargo/config.toml) documents the manual opt-in, but the easiest path is:

```bash
# installs mold/lld detection into $CARGO_HOME/config.toml — never the
# repo's tracked .cargo/config.toml, so it's a per-machine opt-in
scripts/dev-setup-linker.sh

# preview the change first
scripts/dev-setup-linker.sh --dry-run
```

Install the linker first (`apt install mold` / `brew install llvm`) — the script detects it and exits with instructions if it's missing. It's idempotent: re-running it after the linker is already configured is a no-op. CI enables the same flag directly via `RUSTFLAGS` in the Linux Rust jobs; this script exists so local `cargo` invocations get the same speedup without depending on a container.

## 4. macOS prerequisites

Install:

* Xcode Command Line Tools: `xcode-select --install`

Why:

* Native dependencies (`cpal` for audio capture behind the `inference` feature, which `voice` requires; the `objc2` Contacts cohort compiled by the vendored `tinymemory` module) compile C/Objective-C code during the build and need Apple toolchains and SDK headers present.

After Xcode CLT is installed, the core should build with the cargo commands above.

## 5. Linux prerequisites

### Core-only package set

Install these packages before running `cargo` on a fresh Linux machine.

**Ubuntu / Debian:**

```bash
sudo apt-get update
sudo apt-get install -y \
  build-essential cmake pkg-config clang libssl-dev libclang-dev \
  libasound2-dev libxi-dev libxtst-dev libxdo-dev libudev-dev \
  libstdc++-14-dev
```

**Arch Linux:**

```bash
sudo pacman -S --needed base-devel cmake pkgconf clang openssl \
  alsa-lib libxi libxtst xdotool libevdev
```

> On Arch, `clang` includes `libclang` and `base-devel` includes `gcc` (providing `libstdc++`), so separate `-dev` packages are not needed.

Why these matter:

* `build-essential` / `base-devel`, `cmake`, `pkg-config` / `pkgconf`: native builds used by transitive Rust dependencies.
* `clang`, `libclang-dev`: bindgen (used by native crates such as `cpal`'s ALSA bindings) and C/C++ compilation paths.
* `libssl-dev` / `openssl`: OpenSSL headers needed by some networking dependencies.
* `libasound2-dev` / `alsa-lib`, `libxi-dev` / `libxi`, `libxtst-dev` / `libxtst`, `libxdo-dev` / `xdotool`, `libudev-dev` (included in Arch `systemd-libs`), `libevdev`: required by audio/input/device crates (`cpal`, `enigo`/X11 input handling) pulled into the core build.
* `libstdc++-14-dev`: `clang`-driven builds may pick GCC 14 C++ headers on Ubuntu runners; this keeps `libstdc++.so` resolvable for those native crates.

### Linux desktop/Tauri package set

If you are building the desktop shell instead of the core-only crate, install the broader dependency set.

**Ubuntu / Debian** (mirrored from [`.github/workflows/build-desktop.yml`](https://github.com/tinyhumansai/openhuman/tree/main/.github/workflows/build-desktop.yml)):

```bash
sudo apt-get update
sudo apt-get install -y \
  libgtk-3-dev libwebkit2gtk-4.1-dev libayatana-appindicator3-dev librsvg2-dev \
  patchelf cmake libasound2-dev libxdo-dev libxtst-dev libx11-dev libxi-dev \
  libevdev-dev libssl-dev libclang-dev \
  libnss3 libnspr4 libatk1.0-0 libatk-bridge2.0-0 libcups2 libdrm2 \
  libxkbcommon0 libxcomposite1 libxdamage1 libxfixes3 libxrandr2 \
  libgbm1 libpango-1.0-0 libcairo2 libatspi2.0-0 libxshmfence1 libu2f-udev
```

**Arch Linux:**

```bash
sudo pacman -S --needed gtk3 webkit2gtk-4.1 libayatana-appindicator \
  librsvg patchelf nss nspr at-spi2-core libcups libdrm \
  libxkbcommon libxcomposite libxdamage libxfixes libxrandr \
  mesa pango cairo libxshmfence
```

Use the desktop lists only when you need `crates/openhuman-app/`; for root-crate work, the smaller core-only list above is the relevant baseline.

## 6. Windows prerequisites

Install:

* Rust via `rustup`
* Visual Studio Build Tools 2022 or Visual Studio with the **Desktop development with C++** workload
* The MSVC target used by CI and release builds: `x86_64-pc-windows-msvc`

Recommended commands after the Microsoft toolchain is installed:

```powershell
rustup toolchain install 1.96.1 --component rustfmt --component clippy
rustup target add x86_64-pc-windows-msvc
cargo build --manifest-path Cargo.toml --bin openhuman-core
```

Use the MSVC toolchain, not MinGW, to match CI and release builds.

## 7. Related paths

* [Getting Set Up](/openhuman/developing/getting-set-up.md): full desktop contributor setup with `pnpm`, Tauri, and submodules. The core runs in-process inside the desktop shell (see [Tauri Shell](/openhuman/developing/architecture/tauri-shell.md)); there is no sidecar staging step.
* [OpenHuman Architecture](/openhuman/developing/architecture.md): where the core fits into the desktop app and RPC flow.
* [Deep Architecture Reference](/openhuman/developing/architecture/architecture.md): the full crate map and repository layout.
