Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计未展示

zig-0.16锯齿形 0 16

Agent Skill

zig-0.16 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

917

周安装

39

GitHub Stars

13

下载量

321
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:zig-0.16(锯齿形 0 16)
来源仓库:https://github.com/zigcc/skills
仓库路径:skills/zig-0.16
安装命令:
npx skills add https://github.com/zigcc/skills --skill zig-0.16
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/zigcc/skills --skill zig-0.16

简介

zig-0.16 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用于研究检索类任务,支持多宿主环境集成。
  • zig-0.16 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Zig 0.16.0 Programming Guide

Version Scope: This skill is pinned to Zig 0.16.0 (stable). Release Notes: https://ziglang.org/download/0.16.0/release-notes.html

Zig 0.16.0 is a major release introducing std.Io as the unified I/O interface, removing @Type, deprecating @cImport, and significantly reworking the build system package management.


Local Documentation First

Run zig env to discover installation paths — never hardcode them. Key fields: .lib_dir, .std_dir, .version.

  • Language Reference: <lib_dir>/../doc/langref.html
  • Std Library Source: read files under .std_dir for API verification.
  • Std Library Docs: run zig std to start a local HTTP server.

Always check local docs before web search.


Quick Reference: Top Breaking Changes

Old (0.15.x)New (0.16.0)
@Type(.Int(...))@Int(.signed, bits)
@Type(.Struct(...))@Struct(layout, BackingInt, field_names, field_types, field_defaults, field_is_comptime, field_alignments)
@Type(.Pointer(...))@Pointer(size, attrs, Element, sentinel)
@Type(.Fn(...))@Fn(param_types, param_attrs, ReturnType, attrs)
@Type(.Tuple(...))@Tuple(field_types)
@cImport({...})b.addTranslateC(...) + @import("c") (deprecated)
std.netstd.Io.net
std.ArrayList.init(allocator)std.ArrayList.initCapacity(allocator, n)
std.crypto.randomstd.Io.randomSecure(io, buf)
std.meta.intToEnumstd.enums.fromInt
std.fmt.FormatOptionsstd.fmt.Options
std.fmt.bufPrintZstd.fmt.bufPrintSentinel
std.io.fixedBufferStreamstd.Io.Writer.fixed(buf)
error.RenameAcrossMountPointserror.CrossDevice
error.NotSameFileSystemerror.CrossDevice
error.SharingViolationerror.FileBusy
error.EnvironmentVariableNotFounderror.EnvironmentVariableMissing
std.Build.Step.ConfigHeader cmake handlingfixed leading whitespace

Language Changes

@Type Removed — Use Individual Builtins

@Type is gone. Replace with these builtins:

// Integer type
const MyInt = @Int(.signed, 32);

// Struct type
const MyStruct = @Struct(
    .auto,           // layout
    null,            // BackingInt (for packed)
    &.{"x", "y"},    // field_names
    &.{ i32, i32 },  // field_types
    &.{ null, null },// field_defaults
    &.{ false, false }, // field_is_comptime
    &.{ null, null },// field_alignments
);

// Pointer type
const MyPtr = @Pointer(.one, .{
    .alignment = 8,
    .address_space = .generic,
    .is_const = false,
    .is_volatile = false,
}, u8, null);

// Function type
const MyFn = @Fn(&.{i32, i32}, &.{.{}, .{}}, i32, .{});

// Tuple type
const MyTuple = @Tuple(&.{ i32, bool });

// Enum literal type
const EnumLitType = @EnumLiteral();

@cImport Deprecated — Use Build System Translation

@cImport is deprecated. Use addTranslateC in build.zig:

// build.zig
const translate_c = b.addTranslateC(.{
    .root_source_file = b.path("src/c.h"),
    .target = target,
    .optimize = optimize,
});
translate_c.linkSystemLibrary("glfw", .{});

const exe = b.addExecutable(.{
    .name = "myapp",
    .root_module = b.createModule(.{
        .root_source_file = b.path("src/main.zig"),
        .optimize = optimize,
        .target = target,
        .imports = &.{
            .{ .name = "c", .module = translate_c.createModule() },
        },
    }),
});

Then in Zig: const c = @import("c");

Note: The C translator is now backed by arocc instead of libclang.

Switch Improvements

  • packed struct and packed union may now be used as switch prong items (compared by backing integer).
  • decl literals and result-type-dependent expressions (e.g. @enumFromInt) may now be used as switch prong items.
  • Union tag captures are now allowed for all prongs, not just inline ones.
  • Switch prong captures may no longer all be discarded.
  • .awake atomic order removed; use .monotonic / .seq_cst.

Other Language-Level Gotchas

  • Small integer types coerce to floats — e.g. u8f32 is now allowed.
  • Runtime vector indexes forbidden — vector indexing must be comptime-known.
  • Vectors and arrays no longer support in-memory coercion — must explicitly cast element-wise.
  • Trivial local addresses cannot be returned from functions — e.g. return &local; is rejected more consistently.
  • Packed unions must not have unused bits — all bit patterns must be valid.
  • Pointers forbidden in packed structs/unions.
  • Explicitly-aligned pointer types are now distinct from naturally-aligned ones in type system.
  • Simplified dependency loop rules — most code still works, but self-referential alignment queries now error.

Standard Library: std.Io

Networking

  • std.net is gone. Use std.Io.net (types: IpAddress, Stream, Server, UnixAddress).
  • High-level helpers like tcpConnectToHost, Address.parseIp, Stream.connect removed. Use Io vtables: io.vtable.netConnectIp, netRead, netWrite, netListenIp, netAccept.
  • Raw fd operations: use std.os.linux.socket, accept4, connect, bind, listen, write, read, close.
  • posix.socket, posix.bind, posix.accept, posix.shutdown, posix.writev, posix.listen, posix.pipe2, posix.getrandom, std.net.has_unix_sockets removed.
  • Epoll: std.os.linux.epoll_create1/epoll_ctl/epoll_wait directly.
  • New: std.Io.net.Socket.createPair for socketpair usage in tests.

I/O Readers/Writers

  • Writer/reader interfaces live under std.Io. TLS expects *std.Io.Reader / *std.Io.Writer (struct fields .interface). Pass pointers to interfaces, not call interface() as a function.
  • std.time.sleep removed; use std.Io.sleep(io, Duration, Clock).
  • std.Io.GenericWriter, std.Io.AnyWriter, std.Io.null_writer, std.Io.CountingReader removed.

Time / Random / Env / Exit

  • std.time.milliTimestamp removed. Use std.time.Timer or std.Io.Clock.now(clock, io) and compare Timestamp.nanoseconds.
  • Random secure bytes: std.Io.randomSecure(io, buf); no std.crypto.random or std.posix.getrandom convenience.
  • std.process.getEnvVarOwned removed; use std.c.getenv and copy.
  • std.posix.exit removed; use std.process.exit.

TLS Client Options

  • std.crypto.tls.Client.Options requires entropy: *const [entropy_len]u8 and realtime_now_seconds: i64. Fill entropy with std.Io.randomSecure; compute seconds with Io.Clock.now(.real, io) / ns_per_s.

MemoryPool API Changes

  • std.heap.MemoryPool(T).initCapacity(allocator, n) returns the pool.
  • create/destroy now require allocator. No bare init() or zero-arg deinit().

Format Options

  • std.fmt.Options replaces FormatOptions.
  • std.fmt.format helper removed; call writer.print directly (writers live in std.Io.Writer).
  • std.fmt.Formatter renamed to Alt.
  • std.fmt.bufPrintZ renamed to std.fmt.bufPrintSentinel.

Randomness / Crypto

  • std.crypto.random removed. Use an std.Io instance: const io = std.Io.Threaded.global_single_threaded.ioBasic(); io.random(&buf);.
  • Ed25519.KeyPair.generate now requires an io: std.Io argument.

Enum Conversion

  • std.meta.intToEnum removed. Use std.enums.fromInt(EnumType, value) (returns ?EnumType).
  • meta.declList removed.

Fixed-Buffer Writers in Tests

  • std.io.fixedBufferStream removed. For in-memory writes use var w = std.Io.Writer.fixed(buf); and read bytes with std.Io.Writer.buffered(&w).
  • std.ArrayList no longer has .init(allocator) shorthand; use .initCapacity(allocator, n).

Collections

  • SegmentedList removed.
  • BitSet, EnumSet: replace initEmpty, initFull with decl literals (e.g. .{}, .{.a = true}).
  • New: Io.Dir.renamePreserve — rename without replacing destination.
  • std.Io.Dir.rename returns error.DirNotEmpty rather than error.PathAlreadyExists.

Error Set Renames

// Old -> New
error.RenameAcrossMountPoints -> error.CrossDevice
error.NotSameFileSystem       -> error.CrossDevice
error.SharingViolation        -> error.FileBusy
error.EnvironmentVariableNotFound -> error.EnvironmentVariableMissing

Math

  • math.sign now returns the smallest integer type that fits possible values.

Threading

  • Thread.Mutex.Recursive removed.

Compression

  • lzma, lzma2, xz updated to Io.Reader / Io.Writer interfaces.

Dynamic Libraries

  • DynLib removed Windows support. Use LoadLibraryExW and GetProcAddress directly.

New Execution Model: Juicy Main

Zig 0.16.0 introduces std.process.Init as the preferred main parameter. This is the biggest entrypoint change in this release.

main signatures

// 1. Bare (no args/env available)
pub fn main() !void { }

// 2. Minimal (raw argv + environ only)
pub fn main(init: std.process.Init.Minimal) !void { }

// 3. Juicy Main (recommended)
pub fn main(init: std.process.Init) !void { }

std.process.Init contents

pub const Init = struct {
    minimal: Minimal,
    arena: *std.heap.ArenaAllocator,  // process-lifetime arena, threadsafe
    gpa: Allocator,                     // general-purpose allocator
    io: Io,                             // default Io implementation
    environ_map: *Environ.Map,          // env vars (not threadsafe)
    preopens: Preopens,                 // WASI-style preopened files

    pub const Minimal = struct {
        environ: Environ,
        args: Args,
    };
};

Example

const std = @import("std");

pub fn main(init: std.process.Init) !void {
    const gpa = init.gpa;
    const io = init.io;

    try std.Io.File.stdout().writeStreamingAll(io, "Hello, world!\n");

    const args = try init.minimal.args.toSlice(init.arena.allocator());
    for (args, 0..) |arg, i| {
        std.log.info("arg[{d}] = {s}", .{ i, arg });
    }

    std.log.info("{d} env vars", .{init.environ_map.count()});
}

Rule of thumb: if your program needs I/O, allocations, or environment variables, use std.process.Init.


Environment Variables & Process Args Are Non-Global

std.os.environ and std.process.args as global state are gone. They are now only available through main's init parameter.

Environment variables

// Juicy Main
for (init.environ_map.keys(), init.environ_map.values()) |key, value| {
    std.log.info("env: {s}={s}", .{ key, value });
}

// Minimal main
std.log.info("HOME: {?s}", .{init.environ.getPosix("HOME")});
std.log.info("EDITOR: {s}", .{ try init.environ.getAlloc(arena, "EDITOR") });
const map = try init.environ.createMap(arena);

CLI arguments

// Iterate lazily
var args = init.args.iterate();
while (args.next()) |arg| {
    std.log.info("arg: {s}", .{arg});
}

// To slice (needs allocator)
const args = try init.args.toSlice(arena);

Any function that needs environment variables should accept *const process.Environ.Map or process.Environ as a parameter.


Thread.Pool Removed → Use std.Io

std.Thread.Pool is removed. Replace with std.Io.Group, std.Io.async, or std.Io.concurrent.

Migration example

// OLD (0.15)
fn doAllTheWork(pool: *std.Thread.Pool) void {
    var wg: std.Thread.WaitGroup = .{};
    pool.spawnWg(wg, doSomeWork, .{ pool, &wg, first_work_item });
    wg.wait();
}

// NEW (0.16)
fn doAllTheWork(io: std.Io) void {
    var g: std.Io.Group = .init;
    errdefer g.cancel(io);
    g.async(io, doSomeWork, .{ io, &g, first_work_item });
    g.wait(io);
}

fn doSomeWork(io: std.Io, g: *std.Io.Group, foo: Foo) void {
    foo.doTheThing();
    for (foo.new_work_items) |new| {
        g.async(io, doSomeWork, .{ io, g, new });
    }
}

Important: when migrating from Thread.Pool to Io, convert Thread.Mutex, Thread.Condition, Thread.ResetEvent to Io.Mutex, Io.Condition, Io.Event.


File I/O & fs API Changes

readFileAlloc / readToEndAlloc

// OLD
const contents = try std.fs.cwd().readFileAlloc(allocator, file_name, 1234);

// NEW
const contents = try std.Io.Dir.cwd().readFileAlloc(io, file_name, allocator, .limited(1234));
// Note: FileTooBig -> StreamTooLong when limit reached.
// OLD
const contents = try file.readToEndAlloc(allocator, 1234);

// NEW
var file_reader = file.reader(&.{});
const contents = try file_reader.interface.allocRemaining(allocator, .limited(1234));

setTimestamps

// OLD
try atomic_file.file_writer.file.setTimestamps(io, src_stat.atime, src_stat.mtime);

// NEW
try atomic_file.file_writer.file.setTimestamps(io, .{
    .access_timestamp = .init(src_stat.atime),
    .modify_timestamp = .init(src_stat.mtime),
});

Io.File.Stat.atime is now ?Timestamp (can be null on e.g. ZFS).

Directory walking

  • std.Io.Dir.walk still exists.
  • New: std.Io.Dir.walkSelectively — opt-in recursion per directory, avoiding redundant open/close syscalls.
  • Both Walker and SelectiveWalker gained leave() and depth().

fs.path.relative is now pure

// OLD
const relative = try std.fs.path.relative(gpa, from, to);

// NEW
const cwd_path = try std.process.currentPathAlloc(io, gpa);
const relative = try std.fs.path.relative(gpa, cwd_path, environ_map, from, to);

fs.path Windows changes

  • windowsParsePath/diskDesignator/diskDesignatorWindowsparsePath, parsePathWindows, parsePathPosix
  • Added getWin32PathType
  • componentIterator/ComponentIterator.init can no longer fail

Current Directory API renamed

// OLD
std.process.getCwd(buffer)
std.process.getCwdAlloc(allocator)

// NEW
std.process.currentPath(io, buffer)
std.process.currentPathAlloc(io, allocator)

Preopens & Atomic / Temporary Files

Preopens

// OLD (WASI)
const wasi_preopens: std.fs.wasi.Preopens = try .preopensAlloc(arena);

// NEW
const preopens: std.process.Preopens = try .init(arena);
// Or simply use init.preopens from Juicy Main.

Preopens is void on non-WASI targets — zero-cost abstraction.

Atomic / Temporary Files

std.Io.File.Atomic is the new API for atomic file writes and temporary files.

  • Linux: integrates with O_TMPFILE when possible.
  • New: std.Io.File.hardLink
  • Temporary/random filenames are generated via the Io vtable instead of std.crypto.random.

Memory & Allocator Changes

ArenaAllocator is now lock-free and thread-safe

std.heap.ArenaAllocator no longer needs ThreadSafeAllocator wrapping. Performance is comparable single-threaded and faster under contention (~7 threads).

ThreadSafe Allocator removed

std.heap.ThreadSafe is removed; use ArenaAllocator directly, or synchronize access manually.

Memory Locking / Protection moved to std.process

// OLD
try std.posix.mlock();
try std.posix.mlock2(slice, std.posix.MLOCK_ONFAULT);
try std.posix.mlockall(slice, std.posix.MCL_CURRENT | std.posix.MCL_FUTURE);

// NEW
try std.process.lockMemory(slice, .{});
try std.process.lockMemory(slice, .{ .on_fault = true });
try std.process.lockMemoryAll(.{ .current = true, .future = true });

mmap/mprotect flags are now type-safe structs instead of bitwise OR:

// OLD
std.posix.PROT.READ | std.posix.PROT.WRITE

// NEW
.{ .READ = true, .WRITE = true }

MemoryPool

  • std.heap.MemoryPool(T).initCapacity(allocator, n) returns the pool.
  • create/destroy now require allocator parameter.
  • New unmanaged variants: MemoryPoolUnmanaged, MemoryPoolAlignedUnmanaged, MemoryPoolExtraUnmanaged.

Io.Writer.Allocating alignment field

alignment: std.mem.Alignment,  // new field

Container & Collection Changes

Migration to "Unmanaged"

Managed variants with embedded Allocator fields are being phased out.

  • ArrayHashMap, AutoArrayHashMap, StringArrayHashMap removed.
  • AutoArrayHashMapUnmanagedarray_hash_map.Auto
  • StringArrayHashMapUnmanagedarray_hash_map.String
  • ArrayHashMapUnmanagedarray_hash_map.Custom

PriorityQueue

var queue = std.PriorityQueue(u32, void, lessThan).empty;
  • initinitContext
  • addpush
  • addSlicepushSlice
  • remove / removeOrNullpop
  • removeIndexpopIndex

PriorityDequeue

var dq = std.PriorityDequeue(u32, void, lessThan).empty;
  • init.empty
  • addpush
  • removeMinOrNull / removeMinpopMin
  • removeMaxOrNull / removeMaxpopMax
  • removeIndexpopIndex

BitSet / EnumSet

Use decl literals instead of initEmpty / initFull:

var set = std.EnumSet(MyEnum).empty;
var full = std.EnumSet(MyEnum).full;

SegmentedList

  • std.SegmentedList removed.

Removed APIs (Quick List)

Removed APIReplacement
std.Thread.Poolstd.Io.Group, Io.async, Io.concurrent
std.heap.ThreadSafestd.heap.ArenaAllocator (now thread-safe)
std.io.fixedBufferStreamstd.Io.Reader.fixed(data) / std.Io.Writer.fixed(buf)
std.Io.GenericReaderstd.Io.Reader
std.Io.AnyReaderstd.Io.Reader
std.Io.GenericWriterstd.Io.Writer
std.Io.AnyWriterstd.Io.Writer
std.Io.null_writerUse std.Io.Writer directly
std.Io.CountingReaderNo direct replacement; track bytes manually
std.SegmentedListNone
std.meta.declListNone
std.fs.getAppDataDirNone
std.posix.getCwd*std.process.currentPath*
std.posix.mlock*std.process.lockMemory*
std.posix.PROT_* bitwise flagsStruct literal flags
std.ArrayHashMaparray_hash_map.Auto / .String / .Custom

Common Idioms in Zig 0.16.0

ArrayList

const std = @import("std");

pub fn main(init: std.process.Init) !void {
    const gpa = init.gpa;

    var list = try std.ArrayList(u8).initCapacity(gpa, 16);
    defer list.deinit(gpa);

    try list.append(gpa, 'a');
    try list.appendSlice(gpa, "hello");
    try list.ensureTotalCapacity(gpa, 100);

    const owned = try list.toOwnedSlice(gpa);
    defer gpa.free(owned);
}

HashMap (Default / Unmanaged Style)

var map = std.StringHashMap(u32).empty;
defer map.deinit(gpa);

try map.put(gpa, "key", 42);
const val = map.get("key") orelse 0;

stdout / stderr with Juicy Main

pub fn main(init: std.process.Init) !void {
    const io = init.io;

    // Direct streaming write
    try std.Io.File.stdout().writeStreamingAll(io, "Hello, world!\n");

    // Or via writer interface
    var stdout_writer = std.Io.File.stdout().writer(&.{});
    try stdout_writer.interface.print("value: {d}\n", .{42});
}

Fixed-Buffer Reader / Writer

// Reader from byte slice
var data = "line1\nline2\n";
var reader: std.Io.Reader = .fixed(data);

// Writer into a stack buffer
var buf: [256]u8 = undefined;
var writer: std.Io.Writer = .fixed(&buf);
try writer.interface.print("count: {d}", .{7});

File I/O

// Read entire file
const contents = try std.Io.Dir.cwd().readFileAlloc(io, "input.txt", gpa, .limited(1024 * 1024));
defer gpa.free(contents);

// Write file atomically
var atomic = try std.Io.File.Atomic.init(io, gpa, "output.txt");
try atomic.file_writer.interface.print("data: {s}\n", .{"hello"});
try atomic.commit(io);

JSON

const MyStruct = struct {
    name: []const u8,
    value: u32,
};

// Parsing
const json_str =
    \\{"name": "test", "value": 42}
;
const parsed = try std.json.parseFromSlice(MyStruct, gpa, json_str, .{});
defer parsed.deinit();

// Serialization to string (via Io.Writer.Allocating)
var out: std.Io.Writer.Allocating = .init(gpa);
defer out.deinit();
var stringify: std.json.Stringify = .{
    .writer = &out.writer,
    .options = .{},
};
try stringify.write(parsed.value);
const json_output = out.written();

Type Reflection (Comptime)

const info = @typeInfo(T);
if (info == .pointer) { ... }
if (info == .slice) { ... }
if (info == .@"struct") { ... }
if (info == .@"enum") { ... }
if (info == .@"union") { ... }
if (info == .optional) { ... }

Testing

test "basic arithmetic" {
    const std = @import("std");
    try std.testing.expectEqual(4, 2 + 2);
    try std.testing.expectError(error.OutOfMemory, mightFail());
}

test "no leaks" {
    const std = @import("std");
    var gpa = std.heap.GeneralPurposeAllocator(.{}){};
    defer std.testing.expect(gpa.deinit() == .ok) catch @panic("leak");
    const allocator = gpa.allocator();

    const ptr = try allocator.create(u32);
    defer allocator.destroy(ptr);
}

Leb128 (Binary Format)

// OLD: std.leb.readUleb128(reader)
// NEW:
const value = try reader.takeLeb128(u64);

Common Error Messages and Fixes (0.16)

ErrorCauseFix
no field named 'getStdOut'Using old std.io.getStdOut()Use std.Io.File.stdout()
expected 2 argument(s), found 1ArrayList method missing allocatorAdd allocator as first argument
no member named 'Pool' in 'Thread'std.Thread.Pool removedUse std.Io.Group + Io.async
expected type '*const process.Environ.Map'Function needs env map paramPass it from main(init)
no member named 'fixedBufferStream'Old stream API removedUse std.Io.Reader.fixed(...) or std.Io.Writer.fixed(...)
no field named 'getCwd' in 'process'RenamedUse std.process.currentPath*
fingerprint field missingOld build.zig.zonAdd .fingerprint = 0x... and change .name = "x" to .name =.x
type depends on itself for alignmentSelf-referential alignment queryRemove @alignOf(@This()) or restructure

Build System Changes

Fingerprint Required in build.zig.zon

build.zig.zon now requires a fingerprint field, and name must be an enum literal, not a string:

.{
    .name = .myproject,  // enum literal, not "myproject"
    .fingerprint = 0x123456789abcdef0,
    .version = "0.1.0",
    .dependencies = .{},
}

zig build will fail if these are missing.

Local Package Overrides: --fork

New CLI flag for temporary local overrides:

zig build --fork=/path/to/local/fork

Any dependency with matching name + fingerprint will resolve to the local path instead of being fetched. This is ephemeral — remove the flag to revert.

Packages Fetched to zig-pkg Directory

Dependencies are now fetched into a local zig-pkg/ directory (next to build.zig) instead of the global cache. After filtering, they are recompressed into the global cache for future reuse.

Unit Test Timeouts

Specify per-test timeouts:

zig build test --test-timeout 500ms

After the timeout, the test process is killed and restarted for the next test.

ConfigHeader

  • std.Build.Step.ConfigHeader now handles leading whitespace for cmake-style config headers correctly.

Compiler / Toolchain

C Translation

  • @cImport still exists but is deprecated and now backed by arocc instead of libclang.
  • For new code, always use addTranslateC in build.zig.

Type Resolution

  • Reworked internal type resolution. Most previously-working code still works, and some "dependency loop" errors are now resolved.
  • Self-referential alignment queries (e.g. align(@alignOf(@This()))) now correctly error.

LLVM Backend

  • Experimental incremental compilation support.
  • Error set types now lowered as enums in debug info, so error names are visible at runtime.

Target Support

Notable additions:

  • aarch64-freebsd, aarch64-netbsd, loongarch64-linux, powerpc64le-linux, s390x-linux, x86_64-freebsd, x86_64-netbsd, x86_64-openbsd now tested in CI.
  • aarch64-maccatalyst, x86_64-maccatalyst cross-compilation added.
  • Initial loongarch32-linux support (no libc yet).
  • Basic support added for Alpha, KVX, MicroBlaze, OpenRISC, PA-RISC, SuperH.
  • Solaris, AIX, z/OS support removed.
  • Stack tracing improved across almost all major targets.

Testing Adjustments

  • For in-process client/server tests, use std.Io.net.Socket.createPair or raw socketpair(AF.UNIX, SOCK.STREAM|CLOEXEC, 0, &fds) to avoid relying on Io vtable network (Threaded nets return NetworkDown if not wired).
  • Error sets tightened in many std.Io functions — remove unreachable branches accordingly.

Porting Strategy (0.15 → 0.16)

  1. Replace @Type calls with the specific new builtin functions.
  2. Replace @cImport with addTranslateC in build.zig.
  3. Add fingerprint and fix name in build.zig.zon.
  4. Thread std.Io through your app — any function doing I/O, sleep, random, or time needs an io parameter.
  5. Update std.net usages to std.Io.net or raw syscalls.
  6. Update ArrayList calls to pass allocator explicitly and use initCapacity.
  7. Fix error set names (CrossDevice, FileBusy, EnvironmentVariableMissing, DirNotEmpty).
  8. Run zig build test --test-timeout 500ms to catch hanging tests early.

Use this skill when writing new Zig 0.16.0 code or upgrading from 0.15.x.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.49%
按下载量换算120

Claude

27.83%
按下载量换算89

Cursor

18.11%
按下载量换算58

Gemini CLI

10.1%
按下载量换算32

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills