authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-12-15 15:28:37-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-12-15 15:28:37-07:00
logd9fe0d2d6b55f618a4c4be82ece0fc01a7a3026f
tree45aa364e9479de29e4b4a262ad3810da75cbd724
parent3dcd3612dca6f649a1e05f558c5d6ed462d2e4a4

tools/update_glibc: ignore some more files


1 files changed, 9 insertions(+), 0 deletions(-)

tools/update_glibc.zig+9
......@@ -12,13 +12,22 @@ const log = std.log;
1212const fs = std.fs;
1313
1414const exempt_files = [_][]const u8{
15 // This file is maintained by a separate project and does not come from glibc.
1516 "abilists",
17
18 // Generated files.
1619 "include/libc-modules.h",
1720 "include/config.h",
21
1822 // These are easier to maintain like this, without updating to the abi-note.c
1923 // that glibc did upstream.
2024 "csu/abi-tag.h",
2125 "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",
2231};
2332
2433pub fn main() !void {