We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a0da43 commit 00d6ea4Copy full SHA for 00d6ea4
lib/std/Build.zig
@@ -867,6 +867,7 @@ pub const TestOptions = struct {
867
filters: []const []const u8 = &.{},
868
test_runner: ?LazyPath = null,
869
link_libc: ?bool = null,
870
+ link_libcpp: ?bool = null,
871
single_threaded: ?bool = null,
872
pic: ?bool = null,
873
strip: ?bool = null,
@@ -896,6 +897,7 @@ pub fn addTest(b: *Build, options: TestOptions) *Step.Compile {
896
897
.target = options.target orelse b.graph.host,
898
.optimize = options.optimize,
899
.link_libc = options.link_libc,
900
+ .link_libcpp = options.link_libcpp,
901
.single_threaded = options.single_threaded,
902
.pic = options.pic,
903
.strip = options.strip,
0 commit comments