We use zig to build Vere, which is packaged as a single binary,
urbit.
Main (-Dall) targets:
aarch64-linux-muslx86_64-linux-muslaarch64-macosx86_64-macos
Additional targets:
aarch64-linux-gnux86_64-linux-gnu
Install version 0.15.2 of zig with the package manager of your choosing, e.g., brew install zig, or download the binary from here.
macOS is curious operating system because the kernel is derived from two codebases, the Mach kernel and the BSD kernel. It inherits two different hardware exception handling facilities, Mach exceptions and POSIX signals. We use libsigsegv and utilize the POSIX signals which is usually fine except when it comes to debugging with lldb.
lldb hijacks the Mach exception ports for the task when it attaches to the process. Mach exceptions get handled before POSIX signals which means that as soon as vere faults (this happens often) lldb stop with a EXC_BAD_ACCESS. It is impossible to continue debugging from this state without the workaround we implemented in #611.
There are more annoying warts with lldb currently. First, if you attach the debugger when booting the ship with lldb -- your-ship/.run you have to specify -t, otherwise the ship is unable to boot for mysterious reasons. The other option is to start the ship and attach afterwards with lldb -p PID. Afterwards you should do this dance:
p (void)darwin_register_mach_exception_handler()
pro hand -p true -s false -n false SIGBUS
pro hand -p true -s false -n false SIGSEGV
Sanitizers are supported for native builds only and you need to have llvm-19 (and clang-19 on linux) installed on your machine.
For native linux builds this is the only situation where we actually build against the native abi. Normally we build agains musl even on native gnu machines.
macOS:
brew install llvm@19
Debian/Ubuntu:
apt-get install llvm-19 clang-19
Once you install zig, you're ready to build:
zig buildThis builds a native debug binary.
A quick overview of the more useful build options.
See zig build --help for more.
Cross-compilation target. See supported targets.
Optimization mode.
Supported values:
- Debug (default) => enable debugging information and runtime safety checks
- ReleaseSafe => optimize for memory safety
- ReleaseSmall => optimize for binary size
- ReleaseFast => optimize for speed
Build for all supported targets.
Release flag. Builds with -Doptimize=ReleaseFast and -Dpace=live, and omits
git rev from binary version.
Release train.
Supported values:
- once (default)
- live
- soon
- edge
Provide additional compiler flags. These propagate to all build artifacts.
Example: zig build -Dcopt="-g" -Dcopt="-fno-sanitize=all"
Enable address sanitizer. Only supported natively. Requires llvm@19, see prerequisites.
Enable undefined behavior sanitizer. Only supported natively. Requires llvm@19, see prerequisites.
Enable Tracy profiler integration for performance analysis. When enabled, the application will broadcast profiling data that can be captured by the Tracy profiler GUI.
Usage:
zig build -Dtracy=trueEnable callstack capture in Tracy profiler. Only available when -Dtracy=true is also set.
Wait for profiler connection before exiting. Useful for profiling short-running commands. Only available when -Dtracy=true is also set.
Example with all Tracy options:
zig build -Dtracy=true -Dtracy-callstack=true -Dtracy-no-exit=trueTo use Tracy profiling:
- Build with
-Dtracy=true - Download and run the Tracy profiler GUI
- Run your urbit binary
- In Tracy GUI, connect to capture profiling data
zig build -Dgenerate-commandsRunning this command will generate a compile_commands.json file in the root
of the repository, which clangd (or other language server processors) will
use automatically to provide modern editor features like syntax highlighting,
go-to definitions, call hierarchies, symbol manipulation, etc. You might have to
clear build cache for best result:
rm -rf .zig-cacheRun tests by giving zig bulid the test names as arguments, e.g.:
zig build nock-test ames-test --summary allSee zig build --help for all available tests.