const std = @import("std"); const builtin = @import("builtin"); const Builder = @import("std").build.Builder; pub fn build(b: *Builder) !void { // Standard target options allows the person running `zig build` to choose // what target to build for. Here we do not override the defaults, which // means any target is allowed, and the default is native. Other options // for restricting supported target set are available. const target = b.standardTargetOptions(.{}); // Standard release options allow the person running `zig build` to select // between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall. const mode = b.standardReleaseOptions(); const exe = b.addExecutable("demo", "src/main.zig"); // https://github.com/ziglang/zig/issues/855 exe.addPackagePath("smithy", "smithy/src/smithy.zig"); exe.addCSourceFile("src/bitfield-workaround.c", &[_][]const u8{"-std=c99"}); const c_include_dirs = .{ "./src/", "/usr/local/include", }; inline for (c_include_dirs) |dir| exe.addIncludeDir(dir); const dependent_objects = .{ "/usr/local/lib64/libs2n.a", "/usr/local/lib64/libcrypto.a", "/usr/local/lib64/libssl.a", "/usr/local/lib64/libaws-c-auth.a", "/usr/local/lib64/libaws-c-cal.a", "/usr/local/lib64/libaws-c-common.a", "/usr/local/lib64/libaws-c-compression.a", "/usr/local/lib64/libaws-c-http.a", "/usr/local/lib64/libaws-c-io.a", }; inline for (dependent_objects) |obj| exe.addObjectFile(obj); exe.linkSystemLibrary("c"); exe.setTarget(target); exe.setBuildMode(mode); // This line works as of c5d412268 // Earliest nightly is 05b5e49bc on 2021-06-12 // https://ziglang.org/builds/zig-linux-x86_64-0.9.0-dev.113+05b5e49bc.tar.xz // exe.override_dest_dir = .{ .Custom = ".." }; exe.override_dest_dir = .{ .custom = ".." }; // Static linkage flag was nonfunctional until 2b2efa24d0855 // Did not notice this until 2021-06-28, and that nightly is: // https://ziglang.org/builds/zig-linux-x86_64-0.9.0-dev.321+15a030ef3.tar.xz exe.linkage = .static; const is_strip = b.option(bool, "strip", "strip exe") orelse true; exe.strip = !is_strip; exe.install(); const run_cmd = exe.run(); run_cmd.step.dependOn(b.getInstallStep()); if (b.args) |args| { run_cmd.addArgs(args); } const run_step = b.step("run", "Run the app"); run_step.dependOn(&run_cmd.step); const test_step = b.step("test", "Run library tests"); var build_dir = try std.fs.openDirAbsolute(b.build_root, .{}); defer build_dir.close(); var src_dir = try build_dir.openDir("src", .{ .iterate = true }); defer src_dir.close(); var iterator = src_dir.iterate(); while (try iterator.next()) |entry| { if (std.mem.endsWith(u8, entry.name, ".zig")) { const name = try std.fmt.allocPrint(b.allocator, "src/{s}", .{entry.name}); defer b.allocator.free(name); const t = b.addTest(name); t.setBuildMode(mode); test_step.dependOn(&t.step); } } // TODO: Support > linux // TODO: Get a better cache in place if (std.builtin.os.tag == .linux) { const codegen = b.step("gen", "Generate zig service code from smithy models"); codegen.dependOn(&b.addSystemCommand(&.{ "/bin/sh", "-c", "cd codegen && zig build" }).step); codegen.dependOn(&b.addSystemCommand(&.{ "/bin/sh", "-c", \\ mkdir -p src/models/ && \ \\ [ -f src/models/service_manifest.zig ] || \ \\ ( cd codegen/models && ../codegen *.json && mv *.zig ../../src/models ) }).step); b.getInstallStep().dependOn(codegen); test_step.dependOn(codegen); } }