mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
aarch64: Add an offset parameter to the movrel macro
With apple tools, the linker fails with errors like these, if the
offset is negative:
ld: in section __TEXT,__text reloc 8: symbol index out of range for architecture arm64
This is cherry-picked from libav commit
c44a8a3eab
.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
parent
6bec60a683
commit
7fe898dbb9
@ -72,15 +72,21 @@ ELF .size \name, . - \name
|
||||
\name:
|
||||
.endm
|
||||
|
||||
.macro movrel rd, val
|
||||
.macro movrel rd, val, offset=0
|
||||
#if CONFIG_PIC && defined(__APPLE__)
|
||||
.if \offset < 0
|
||||
adrp \rd, \val@PAGE
|
||||
add \rd, \rd, \val@PAGEOFF
|
||||
sub \rd, \rd, -(\offset)
|
||||
.else
|
||||
adrp \rd, \val+(\offset)@PAGE
|
||||
add \rd, \rd, \val+(\offset)@PAGEOFF
|
||||
.endif
|
||||
#elif CONFIG_PIC
|
||||
adrp \rd, \val
|
||||
add \rd, \rd, :lo12:\val
|
||||
adrp \rd, \val+\offset
|
||||
add \rd, \rd, :lo12:\val+\offset
|
||||
#else
|
||||
ldr \rd, =\val
|
||||
ldr \rd, =\val+\offset
|
||||
#endif
|
||||
.endm
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user