From 7ac2c591d2305103fe2488d936ee31d6ec8d4a06 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 14 Jul 2022 14:22:31 -0700 Subject: [PATCH] update README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f7494ecbb..3ce6135c5 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,10 @@ language as well as the Zig build system. At a minimum, Zig must be installed. For [Nix](https://nixos.org/) users, a `shell.nix` is available which includes all the necessary dependencies pinned to exact versions. +**Note: Zig nightly is required.** Ghostty is built against the nightly +releases of Zig. The latest released version (0.9.1 at the time of this +edit) will NOT work. + With Zig installed, a binary can be built using `zig build`: ```shell-session @@ -81,10 +85,6 @@ You can cross compile by setting `-Dtarget=`. For example, `zig build -Dtarget=aarch64-macos` will build for Apple Silicon macOS. Note that not all targets supported by Zig are supported. -**Note: Zig nightly is required.** Ghostty is built against the nightly -releases of Zig. The latest released version (0.9.1 at the time of this -edit) will NOT work. - Other useful commands: * `zig build test` for running unit tests.