Compare commits
2 commits
8aee0f3a4f
...
578a205d55
| Author | SHA1 | Date | |
|---|---|---|---|
| 578a205d55 | |||
| 92ca066dd1 |
2 changed files with 2 additions and 2 deletions
|
|
@ -45,7 +45,7 @@ Or check your favorite local system package repository.
|
||||||
|
|
||||||
Make sure your system meets the requirements listed above.
|
Make sure your system meets the requirements listed above.
|
||||||
|
|
||||||
Flow builds with zig 0.14.1 at this time. Build with:
|
Flow builds with zig 0.15.1 at this time. Build with:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
zig build -Doptimize=ReleaseSafe
|
zig build -Doptimize=ReleaseSafe
|
||||||
|
|
|
||||||
|
|
@ -112,7 +112,7 @@ var panic_cleanup: ?struct {
|
||||||
} = null;
|
} = null;
|
||||||
|
|
||||||
pub fn panic(msg: []const u8, error_return_trace: ?*std.builtin.StackTrace, ret_addr: ?usize) noreturn {
|
pub fn panic(msg: []const u8, error_return_trace: ?*std.builtin.StackTrace, ret_addr: ?usize) noreturn {
|
||||||
_ = error_return_trace; // TODO: what to do with this in zig-0.14?
|
_ = error_return_trace;
|
||||||
in_panic.store(true, .release);
|
in_panic.store(true, .release);
|
||||||
const cleanup = panic_cleanup;
|
const cleanup = panic_cleanup;
|
||||||
panic_cleanup = null;
|
panic_cleanup = null;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue