Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 buildroot 开发我自己定制的 Linux 系统。我正在尝试为 x86 构建内核。当我尝试使用交叉编译内核时
make CROSS_COMPILE = i686 - linux - ARCH = i386 make: *** empty variable name. Stop.
为什么我会收到此错误?
您至少需要删除空格
make CROSS_COMPILE=i686-linux ARCH=i386
但我不确定这是否足够。阅读GNU make 文档。