Control: tags -1 +patch Hi,
I'm testing the attached patch now which was cherry-picked from [1]. Adrian > [1] https://github.com/boostorg/context/pull/305 -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer `. `' Physicist `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913
From 12280a8b2b1a030dc42861eed15ad696650867b8 Mon Sep 17 00:00:00 2001 From: tkoecker <[email protected]> Date: Fri, 16 May 2025 12:35:25 +0200 Subject: [PATCH] fix build of ontop_sparc64_sysv_elf_gas.S Fix the symbol names used for .size --- src/asm/ontop_sparc64_sysv_elf_gas.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asm/ontop_sparc64_sysv_elf_gas.S b/src/asm/ontop_sparc64_sysv_elf_gas.S index 2fcdb891..3e4b672f 100644 --- a/src/asm/ontop_sparc64_sysv_elf_gas.S +++ b/src/asm/ontop_sparc64_sysv_elf_gas.S @@ -45,6 +45,6 @@ ontop_fcontext: jmpl %o2, %g0 nop -.size jump_fcontext,.-jump_fcontext +.size ontop_fcontext,.-ontop_fcontext # Mark that we don't need executable stack. .section .note.GNU-stack,"",%progbits

