我已经非常广泛地搜索解决方案,但是我发现的所有解决方案都与 PATH 变量中没有 gcc 或未正确安装有关。
我的问题是,当我运行 Makefile 时,出现错误提示“无法找到 gcc”。
生成文件:
boot0.o: boot0.S
gcc -MD -fno-builtin -nostdinc -fno-stack-protector -Os -g -m32 -I. -c -o boot0.o boot0.S
我运行时出现错误make
:
gcc -MD -fno-builtin -nostdinc -fno-stack-protector -Os -g -m32 -I. -c -o boot0.o boot0.S
make: gcc: Command not found
Makefile:2: recipe for target 'boot0.o' failed
make: *** [boot0.o] Error 127
但是,当我直接在命令行中运行该命令时,它可以正常工作。