"error: unable to resolve comptime value" on @cImport library

/home/user/Misc/repos/Zig/pong/.zig-cache/o/14605617d31c64870f61100d6e6b13e9/cimport.zig:4988:27: error: unable to resolve comptime value
pub const ENET_HOST_ANY = in6addr_any;

is what i got after attempting to use

the only way i seemed to fix it was setting self.address.host to in6addr_any instead of ENET_HOST_ANY. but that seems unconventional.

here is the original c definition:

and it translates to pub const ENET_HOST_ANY = in6addr_any;

in6addr_any is an extern value, so It can’t be assigned to comptime constant like Zig translated it (pub const ENET_HOST_ANY = in6addr_any;). It is a translate-c bug.

I think it can be translated as:

pub const ENET_HOST_ANY = @extern(*struct_in6_addr, .{ .name = "in6addr_any" });

but this will make it a pointer, not a direct equivalent.

I propose you report this bug at Zig GitHub, if it’s not reported already.

EDIT: it was reported at translate-c: error when accessing extern variable with macro · Issue #22688 · ziglang/zig · GitHub

1 Like