On 01/11/17 16:58, Mark Salyzyn wrote:And yet, when you CROSS_COMPILE_ARM32 a vdso32, you have no choice but to utilize the arm64 headers since they contain all the relevant kernel structures and environment.
Cross compiling to aarch32 (for vdso32) using clang correctlyIt sounds more like some paths are wrong in the compat vDSO build if
identifies that (the unused) write_sysreg inline asm directive is
illegal in that architectural context:
arch/arm64/include/asm/arch_timer.h: error: invalid input constraint 'rZ' in asm
write_sysreg(cntkctl, cntkctl_el1);
^
arch/arm64/include/asm/sysreg.h: note: expanded from macro 'write_sysreg'
: : "rZ" (__val));
^
GCC normally checks for correctness everywhere. But uniquely for
unused asm, will optimize out and suppress the error report.
it's pulling in this header in the first place - nothing in this file is
relevant to AArch32.
Robin.