0

我正在交叉编译linux内核。当我从 ti 的目录运行 make 时,我有以下程序编译得很好

kernel/Documentation/virtual/lguest

但是,当我编译 linux 内核然后在目标机器上启动内核映像时,lguest 程序无处可去。(我通过运行 find / -name lguest 确认了这一点)

如何确保 lguest 程序进入 linux 内核的某个位置?

4

1 回答 1

0

您必须 cd Documentation/virtual/lguest 并在该目录中明确执行“make”:

cd 文档/虚拟/lguest

制作

cc -m32 -Wall -Wmissing-declarations -Wmissing-prototypes -O3 -U_FORTIFY_SOURCE lguest.c -o lguest

于 2012-05-14T03:08:26.747 回答