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;...@@ -12,13 +12,22 @@ const log = std.log;
12const fs = std.fs;12const fs = std.fs;
1313
14const exempt_files = [_][]const u8{14const 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.c22 // 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};
2332
24pub fn main() !void {33pub fn main() !void {