Comment 1 for bug 229834

Revision history for this message
Aaron Brice (aaron-brice) wrote :

If you try to reproduce, the Makefile in that commit has a bug that prevents cross-compiling powerpc or ia64:

CC = $(CROSS_COMPILE)gcc

#
# gcc-4.2 won't build powerpc64-smp or ia64.
#
ifneq (,$(findstring $(ARCH), powerpc ia64))
CC = gcc-4.1
endif

I just deleted the second part of that.