From 8e9d7dc9a1b6f1dde51107d63834437a35b3e3ea Mon Sep 17 00:00:00 2001 From: unspeaker Date: Sun, 20 Apr 2025 00:46:25 +0300 Subject: [PATCH] document build directory --- build/README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/build/README.md b/build/README.md index e69de29b..2f70feaa 100644 --- a/build/README.md +++ b/build/README.md @@ -0,0 +1,11 @@ +This directory contains Dockerfiles and shell scripts +for building Tek in a container. For now, only the +GLIBC build works, as the Musl static build is unable +to `dlopen` the system's `libjack.so`. + +Invoke from repo root, like this: `build/release-glibc.sh`. +This will first build a Docker image, `tek:glibc`, which +will contain all build-time dependencies; then, it +will invoke a `cargo build --release` in a container +spawned from that image, ultimately placing the +release build in this directory, as `build/tek`.