make -f scripts/Makefile.build obj=scripts
gcc -Wp,-MD,scripts/.modpost.o.d -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -c -o scripts/modpost.o scripts/modpost.c
scripts/modpost.c: In function `handle_modversions':
scripts/modpost.c:302: `STT_REGISTER' undeclared (first use in this function)
scripts/modpost.c:302: (Each undeclared identifier is reported only once
scripts/modpost.c:302: for each function it appears in.)
make[1]: *** [scripts/modpost.o] Error 1
make: *** [scripts] Error 2
2.5.67 added a check for a SPARC-specific elf thingy (STT_REGISTER)
in modpost.c and include/linux/elf.h. However, script/modpost.c
#includes glibc's elf.h not the kernel's. Older glibcs don't have
this constant, resulting in a compile error.
#ifndef STT_REGISTER at the offending code in modpost.c works
around the problem, but I assume the real fix is to make modpost.c
#include from the kernel's include dir instead.
/Mikael
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/