mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-09 11:40:46 -05:00
build: rename the Exercise.C field to link_libc
The name "C" does not follow the naming conventions for container fields.
This commit is contained in:
parent
ec1976e9ab
commit
123fd4b105
1 changed files with 6 additions and 6 deletions
12
build.zig
12
build.zig
|
@ -32,7 +32,7 @@ pub const Exercise = struct {
|
||||||
|
|
||||||
/// This exercise makes use of C functions
|
/// This exercise makes use of C functions
|
||||||
/// We need to keep track of this, so we compile with libc
|
/// We need to keep track of this, so we compile with libc
|
||||||
C: bool = false,
|
link_libc: bool = false,
|
||||||
|
|
||||||
/// This exercise is not supported by the current Zig compiler.
|
/// This exercise is not supported by the current Zig compiler.
|
||||||
skip: bool = false,
|
skip: bool = false,
|
||||||
|
@ -126,7 +126,7 @@ pub fn build(b: *Build) !void {
|
||||||
@panic("OOM");
|
@panic("OOM");
|
||||||
|
|
||||||
const build_step = b.addExecutable(.{ .name = base_name, .root_source_file = .{ .path = file_path } });
|
const build_step = b.addExecutable(.{ .name = base_name, .root_source_file = .{ .path = file_path } });
|
||||||
if (ex.C) {
|
if (ex.link_libc) {
|
||||||
build_step.linkLibC();
|
build_step.linkLibC();
|
||||||
}
|
}
|
||||||
b.installArtifact(build_step);
|
b.installArtifact(build_step);
|
||||||
|
@ -183,7 +183,7 @@ pub fn build(b: *Build) !void {
|
||||||
@panic("OOM");
|
@panic("OOM");
|
||||||
|
|
||||||
const build_step = b.addExecutable(.{ .name = base_name, .root_source_file = .{ .path = file_path } });
|
const build_step = b.addExecutable(.{ .name = base_name, .root_source_file = .{ .path = file_path } });
|
||||||
if (ex.C) {
|
if (ex.link_libc) {
|
||||||
build_step.linkLibC();
|
build_step.linkLibC();
|
||||||
}
|
}
|
||||||
b.installArtifact(build_step);
|
b.installArtifact(build_step);
|
||||||
|
@ -359,7 +359,7 @@ const ZiglingStep = struct {
|
||||||
zig_args.append("build-exe") catch unreachable;
|
zig_args.append("build-exe") catch unreachable;
|
||||||
|
|
||||||
// Enable C support for exercises that use C functions
|
// Enable C support for exercises that use C functions
|
||||||
if (self.exercise.C) {
|
if (self.exercise.link_libc) {
|
||||||
zig_args.append("-lc") catch unreachable;
|
zig_args.append("-lc") catch unreachable;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1046,12 +1046,12 @@ const exercises = [_]Exercise{
|
||||||
.{
|
.{
|
||||||
.main_file = "093_hello_c.zig",
|
.main_file = "093_hello_c.zig",
|
||||||
.output = "Hello C from Zig! - C result is 17 chars written.",
|
.output = "Hello C from Zig! - C result is 17 chars written.",
|
||||||
.C = true,
|
.link_libc = true,
|
||||||
},
|
},
|
||||||
.{
|
.{
|
||||||
.main_file = "094_c_math.zig",
|
.main_file = "094_c_math.zig",
|
||||||
.output = "The normalized angle of 765.2 degrees is 45.2 degrees.",
|
.output = "The normalized angle of 765.2 degrees is 45.2 degrees.",
|
||||||
.C = true,
|
.link_libc = true,
|
||||||
},
|
},
|
||||||
.{
|
.{
|
||||||
.main_file = "095_for3.zig",
|
.main_file = "095_for3.zig",
|
||||||
|
|
Loading…
Reference in a new issue