Neko Hz
Neko Hz
I prefer to choose Option B But I doubt whether this operation will really work... The event loop should block the entire thread, so run_loop should not be able to...
seems ok @heri16
I notices it use GC_ref, I don't think it will works with ORC/ARC
> Hi @codehz thanks for your report, this is a known issue, and we're exploring a appropriate solution. Will keep you posted. Considering that the current mobile phone numbers obtained...
@user00e00 I think they are two different things, this proposal intended to attach metadata into field, your typedef intended to attach metadata into type... The former is actually a decoration...
@LemonBoy ```zig export fn t() void {} comptime { @export(t, .{ .name="tx"}); } pub fn main() void {} ``` command: ```bash $ zig build-exe x.zig $ nm -D x nm:...
> use `zig build-exe -dynamic` to create a dynamic executable. no effect at all, and in windows, there is no dynamic executable
> possible workaround is linking libc `-lc` as well. nope, I can build it without `-lc`, and adding `-lc` has not make t and tx exported ``` x: file format...
> exported in the dynamic symbol table: Unfortunately, the binary produced by this method cannot be loaded by dlopen `./x: cannot dynamically load executable` and I also tried this for...
@LemonBoy Ok, now the origin problem is I want to do this on windows: let plugin (dll) to load symbol from exe, it has been tested in a plain c...