From f587b222e775f948f9bd349c71d5c825c38b1b01 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 25 Oct 2022 20:55:34 -0700 Subject: [PATCH] don't need fstage1 --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 75a5a3a56..ab52a8ab6 100644 --- a/README.md +++ b/README.md @@ -75,16 +75,12 @@ on the [Zig downloads page](https://ziglang.org/download/). With Zig installed, a binary can be built using `zig build`: ```shell-session -$ zig build -fstage1 +$ zig build ... $ zig-out/bin/ghostty ``` -**Important: you must specify the `-fstage1` flag.** Ghostty can't yet be -built with the self-hosted Zig backend, so we have to use "stage1" (the -C++ LLVM backend). - This will build a binary for the currently running system (if supported). You can cross compile by setting `-Dtarget=`. For example, `zig build -Dtarget=aarch64-macos` will build for Apple Silicon macOS. Note