Dmitry Matveyev
Dmitry Matveyev
> Now it's called `raylib.dll` As I understand, this is the "conventional" naming for Windows libraries. Considering that you build the latest version from master, changing the name might be...
Okay, I might have misunderstood you there :) My version is nothing special though, I just use standard `raylib.dll` provided on raylib release page for 3.5
In my use case I write a 2D platformer game on [wasm4](https://wasm4.org) with a screen resolution of 160x160, so even a single pixel error is noticeable on the screen. Initially...
Right, thanks. The problem is the final newline. I have a separate SQL file and I do `@embedFile`, so the trailing newline is in the variable as well. What do...
By the way, fixing it on the caller's site is more involved than just `query[0 .. query.len - 1]` since in `DynamicStatement.prepare` it takes `query.ptr`, so we need to insert...
Running this test on master ```zig test "sqlite: exec multi newline" { var diags = Diagnostics{}; var db = try getTestDb(); defer db.deinit(); db.execMulti("create table a(b int);\n", .{ .diags =...
Added: ```zig const std = @import("std"); pub fn build(b: *std.build.Builder) void { var target = b.standardTargetOptions(.{}); const mode = b.standardReleaseOptions(); const sqlite = b.addStaticLibrary("sqlite", null); sqlite.addCSourceFile("zig-sqlite/c/sqlite3.c", &[_][]const u8{"-std=c99"}); sqlite.linkLibC(); target.setGnuLibCVersion(2,...
Wow, that is really great digging! Although compiling with musl doesn't work likely because of [this bug](https://github.com/ziglang/zig/issues/9485), stacktrace below. I guess we will have to wait. ``` LLD Link... ld.lld:...
I can reproduce, same problem
What goes on -- is the incorrect import order of C files https://github.com/greenfork/nimraylib_now/issues/12#issuecomment-835053185 If you already use a dynamic system library, I think the best solution would be to use...