請叫關於編譯driver for ARM板的問題 - Linux

Table of Contents

Make file 內容如下

KERNELDIR = /root/kernel/linux-2.6.18.2
PWD := $(shell pwd)

CC = arm-none-linux-gnueabi-gcc

obj-m := test.o

modules:

$(MAKE) -C $(KERNELDIR) M=$(PWD) modules

之後進行編譯 系統卻說

make: arm-none-linux-gnueabi-gcc: Command not found

但是 arm-none-linux-gnueabi-gcc 我已經下載好了
PATH也修改過了 ...

請問我的問題大概出在哪裡...謝謝

--
_\^^^^^^^^/ \◣◣)◢
\ \\\ // / 萬事屋的.. ★\/ \ /∠◢
\ / \◤◤◤\
⊙ ⊙ ┬ ┬"
o
/|≡|\ /\/◣ by freijaking

--

All Comments

Oliver avatarOliver2011-06-23
PATH確定正確嗎? 直接在command line可以用嗎?
Mason avatarMason2011-06-28
which arm-none-linux-gnueabi-gcc 的結果?
Yuri avatarYuri2011-06-30
在別台電腦編譯成功 可能自己的環境錯誤 謝謝!!