Hhinting is disabled on operating systems that make an effort to not reuse mappings. For example, OpenBSD aggressively randomizes addresses of mappings that don't provide a hint (for security reasons, but it serves our needs too).
const enable_hints = switch (builtin.target.os.tag)
const enable_hints = switch (builtin.target.os.tag) {
.openbsd => false,
else => true,
}