我有一个关于 bitbake 的构建问题,如下所示:
(1) 我将 bitbake 安装在我的默认文件夹 :/home/xiang/bitbake
中,并将 ' BBPATH
' 设置为/home/xiang/bitbake
(2) 创建两个文件进行编译:
/home/xiang/bbtest/hello.c
/home/xiang/bbtest/hello.bb
对于你好.c
#include "stdio.h"
int main()
{
printf("hello world.\n");
}
为你好.bb
XFILES=/home/xiang/bbtest/hello.c
do_mybuild() {
${CC} ${CFLAGS} $(LDFLAGS} $(XFILES} -o helloworld
}
如何解决这个问题?以及如何在不同的bb文件中添加更多独立的任务并进行控制?