zig/test/link/static_libs_from_object_files/build.zig
Andrew Kelley 142471fcc4 zig build system: change target, compilation, and module APIs
Introduce the concept of "target query" and "resolved target". A target
query is what the user specifies, with some things left to default. A
resolved target has the default things discovered and populated.
In the future, std.zig.CrossTarget will be rename to std.Target.Query.
Introduces `std.Build.resolveTargetQuery` to get from one to the other.

The concept of `main_mod_path` is gone, no longer supported. You have to
put the root source file at the module root now.

* remove deprecated API
* update build.zig for the breaking API changes in this branch
* move std.Build.Step.Compile.BuildId to std.zig.BuildId
* add more options to std.Build.ExecutableOptions, std.Build.ObjectOptions,
  std.Build.SharedLibraryOptions, std.Build.StaticLibraryOptions, and
  std.Build.TestOptions.
* remove `std.Build.constructCMacro`. There is no use for this API.
* deprecate `std.Build.Step.Compile.defineCMacro`. Instead,
  `std.Build.Module.addCMacro` is provided.
  - remove `std.Build.Step.Compile.defineCMacroRaw`.
* deprecate `std.Build.Step.Compile.linkFrameworkNeeded`
  - use `std.Build.Module.linkFramework`
* deprecate `std.Build.Step.Compile.linkFrameworkWeak`
  - use `std.Build.Module.linkFramework`
* move more logic into `std.Build.Module`
* allow `target` and `optimize` to be `null` when creating a Module.
  Along with other fields, those unspecified options will be inherited
  from parent `Module` when inserted into an import table.
* the `target` field of `addExecutable` is now required. pass `b.host`
  to get the host target.
2024-01-01 17:51:18 -07:00

150 lines
4.4 KiB
Zig

const std = @import("std");
const builtin = @import("builtin");
const Build = std.Build;
const LazyPath = Build.LazyPath;
const Step = Build.Step;
const Run = Step.Run;
const WriteFile = Step.WriteFile;
pub fn build(b: *Build) void {
const nb_files = b.option(u32, "nb_files", "Number of c files to generate.") orelse 10;
const test_step = b.step("test", "Test it");
b.default_step = test_step;
// generate c files
const files = b.allocator.alloc(LazyPath, nb_files) catch unreachable;
defer b.allocator.free(files);
{
for (files[0 .. nb_files - 1], 1..nb_files) |*file, i| {
const wf = WriteFile.create(b);
file.* = wf.add(b.fmt("src_{}.c", .{i}), b.fmt(
\\extern int foo_0();
\\extern int bar_{}();
\\extern int one_{};
\\int one_{} = 1;
\\int foo_{}() {{ return one_{} + foo_0(); }}
\\int bar_{}() {{ return bar_{}(); }}
, .{ i - 1, i - 1, i, i, i - 1, i, i - 1 }));
}
{
const wf = WriteFile.create(b);
files[nb_files - 1] = wf.add("src_last.c", b.fmt(
\\extern int foo_0();
\\extern int bar_{}();
\\extern int one_{};
\\int foo_last() {{ return one_{} + foo_0(); }}
\\int bar_last() {{ return bar_{}(); }}
, .{ nb_files - 1, nb_files - 1, nb_files - 1, nb_files - 1 }));
}
}
add(b, test_step, files, .Debug);
add(b, test_step, files, .ReleaseSafe);
add(b, test_step, files, .ReleaseSmall);
add(b, test_step, files, .ReleaseFast);
}
fn add(b: *Build, test_step: *Step, files: []const LazyPath, optimize: std.builtin.OptimizeMode) void {
const flags = [_][]const u8{
"-Wall",
"-std=c11",
};
// all files at once
{
const exe = b.addExecutable(.{
.name = "test1",
.root_source_file = .{ .path = "main.zig" },
.optimize = optimize,
.target = b.host,
});
for (files) |file| {
exe.addCSourceFile(.{ .file = file, .flags = &flags });
}
const run_cmd = b.addRunArtifact(exe);
run_cmd.skip_foreign_checks = true;
run_cmd.expectExitCode(0);
test_step.dependOn(&run_cmd.step);
}
// using static librairies
{
const lib_a = b.addStaticLibrary(.{
.name = "test2_a",
.target = b.host,
.optimize = optimize,
});
const lib_b = b.addStaticLibrary(.{
.name = "test2_b",
.target = b.host,
.optimize = optimize,
});
for (files, 1..) |file, i| {
const lib = if (i & 1 == 0) lib_a else lib_b;
lib.addCSourceFile(.{ .file = file, .flags = &flags });
}
const exe = b.addExecutable(.{
.name = "test2",
.root_source_file = .{ .path = "main.zig" },
.target = b.host,
.optimize = optimize,
});
exe.linkLibrary(lib_a);
exe.linkLibrary(lib_b);
const run_cmd = b.addRunArtifact(exe);
run_cmd.skip_foreign_checks = true;
run_cmd.expectExitCode(0);
test_step.dependOn(&run_cmd.step);
}
// using static librairies and object files
{
const lib_a = b.addStaticLibrary(.{
.name = "test3_a",
.target = b.host,
.optimize = optimize,
});
const lib_b = b.addStaticLibrary(.{
.name = "test3_b",
.target = b.host,
.optimize = optimize,
});
for (files, 1..) |file, i| {
const obj = b.addObject(.{
.name = b.fmt("obj_{}", .{i}),
.target = b.host,
.optimize = optimize,
});
obj.addCSourceFile(.{ .file = file, .flags = &flags });
const lib = if (i & 1 == 0) lib_a else lib_b;
lib.addObject(obj);
}
const exe = b.addExecutable(.{
.name = "test3",
.root_source_file = .{ .path = "main.zig" },
.target = b.host,
.optimize = optimize,
});
exe.linkLibrary(lib_a);
exe.linkLibrary(lib_b);
const run_cmd = b.addRunArtifact(exe);
run_cmd.skip_foreign_checks = true;
run_cmd.expectExitCode(0);
test_step.dependOn(&run_cmd.step);
}
}