diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-08-20 04:03:36 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-08-20 04:03:36 -0400 |
| commit | d9dd50d74c282aefcb89ca922523916b88a6236f (patch) | |
| tree | 56a6f6658059327ad975afbf20f6ace272a98805 /std/build.zig | |
| parent | 8e19bdfc797cb419bddb4334e7d81abd382c11d9 (diff) | |
| download | zig-d9dd50d74c282aefcb89ca922523916b88a6236f.tar.gz zig-d9dd50d74c282aefcb89ca922523916b88a6236f.zip | |
fix not propagating parseh aliases through pub use decls
Diffstat (limited to 'std/build.zig')
| -rw-r--r-- | std/build.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/std/build.zig b/std/build.zig index 99900a1700..7a40e97f52 100644 --- a/std/build.zig +++ b/std/build.zig @@ -979,7 +979,7 @@ pub const LibExeObjStep = struct { for (builder.include_paths.toSliceConst()) |include_path| { %%zig_args.append("-isystem"); - %%zig_args.append(include_path); + %%zig_args.append(builder.pathFromRoot(include_path)); } for (builder.rpaths.toSliceConst()) |rpath| { @@ -1086,7 +1086,7 @@ pub const TestStep = struct { for (builder.include_paths.toSliceConst()) |include_path| { %%zig_args.append("-isystem"); - %%zig_args.append(include_path); + %%zig_args.append(builder.pathFromRoot(include_path)); } for (builder.rpaths.toSliceConst()) |rpath| { |
