All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] RISC-V: Guard alternative asm macros with !LINKER_SCRIPT
@ 2023-02-14 20:13 Palmer Dabbelt
  2023-02-15  0:02 ` Palmer Dabbelt
  0 siblings, 1 reply; 3+ messages in thread
From: Palmer Dabbelt @ 2023-02-14 20:13 UTC (permalink / raw)
  To: linux-riscv; +Cc: Palmer Dabbelt

Without this I get a handful of .macro related directives that trip up
LD.

Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
---
I'm not sure when this started failing, but I recently tried a build on
my local machine (with crossdev-based toolchains) and it failed.
---
 arch/riscv/include/asm/alternative-macros.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/riscv/include/asm/alternative-macros.h b/arch/riscv/include/asm/alternative-macros.h
index cc6a81c00f2f..afc87528cf71 100644
--- a/arch/riscv/include/asm/alternative-macros.h
+++ b/arch/riscv/include/asm/alternative-macros.h
@@ -6,6 +6,8 @@
 
 #ifdef __ASSEMBLY__
 
+#ifndef LINKER_SCRIPT
+
 .macro ALT_ENTRY oldptr newptr vendor_id errata_id new_len
 	.4byte \oldptr - .
 	.4byte \newptr - .
@@ -53,6 +55,8 @@
 #define __ALTERNATIVE_CFG(...)		ALTERNATIVE_CFG __VA_ARGS__
 #define __ALTERNATIVE_CFG_2(...)	ALTERNATIVE_CFG_2 __VA_ARGS__
 
+#endif /* LINKER_SCRIPT */
+
 #else /* !__ASSEMBLY__ */
 
 #include <asm/asm.h>
-- 
2.39.0


_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-02-15  0:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-14 20:13 [PATCH] RISC-V: Guard alternative asm macros with !LINKER_SCRIPT Palmer Dabbelt
2023-02-15  0:02 ` Palmer Dabbelt
2023-02-15  0:08   ` Conor Dooley

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.