| author | |
| committer | |
| log | c5cdc0262b727e87d81fe4a92780234bf8125bd9 |
| tree | 6dba208989ccb96c971dc561922b4159b0fc4ac0 |
| parent | 149aa9afb7b57340c5dd7be8032b843fe439b668 |
This was from master branch commit
c93e0d86187cb589d6726acd36f741f3d87a96be. Since standalone test are
completely reworked, I had to resolve the merge conflict later, in this
commit.2 files changed, 5 insertions(+), 1 deletions(-)
test/standalone.zig+4| ... | ... | @@ -147,6 +147,10 @@ pub const build_cases = [_]BuildCase{ |
| 147 | 147 | .build_root = "test/standalone/embed_generated_file", |
| 148 | 148 | .import = @import("standalone/embed_generated_file/build.zig"), |
| 149 | 149 | }, |
| 150 | .{ | |
| 151 | .build_root = "test/standalone/extern", | |
| 152 | .import = @import("standalone/extern/build.zig"), | |
| 153 | }, | |
| 150 | 154 | .{ |
| 151 | 155 | .build_root = "test/standalone/dep_diamond", |
| 152 | 156 | .import = @import("standalone/dep_diamond/build.zig"), |
test/standalone/extern/build.zig+1-1| ... | ... | @@ -1,7 +1,7 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | 2 | |
| 3 | 3 | pub fn build(b: *std.Build) void { |
| 4 | const optimize = b.standardOptimizeOption(.{}); | |
| 4 | const optimize: std.builtin.OptimizeMode = .Debug; | |
| 5 | 5 | |
| 6 | 6 | const obj = b.addObject(.{ |
| 7 | 7 | .name = "exports", |