From 4355eb6aeababf0126972f85bdeed63048a99df1 Mon Sep 17 00:00:00 2001 From: tb <> Date: Thu, 9 Feb 2023 19:57:00 +0000 Subject: Use .section .rodata instead of a plain .rodata At least gcc 12 on Fedora is very unhappy about a plain .rodata and throws Error: unknown pseudo-op: `.rodata'. So add a .section in front of it to make it happy. ok deraadt miod --- src/lib/libcrypto/modes/asm/ghash-x86_64.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/libcrypto/modes') diff --git a/src/lib/libcrypto/modes/asm/ghash-x86_64.pl b/src/lib/libcrypto/modes/asm/ghash-x86_64.pl index 3ae8629cbe..bce62947f9 100644 --- a/src/lib/libcrypto/modes/asm/ghash-x86_64.pl +++ b/src/lib/libcrypto/modes/asm/ghash-x86_64.pl @@ -622,7 +622,7 @@ ___ } $code.=<<___; -.rodata +.section .rodata .align 64 .Lbswap_mask: .byte 15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0 -- cgit v1.2.3-55-g6feb