Jonathan Marler
Jonathan Marler
FYI, I added a bufferedReader when passing the file stream to the inflate decompressor...and performance went from about 3 to 4 times slower than the mmap version to about the...
Here's the branch I'm currently working on: https://github.com/ziglang/zig/compare/master...marler8997:zig:zip
seems like it doesn't reproduce for me: ```sh $ zig test foo.zig 1/1 test.packed struct member equality... OK All 1 tests passed. ``` What OS/Architecture are you on (output of...
Well this is interesting. I tested this on 3 machines, all with the given compiler version `0.11.0-dev.900+0fb53bd24`. Here are the results: * linux-x86_64: PASS (issue does not reproduce) * macos-AARCH64:...
> Isn't the out_dir already a tmp directory? why not just extract directly into it instead of making another temp directory? We actually use the tmp directory save the zip...
> I see you've already got Deflate64 (9) in there. Were you able to test that, or is that hypothetical? It seemed to be working but I found a deflate64...
> one thing that would be nice from a fuzzing perspective would be the option to do everything in-memory instead of hitting the filesystem I just pushed an updated commit...
I believe they should be defined by `libc`. I'm a little uninformed about how libc is supposed to work with `wasm32-freestanding`. It appears that there are header files provided by...
Yeah def files are trivial to generate with win32metadata. I didn't really consider C++, there could definitely be some gotchas there.
Andrew thanks for taking the time to respond with all your thoughts. I think we're mostly in agreement here. I think I'm going to go ahead with enhancing my zigwin32gen...