I’m trying to package the npcap SDK in the zig build system. npcap is a packet capture library for windows, and it only makes sense to use it on windows.
The npcap-sdk looks like this:
Lib
├── ARM64
│ ├── Packet.lib
│ └── wpcap.lib
├── Packet.lib
├── wpcap.lib
└── x64
├── Packet.lib
└── wpcap.lib
Include
├── Packet32.h
├── pcap
│ ├── bluetooth.h
│ ├── bpf.h
│ ├── can_socketcan.h
│ ├── compiler-tests.h
│ ├── dlt.h
│ ├── funcattrs.h
│ ├── ipnet.h
│ ├── namedb.h
│ ├── nflog.h
│ ├── pcap.h
│ ├── pcap-inttypes.h
│ ├── sll.h
│ ├── socket.h
│ ├── usb.h
│ └── vlan.h
├── pcap-bpf.h
├── pcap.h
└── pcap-namedb.h
So naturally I have made some build logic to link the correct libraries:
const npcap_sdk = b.dependency("npcap_sdk", .{ .target = target, .optimize = optimize });
const npcap = b.addModule("npcap", .{
.root_source_file = b.path("src/root.zig"),
.target = target,
.optimize = optimize,
});
const packet_lib_path = switch (target.result.os.tag) {
.windows => switch (target.result.cpu.arch) {
.aarch64 => npcap_sdk.path("Lib/ARM64/Packet.lib"),
.x86_64 => npcap_sdk.path("Lib/x64/Packet.lib"),
.x86 => npcap_sdk.path("Lib/Packet.lib"),
else => return error.UnsupportedTarget,
},
else => return error.UnsupportedTarget,
};
const wpcap_lib_path = switch (target.result.os.tag) {
.windows => switch (target.result.cpu.arch) {
.aarch64 => npcap_sdk.path("Lib/ARM64/wpcap.lib"),
.x86_64 => npcap_sdk.path("Lib/x64/wpcap.lib"),
.x86 => npcap_sdk.path("Lib/wpcap.lib"),
else => return error.UnsupportedTarget,
},
else => return error.UnsupportedTarget,
};
npcap.addObjectFile(packet_lib_path);
npcap.addObjectFile(wpcap_lib_path);
npcap.addIncludePath(npcap_sdk.path("Include/"));
But this has the unfortunate outcome that I can no longer run zig build -h
on linux:
$ zig build -h
error: UnsupportedTarget
/home/jeff/repos/npcap-zig/build.zig:22:17: 0x14a13a9 in build (build)
else => return error.UnsupportedTarget,
Without the ability to run zig build -h
, its harder for the user to discover what build options there are. How do I fix this?