Ilya Sorochan
Ilya Sorochan
Unfortunately I wasn't able to bootstrap zig on my loongarch64 machine (used [yxd-ym/zig-boostrap](https://github.com/yxd-ym/zig-bootstrap/tree/bootstrap-loongarch-2) bootstrap-loongarch-2 branch) ```sh [user@la64-nb tmp]$ uname -s -r -v -m -o Linux 6.9.0-loongarch-alt0.4.0.g5aec712dc5f3.0.port #1 SMP PREEMPT_DYNAMIC Mon...
For some reason on loongarch64 [llvm19-fix-f16](https://github.com/yxd-ym/zig-bootstrap/tree/llvm19-fix-f16) gave similar error [zig-bootstrap2.log](https://github.com/user-attachments/files/16959547/zig-bootstrap2.log) Now attempting to build on x86_64 machine
> Also, what is the version of your host's clang? ```sh [user@la64-nb zig]$ clang++ --version ALT Linux Team clang version 18.1.8 Target: loongarch64-unknown-linux-gnu Thread model: posix Installed dir: /usr/bin ```...
Tested on `0.11.0-dev.1026+4172c2916`. Working almost fine, but there is one big issue with `std.testing`: on error it outputs everything in `stderr` with `std.debug.print` (for example `std.testing.expectEqual`). Reading from stderr doesn't...
@kazk the main problem with current test runner implementation ([repo](https://github.com/k0tran/codewars_zrunner)) is that `std.testing` lib writes to `stderr` whenever it needs. Thus, there is no way (as I can see it)...
@matu3ba I've updated my prototype version ([k0tran/codewars_zrunner](https://github.com/k0tran/codewars_zrunner)) to zig 0.11.0. You can use it as starting template or suggest changes. Here's few things about my implementation: - There are no...
@cla-bot check
> Was there a particular reason for this? When I first saw this code I thought it is for removing everything except lsp binary in the archive. And since neocmake-lsp...
@maxdeviant Updated extension, thanks for the feedback!
Hi, I'm here with real-word use-case scenario. Recently attempted to package [zls](https://github.com/zigtools/zls) for [sisyphus](https://packages.altlinux.org/). The thing is that sisyphus requires so that source tarball/git repo builds without internet connection. It...