On Thu, Mar 12, 2009 at 9:20 PM, ts7300 <> wrote:
> thanx for guide me.M
> 1)Make oldconfig now pass with no error.
> 2)Make dep
> --------------------------------------
> rm -f include/asm
> ( cd include ; ln -sf asm-arm asm)
> make[1]: Entering directory `/home/amitsaini/linux24/arch/arm/tools'
> /home/amitsaini/linux24/scripts/mkdep -D__KERNEL__
> -I/home/amitsaini/linux24/include -Wall -Wstrict-prototypes -Wno-trigraphs
> -Os -fno-strict-aliasing -fno-common -Uarm -fno-common -pipe -mapcs-32
> -D__LINUX_ARM_ARCH__=4 -march=armv4 -mtune=arm9tdmi -msoft-float -Uarm --
> getconstants.c |\
> sed s,getconstants.o,constants.h, > .depend
> make all
> make[2]: Entering directory `/home/amitsaini/linux24/arch/arm/tools'
> arm-unknown-linux-gnu-gcc -D__KERNEL__ -I/home/amitsaini/linux24/include
> -Wall -Wstrict-prototypes -Wno-trigraphs -Os -fno-strict-aliasing -fno-common
> -Uarm -fno-common -pipe -mapcs-32 -D__LINUX_ARM_ARCH__=4 -march=armv4
> -mtune=arm9tdmi -msoft-float -Uarm -S -o constants.h.tmp.1 getconstants.c
> make[2]: arm-unknown-linux-gnu-gcc: Command not found
> make[2]: *** [constants.h] Error 127
> make[2]: Leaving directory `/home/amitsaini/linux24/arch/arm/tools'
> make[1]: *** [dep] Error 2
> make[1]: Leaving directory `/home/amitsaini/linux24/arch/arm/tools'
> make: *** [archdep] Error 2
> --------------------------------------------------------
> What I thing this is due to gcc.Because its showing arm-unknown-linux-gnu-gcc
> command not found.any suggestion on this.
>
This looks like you do not have the path to the
arm-unknown-linux-gnu-gcc executable in your PATH environment
variable.
Where did you install the cross toolchain? Once you can answer that
question, you can add this in your .profile:
export PATH="$PATH:/path/to/your/cross-tool/bin"
Also, try looking for CROSS_COMPILE in the toplevel Makefile of the
linux kernel source. If you are using the ts kernel, it should be set
to where it thinks the cross tool is installed (which might not match
your system).
Ted Roth
------------------------------------
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ts-7000/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/ts-7000/join
(Yahoo! ID required)
<*> To change settings via email:
<*> To unsubscribe from this group, send an email to:
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|