| ... | @@ -46,6 +46,9 @@ pub const NativePaths = struct { | ... | @@ -46,6 +46,9 @@ pub const NativePaths = struct { |
| 46 | var it = mem.tokenize(nix_cflags_compile, " "); | 46 | var it = mem.tokenize(nix_cflags_compile, " "); |
| 47 | while (true) { | 47 | while (true) { |
| 48 | const word = it.next() orelse break; | 48 | const word = it.next() orelse break; |
| | 49 | if (mem.startsWith(u8, word, "-frandom-seed=")) { |
| | 50 | continue; |
| | 51 | } |
| 49 | if (mem.eql(u8, word, "-isystem")) { | 52 | if (mem.eql(u8, word, "-isystem")) { |
| 50 | const include_path = it.next() orelse { | 53 | const include_path = it.next() orelse { |
| 51 | try self.addWarning("Expected argument after -isystem in NIX_CFLAGS_COMPILE"); | 54 | try self.addWarning("Expected argument after -isystem in NIX_CFLAGS_COMPILE"); |