CC and AR have default values, so doing: CC?=$(CROSS_COMPILE)gcc will never modify CC. Fix this by setting CC and AR with $(CROSS_COMPILE) prepended. Signed-off-by: Phil Edworthy <phil.edworthy@xxxxxxxxxxx> --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 569adc1..760ce80 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 1.0 -CC?=$(CROSS_COMPILE)gcc -AR?=$(CROSS_COMPILE)ar +CC=$(CROSS_COMPILE)gcc +AR=$(CROSS_COMPILE)ar OBJDIR = bld -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html