| ... | ... | @@ -12,13 +12,22 @@ const log = std.log; |
| 12 | 12 | const fs = std.fs; |
| 13 | 13 | |
| 14 | 14 | const exempt_files = [_][]const u8{ |
| 15 | // This file is maintained by a separate project and does not come from glibc. |
| 15 | 16 | "abilists", |
| 17 | |
| 18 | // Generated files. |
| 16 | 19 | "include/libc-modules.h", |
| 17 | 20 | "include/config.h", |
| 21 | |
| 18 | 22 | // These are easier to maintain like this, without updating to the abi-note.c |
| 19 | 23 | // that glibc did upstream. |
| 20 | 24 | "csu/abi-tag.h", |
| 21 | 25 | "csu/abi-note.S", |
| 26 | |
| 27 | // We have patched these files to require fewer includes. |
| 28 | "stdlib/at_quick_exit.c", |
| 29 | "stdlib/atexit.c", |
| 30 | "sysdeps/pthread/pthread_atfork.c", |
| 22 | 31 | }; |
| 23 | 32 | |
| 24 | 33 | pub fn main() !void { |