| ... | @@ -12,13 +12,22 @@ const log = std.log; | ... | @@ -12,13 +12,22 @@ const log = std.log; |
| 12 | const fs = std.fs; | 12 | const fs = std.fs; |
| 13 | | 13 | |
| 14 | const exempt_files = [_][]const u8{ | 14 | const exempt_files = [_][]const u8{ |
| | 15 | // This file is maintained by a separate project and does not come from glibc. |
| 15 | "abilists", | 16 | "abilists", |
| | 17 | |
| | 18 | // Generated files. |
| 16 | "include/libc-modules.h", | 19 | "include/libc-modules.h", |
| 17 | "include/config.h", | 20 | "include/config.h", |
| | 21 | |
| 18 | // These are easier to maintain like this, without updating to the abi-note.c | 22 | // These are easier to maintain like this, without updating to the abi-note.c |
| 19 | // that glibc did upstream. | 23 | // that glibc did upstream. |
| 20 | "csu/abi-tag.h", | 24 | "csu/abi-tag.h", |
| 21 | "csu/abi-note.S", | 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 | pub fn main() !void { | 33 | pub fn main() !void { |