I'm hoping so ! We've also discussed some possibility for hotloading code, but it would definitely be nice to make the feedback loop a bit quicker one way or another.
@@chrboesch I just gave it a try and it looks like the compiler is missing some things that I guess LLVM provides: ``` error: TODO implement genBinOp for cmp_lt @Vector(32, u8) ``` I'm hoping compilation will get a bit faster, but I have some other ideas to speed things up in the meantime.
Cool, Great Project!
Great video. When the self hosted compiler is released, these compile times should be much shorter eh?
I'm hoping so ! We've also discussed some possibility for hotloading code, but it would definitely be nice to make the feedback loop a bit quicker one way or another.
@@JetzigWebFramework Did you try to disable LLVM in your build file?
const exe = b.addExecutable(.{
.name = "no_llvm",
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
.use_llvm = false,
.use_lld = false,
});
@@chrboesch I just gave it a try and it looks like the compiler is missing some things that I guess LLVM provides:
```
error: TODO implement genBinOp for cmp_lt @Vector(32, u8)
```
I'm hoping compilation will get a bit faster, but I have some other ideas to speed things up in the meantime.
@@JetzigWebFramework Indeed, @vector is still a problem. I hope it will be fixed soon.
Hotload will make this great
Hot reload?