mirror of
https://github.com/ziglang/zig.git
synced 2026-01-11 09:55:12 +00:00
std.pie: add microblaze support
This commit is contained in:
parent
fc48f8aa55
commit
fb2c02929e
@ -13,6 +13,7 @@ const R_CSKY_RELATIVE = 9;
|
||||
const R_HEXAGON_RELATIVE = 35;
|
||||
const R_LARCH_RELATIVE = 3;
|
||||
const R_68K_RELATIVE = 22;
|
||||
const R_MICROBLAZE_REL = 16;
|
||||
const R_MIPS_RELATIVE = 128;
|
||||
const R_OR1K_RELATIVE = 21;
|
||||
const R_PPC_RELATIVE = 22;
|
||||
@ -31,6 +32,7 @@ const R_RELATIVE = switch (builtin.cpu.arch) {
|
||||
.hexagon => R_HEXAGON_RELATIVE,
|
||||
.loongarch32, .loongarch64 => R_LARCH_RELATIVE,
|
||||
.m68k => R_68K_RELATIVE,
|
||||
.microblaze, .microblazeel => R_MICROBLAZE_REL,
|
||||
.mips, .mipsel, .mips64, .mips64el => R_MIPS_RELATIVE,
|
||||
.or1k => R_OR1K_RELATIVE,
|
||||
.powerpc, .powerpcle, .powerpc64, .powerpc64le => R_PPC_RELATIVE,
|
||||
@ -129,6 +131,10 @@ inline fn getDynamicSymbol() [*]const elf.Dyn {
|
||||
\\ lea (%[ret], %%pc), %[ret]
|
||||
: [ret] "=r" (-> [*]const elf.Dyn),
|
||||
),
|
||||
.microblaze, .microblazeel => asm volatile (
|
||||
\\ lwi %[ret], r20, 0
|
||||
: [ret] "=r" (-> [*]const elf.Dyn),
|
||||
),
|
||||
.mips, .mipsel => asm volatile (
|
||||
\\ .weak _DYNAMIC
|
||||
\\ .hidden _DYNAMIC
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user