don't recommend --release builds

This commit is contained in:
CJ van den Berg 2025-09-30 10:46:41 +02:00
parent 68325db6fc
commit c48eec22d6
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 5 additions and 5 deletions

View file

@ -394,10 +394,10 @@ merged. Here's a list of highlights of whats new (in no particular order):
- **Win32 GUI** - Yes, flow can now render itself in a win32 GUI window for all those terminal
impaired windows users (with full GPU acceleration!). The GUI binary can be built with `zig
build -Dgui --release=safe` and is called `flow-gui.exe`. Functionality in this GUI version of
flow is identical to the TUI version, although as of this writing there are some minor renderer
features still missing such as curly underlines, mouse cursors and double wide characters.
Thanks to `@marler8997` for the huge amount of work he put into this.
build -Dgui -Doptimize=ReleaseSafe` and is called `flow-gui.exe`. Functionality in this GUI
version of flow is identical to the TUI version, although as of this writing there are some
minor renderer features still missing such as curly underlines, mouse cursors and double wide
characters. Thanks to `@marler8997` for the huge amount of work he put into this.
- **Multi cursor changes** - Adding cursors is now `alt+click` (it was `ctrl+click`). This is to
fall inline with common practice in other editors (zed and vscode). Also, you can now remove

View file

@ -109,7 +109,7 @@ Or check your favorite local system package repository.
### Build from Source
```bash
# Basic build
zig build --release=fast
zig build -Doptimize=ReleaseSafe
# Cross-compile examples
zig build -Dtarget=x86_64-windows --prefix zig-out/win64