Results 61 comments of pfg
trafficstars

The workaround for now is to edit `lib/std/mem.zig` next to your zig installation with this patch (no need to recompile zig): ```diff pub const page_size = switch (builtin.cpu.arch) { .wasm32,...

Would this solve it? ```zig const wlroots = b.dependency("zig-wlroots", .{ .target = target, .optimize = optimize }).module("wlroots"); ``` Along with in zig-wlroots: ```zig const target = b.standardTargetOptions(.{}); const optimize =...

@xAlien95 Webpack already has a buffer thing built in, bplist-converter and OutputData.ts rely on it. bplist-parser requires fs but there are some modules I can use to emulate fs in...

I added wayland support, but I'm not really sure where to call `_glfwAddPointerGesturesListeners` from. The current place works it seems. Also, this needs a rebase to be mergable.

This is done. I can't add Windows or X11 support because I can't test them, but if someone wants to here's information: Windows Add in `src/win32_window` in the switch with...

The whole app seems to crash, if you reload after loading the page once it shows the cloudflare "site down" screen

It's making requests to "henryn.xyz" which expired and the domain is parked now

On Android (termux), /etc/resolv.conf doesn't exist ```zig const std = @import("std"); pub fn main() !void { var general_purpose_allocator = std.heap.GeneralPurposeAllocator(.{}){}; const gpa = general_purpose_allocator.allocator(); var http_client: std.http.Client = .{ .allocator...

@JerwuQu Wouldn't this mean any program using zig http would need to have its own `--dns` argument? This is a problem with the HTTP client in the standard library, not...

@coffeebe4code Mine gets the values from cmake from an android build: https://github.com/pfgithub/blockeditor/blob/5b5e65877d2915387fb07c51f9c8d7598ba3b49c/packages/android/Aztest/app/src/main/cpp/CMakeLists.txt#L17-L24 And then it uses those in build.zig to generate a libc.txt file: https://github.com/pfgithub/blockeditor/blob/5b5e65877d2915387fb07c51f9c8d7598ba3b49c/packages/beui_impl_android/build.zig#L177-L184 And then it does some...