diff options
| author | Pat Tullmann <pat.github@tullmann.org> | 2024-07-31 22:49:39 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-08-07 13:05:42 -0700 |
| commit | 4d6429fc4fd299cdfb2256d4aac87bc6551ba09e (patch) | |
| tree | 8b7de21ad01c27119b19a0b18b0cf962f418c985 /src/codegen/llvm | |
| parent | 979fd12be96d5f8eda3e02ba676aecea78e6c0db (diff) | |
| download | zig-4d6429fc4fd299cdfb2256d4aac87bc6551ba09e.tar.gz zig-4d6429fc4fd299cdfb2256d4aac87bc6551ba09e.zip | |
POSIX link() syscall only takes two arguments (no flags)
The signature is documented as:
int link(const char *, const char *);
(see https://man7.org/linux/man-pages/man2/link.2.html or https://man.netbsd.org/link.2)
And its not some Linux extension, the [syscall
implementation](https://github.com/torvalds/linux/blob/21b136cc63d2a9ddd60d4699552b69c214b32964/fs/namei.c#L4794-L4797)
only expects two arguments too.
It probably *should* have a flags parameter, but its too late now.
I am a bit surprised that linking glibc or musl against code that invokes
a 'link' with three parameters doesn't fail (at least, I couldn't get any
local test cases to trigger a compile or link error).
The test case in std/posix/test.zig is currently disabled, but if I
manually enable it, it works with this change.
Diffstat (limited to 'src/codegen/llvm')
0 files changed, 0 insertions, 0 deletions
