当尝试在64位(Xenial Xerus)Ubuntu 16.04.4上构建Jonesforth(32位GNU汇编程序)时,我看到以下内容:
~/src/jonesforth $ make
gcc -m32 -nostdlib -static -o jonesforth jonesforth.S
jonesforth.S:1154:24: fatal error: asm/unistd.h: No such file or directory
compilation terminated.
Makefile:11: recipe for target 'jonesforth' failed
在文件jonesforth.S
中,我注意到以下几行:
//#include <asm-i386/unistd.h> // You might need this instead
#include <asm/unistd.h>
我尝试改用asm-i386/unistd.h
,但这似乎也无济于事。
通过sudo apt install linux-headers...
安装更多标题是最好的做法吗?如果是这样,我应该选择哪一个? linux-headers-generic
应该足够吗?
或者,我应该更改jonesforth.S
所指的标头吗?
答案 0 :(得分:1)
在制作食谱中添加-I /usr/include/x86_64-linux-gnu
似乎已解决了该问题:
jonesforth: jonesforth.S
gcc -I /usr/include/x86_64-linux-gnu -m32 -nostdlib -static $(BUILD_ID_NONE) -o $@ $<
感谢上面Peter Cordes的建议!
答案 1 :(得分:1)
您需要安装软件包multilib
。