File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ pub fn build(b: *std.Build) void {
44
44
.flags = flags .constSlice (),
45
45
});
46
46
performance_obj .addIncludePath (AFLplusplus_inc_path );
47
+ performance_obj .linkLibC ();
47
48
48
49
const forkserver_obj = b .addObject (.{
49
50
.name = "afl-forkserver" ,
@@ -56,6 +57,7 @@ pub fn build(b: *std.Build) void {
56
57
.flags = flags .constSlice (),
57
58
});
58
59
forkserver_obj .addIncludePath (AFLplusplus_inc_path );
60
+ forkserver_obj .linkLibC ();
59
61
60
62
const sharedmem_obj = b .addObject (.{
61
63
.name = "afl-sharedmem" ,
@@ -68,6 +70,7 @@ pub fn build(b: *std.Build) void {
68
70
.flags = flags .constSlice (),
69
71
});
70
72
sharedmem_obj .addIncludePath (AFLplusplus_inc_path );
73
+ sharedmem_obj .linkLibC ();
71
74
72
75
const common_obj = b .addObject (.{
73
76
.name = "afl-common" ,
@@ -80,6 +83,7 @@ pub fn build(b: *std.Build) void {
80
83
.flags = flags .constSlice (),
81
84
});
82
85
common_obj .addIncludePath (AFLplusplus_inc_path );
86
+ common_obj .linkLibC ();
83
87
84
88
// Executable suite
85
89
const exes_step = b .step ("exes" , "Install executable suite" );
You can’t perform that action at this time.
0 commit comments