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 @@ -81,6 +81,7 @@ pub fn build(b: *std.Build) void {
8181 const exe = b .addExecutable (.{
8282 .name = @tagName (example ),
8383 .root_module = module ,
84+ .use_llvm = true ,
8485 });
8586 exe .root_module .addImport ("aio" , aio );
8687 exe .root_module .addImport ("coro" , coro );
@@ -105,6 +106,7 @@ pub fn build(b: *std.Build) void {
105106 const tst = b .addTest (.{
106107 .root_module = module ,
107108 .filters = &.{test_filter },
109+ .use_llvm = true ,
108110 });
109111 switch (mod ) {
110112 .minilib = > addImportsFrom (tst .root_module , minilib ),
@@ -140,6 +142,7 @@ pub fn build(b: *std.Build) void {
140142 const exe = b .addExecutable (.{
141143 .name = @tagName (bug ),
142144 .root_module = module ,
145+ .use_llvm = true ,
143146 });
144147 exe .root_module .addImport ("aio" , aio );
145148 exe .root_module .addImport ("coro" , coro );
@@ -170,6 +173,7 @@ pub fn build(b: *std.Build) void {
170173 const exe = b .addExecutable (.{
171174 .name = @tagName (bench ),
172175 .root_module = module ,
176+ .use_llvm = true ,
173177 });
174178 exe .root_module .addImport ("aio" , aio );
175179 exe .root_module .addImport ("coro" , coro );
You can’t perform that action at this time.
0 commit comments