iacore

Results 421 comments of iacore

I think this is done!

> As a workaround to avoid having to rename the rust structs, one could use `#[wasm_bindgen(js_name = MyModMyStruct)]` or something like that to avoid the name collision, right? not working

matrix multiplication is already multi-threaded (limited to 4 threads). using https://lib.rs/crates/ggblas would remove this limitation

We should make the syntax easy to use for refactoring code. Inspiration: https://github.com/BSVino/JaiPrimer/blob/master/JaiPrimer.md#code-refactoring Step 1 ```zig /// inline refactoring const std = @import("std"); const V = struct { i: i32,...

~~I dislike the weird syntax of `.|x|`.~~ Edit: I changed my idea. See below. A better solution is to make function definition ```zig const foo = fn () void {};...

I've tried to look into `zig/parser.zig` to add this syntax myself, but to no avail. Is there any other effort trying to implement this? Also, I'm not sure what the...

It ignores `-Wl,--dynamic-linker=x` as well

Workaround: edit `CMakeCache.txt` manually. ``` //Flags used by the CXX compiler during all build types. CMAKE_CXX_FLAGS:STRING=-L/usr/local/lib ```

I still think it's better to hard-code the library path for FreeBSD. `pkgconf --libs libzstd` also works on FreeBSD.