llogick

Results 63 comments of llogick

Make sure the resulting binary does have (valid) __bss_start and __bss_end otherwise you might be memsetting who knows what :)

if it may help: ``` link.C.flushModule () at link/C.zig:251 link.C.flush () at link/C.zig:239 link.File.flush () at link.zig:794 Compilation.flush () at Compilation.zig:2458 Compilation.update () at Compilation.zig:2439 main.updateModule () at main.zig:3337 main.buildOutputType...

@renatoathaydes, Have you done the first step in this list ?

@renatoathaydes Fair enough, but it's what I had to use a ~year ago ``` ❯ ll ~/.local/share/org.kde.syntax-highlighting/syntax/Zig.xml -rw-r--r-- 1 npd npd 6.9K Oct 3 2022 /home/npd/.local/share/org.kde.syntax-highlighting/syntax/Zig.xml ``` My LSP Client...

> Workaround: edit `CMakeCache.txt` manually. > > ``` > //Flags used by the CXX compiler during all build types. > CMAKE_CXX_FLAGS:STRING=-L/usr/local/lib > ``` The [official guide](https://github.com/ziglang/zig/wiki/Building-Zig-From-Source#for-freebsd) recommends using `-DCMAKE_PREFIX_PATH`, eg...

I think this has to do with `.y = if (t) 1 else 0 },`, if replaced with `.y = 1` it passes.

The function doesn't seem to be reachable via `std.json.parseFromValue()`, https://github.com/ziglang/zig/blob/9d66481e3df35b54275373a685e765a4bcebd712/lib/std/json.zig#L85-L91

Isn't this what https://github.com/ziglang/zig/pull/16089 fixed?

https://uefi.org/specs/UEFI/2.10/02_Overview.html?highlight=char16#data-types ``` CHAR16 2-byte Character. Unless otherwise specified all characters and strings are stored in the UCS-2 encoding format as defined by Unicode 2.1 and ISO/IEC 10646 standards. ``` ```...

Hi, The error indicates that the client's HostKeyAlgorithms don't match any of the server's, in this case `ssh-rsa` and `ssh-dss` (considered legacy algorithms/insecure). Possible solutions: - update/reconfigure the server to...