Make:命令未找到,但命令存在?

时间:2013-02-21 10:48:43

标签: linux path makefile slackware

所以我有一个使用arm-eabi-none-xxx命令的make文件,但是当我运行make时,我得到一个“找不到命令”错误:

bash-4.2$ make
arm-none-eabi-as -I source/ source/mailbox.s -o build/mailbox.o
make: arm-none-eabi-as: Command not found
make: *** [build/mailbox.o] Error 127

很奇怪,是命令存在并且在我的路径中(以下是与makefile在同一目录中):

bash-4.2$ arm-none-eabi-as --version
GNU assembler (Sourcery G++ Lite 2008q3-66) 2.18.50.20080215
This assembler was configured for a target of `arm-none-eabi'.

我可以运行make正在运行的命令:

bash-4.2$ arm-none-eabi-as -I source/ source/mailbox.s -o build/mailbox.o
bash-4.2$ ls build/
README  mailbox.o

因此。我读到如果./在当前路径中,那么make使用shell来执行命令,所以我尝试过但没有好处。最初我根本无法运行arm-none-eabi-as因为它是32位二进制文​​件而且我运行的是64位系统(Slackware 14.0)but I followed the instructions here to install the 32-bit libraries等。

所以问题是......我犯了什么愚蠢的小学生错误?

1 个答案:

答案 0 :(得分:0)

你是以sudo或root身份运行'make'吗?在那种情况下,它对我不起作用。 我必须要做的是mkdir一个'build'文件夹,只需运行'make'。它奏效了。