Hi Paul, On 20.10.2016 22:27, Paul Burton wrote:
diff --git a/arch/mips/kernel/vmlinux.lds.S b/arch/mips/kernel/vmlinux.lds.S index d5de675..d1f5401 100644 --- a/arch/mips/kernel/vmlinux.lds.S +++ b/arch/mips/kernel/vmlinux.lds.S @@ -1,3 +1,4 @@ +#include <asm/asm.h> #include <asm/asm-offsets.h> #include <asm/thread_info.h>
This patch (and specifically including asm/asm.h) causes a build error when CONFIG_RELOCATABLE=y as there's a LONG() linker command that gets converted to '.[d]word' as a result of including the assembly macros ...
Marcin