Skip to content

Commit

Permalink
www/webkit2-gtk4: Fix build on aarch64
Browse files Browse the repository at this point in the history
Approved by:	portmgr (build fix blanket)
  • Loading branch information
MikaelUrankar committed Feb 7, 2023
1 parent 3a364df commit 0ecefb7
Showing 1 changed file with 11 additions and 0 deletions.
@@ -0,0 +1,11 @@
--- Source/JavaScriptCore/offlineasm/arm64.rb.orig 2021-09-22 23:05:58 UTC
+++ Source/JavaScriptCore/offlineasm/arm64.rb
@@ -1127,7 +1127,7 @@ class Instruction
$asm.puts "ldr #{operands[1].arm64Operand(:quad)}, [#{operands[1].arm64Operand(:quad)}, #{operands[0].asmLabel}@GOTPAGEOFF]"

# On Linux, use ELF GOT relocation specifiers.
- $asm.putStr("#elif OS(LINUX)")
+ $asm.putStr("#elif OS(LINUX) || OS(FREEBSD)")
$asm.puts "adrp #{operands[1].arm64Operand(:quad)}, :got:#{operands[0].asmLabel}"
$asm.puts "ldr #{operands[1].arm64Operand(:quad)}, [#{operands[1].arm64Operand(:quad)}, :got_lo12:#{operands[0].asmLabel}]"

0 comments on commit 0ecefb7

Please sign in to comment.