【发布时间】:2013-06-26 08:40:26
【问题描述】:
我有一个使用 bitbake 进行构建的 OpenEmbedded 环境。我想在 bitbake 暂停并要求输入然后继续构建的地方进行一些“交互式”,但我发现这是不可能的。
因为我不能这样做,所以我正在寻找某种方法来为构建传递额外的标志。有没有办法将标志传递给类似于 gcc 的 -D 选项的 bitbake 构建?
即:
bitbake -Dfoo=bar oe-myimage
因此在oe-myimage 的构建过程中,变量foo 将被设置为bar。
【问题讨论】:
标签: build command-line-arguments compiler-flags openembedded bitbake