mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
tools/update_glibc: ignore some more files
This commit is contained in:
parent
3dcd3612dc
commit
d9fe0d2d6b
@ -12,13 +12,22 @@ const log = std.log;
|
|||||||
const fs = std.fs;
|
const fs = std.fs;
|
||||||
|
|
||||||
const exempt_files = [_][]const u8{
|
const exempt_files = [_][]const u8{
|
||||||
|
// This file is maintained by a separate project and does not come from glibc.
|
||||||
"abilists",
|
"abilists",
|
||||||
|
|
||||||
|
// Generated files.
|
||||||
"include/libc-modules.h",
|
"include/libc-modules.h",
|
||||||
"include/config.h",
|
"include/config.h",
|
||||||
|
|
||||||
// These are easier to maintain like this, without updating to the abi-note.c
|
// These are easier to maintain like this, without updating to the abi-note.c
|
||||||
// that glibc did upstream.
|
// that glibc did upstream.
|
||||||
"csu/abi-tag.h",
|
"csu/abi-tag.h",
|
||||||
"csu/abi-note.S",
|
"csu/abi-note.S",
|
||||||
|
|
||||||
|
// We have patched these files to require fewer includes.
|
||||||
|
"stdlib/at_quick_exit.c",
|
||||||
|
"stdlib/atexit.c",
|
||||||
|
"sysdeps/pthread/pthread_atfork.c",
|
||||||
};
|
};
|
||||||
|
|
||||||
pub fn main() !void {
|
pub fn main() !void {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user