To build bash for arm from a i486,

untar bash (version 2)
./configure --target=linux-arm

Edit Makefile and replace

mksignames:     $(SUPPORT_SRC)mksignames.c
        $(CC) $(CCFLAGS) $(CPPFLAGS) -o $@ $(SUPPORT_SRC)mksignames.c   

by
           
mksignames:     $(SUPPORT_SRC)mksignames.c
        $(CC_FOR_BUILD) $(CCFLAGS) $(CPPFLAGS) -o $@
$(SUPPORT_SRC)mksignames.c              

then 

make CC=arm-linux-gcc CC_FOR_BUILD=gcc AR=arm-linux-ar
RANLIB=arm-linux-ranlib

Christophe
unsubscribe: body of `unsubscribe linux-arm' to [EMAIL PROTECTED]

Reply via email to