我有关于bitbake的构建问题如下:
(1)我在我的默认文件夹中安装bitbake:/home/xiang/bitbake
,并将“BBPATH
”设置为/home/xiang/bitbake
(2)创建了两个用于编译的文件:
/home/xiang/bbtest/hello.c
/home/xiang/bbtest/hello.bb
对于hello.c
#include "stdio.h"
int main()
{
printf("hello world.\n");
}
对于hello.bb
XFILES=/home/xiang/bbtest/hello.c
do_mybuild() {
${CC} ${CFLAGS} $(LDFLAGS} $(XFILES} -o helloworld
}
如何解决此问题?以及如何在不同的bb文件中添加更多独立任务并控制它们?
答案 0 :(得分:0)
这不是你应该怎么写食谱。请按照此处显示的步骤1进行操作:Create your own Bitbake recipe
以上链接是与Yocto的Bitbake。您也可以按照类似的程序进行其他分发。有关详细信息,请参阅本手册Bitbake User Manual
干杯!