Stanislav Ch. Nikolov
Stanislav Ch. Nikolov
## Context This program does not build ```odin package main main :: proc() { } ``` when the target is either `wasi_wasm32`, `js_wasm32` or `freestanding_wasm32`. Build command: ```sh $ odin...
`intrinsics.read_cycle_counter()` + `vendor:sdl2` + `context.logger` + `-opt:3` somehow make the produced binary not start correctly, but removing *any* of them fixes it. Possibly related to #1615 Look at the following...
## Context Here's the simple test2.odin program that trips the compiler: ```odin package test2 main :: proc() { road := new([1024][1024]f32) road^ *= 0.999 } ``` Here's what happens when...
``` stjo@stjo-ryzen:~/alfi$ make CC src/resource.o src/resource.c: In function ‘_navi_load’: src/resource.c:221:9: error: format not a string literal and no format arguments [-Werror=format-security] 221 | resource->count = sprintf(buffer, fmt); | ^~~~~~~~ cc1:...