Techcable

Results 128 comments of Techcable

The thing is the suggested option `--force-non-host` doesn't actually work right now. It's bad UI to suggest an option that doesn't even exist ;) I'm on an M1 Mac trying...

So as I understand it you also want to be able to reload a plugin if its already loaded?

I'm leaning towards making the scheduler just a simple wrapper around the JDK's ScheduledExecutorService. It should be per-plugin so plugins don't interfere with each others tasks. I assume wasted threads...

> > Here is the newly produced (correct) output for the above example: > > Packed structs in the stage 2 compiler do not support `align()` on their fields and...

> The ABI-sized restriction is related to Zig's packed structs which are fancy integers, not C's packed structs which are just differently aligned regular structs. Well then I think we...

As @ifreund and @Vexu both noticed, Zig `packed struct` are treated exactly as integers, while instead C `packed struct` should be translated to a `extern struct` where every field is...

Alright I've fixed conflicts, removed the stage1 checks and re-enabled the previously disabled tests. I also added several new tests for translation of packed unions.

> I think we can configure jemalloc to support 64K pages. I don't have an easy way to test it though As I understand it, a jemalloc compiled to use...

Caught this in a couple other places running the test suite: ``` src/core/specials.c:207:88: runtime error: left shift of negative value -5 src/core/pp.c:639:63: runtime error: applying zero offset to null pointer...