| author | |
| committer | |
| log | 6490e571365ee9f9a6afc1236adae414cb93ae1e |
| tree | 5d04d27f565c88903fea2b0d7ea13fcaf995bc03 |
| parent | e9e91b4ed058f4c4e3f3380ec06cb914becd04a8 |
| signature |
1 files changed, 3 insertions(+), 0 deletions(-)
lib/std/zig/system.zig+3| ... | ... | @@ -46,6 +46,9 @@ pub const NativePaths = struct { |
| 46 | 46 | var it = mem.tokenize(nix_cflags_compile, " "); |
| 47 | 47 | while (true) { |
| 48 | 48 | const word = it.next() orelse break; |
| 49 | if (mem.startsWith(u8, word, "-frandom-seed=")) { | |
| 50 | continue; | |
| 51 | } | |
| 49 | 52 | if (mem.eql(u8, word, "-isystem")) { |
| 50 | 53 | const include_path = it.next() orelse { |
| 51 | 54 | try self.addWarning("Expected argument after -isystem in NIX_CFLAGS_COMPILE"); |