mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
musl: replace .data.rel.ro with .section .data.rel.ro,"aw"
The former was an LLVM extension that appears to have been removed in LLVM 21. I won't bother fixing gen_stubs.zig; see #23881.
This commit is contained in:
parent
2b84eb85ee
commit
dfa55e193d
1 changed files with 1 additions and 1 deletions
2
lib/libc/musl/libc.S
vendored
2
lib/libc/musl/libc.S
vendored
|
|
@ -124,7 +124,7 @@ opterr:
|
||||||
.type optind, %object;
|
.type optind, %object;
|
||||||
.size optind, 4
|
.size optind, 4
|
||||||
optind:
|
optind:
|
||||||
.data.rel.ro
|
.section .data.rel.ro,"aw"
|
||||||
.globl stderr
|
.globl stderr
|
||||||
.type stderr, %object;
|
.type stderr, %object;
|
||||||
.size stderr, PTR_SIZE_BYTES
|
.size stderr, PTR_SIZE_BYTES
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue