我有一个在 Docker 容器(CentOS 7)上运行的 BitBake 构建过程。在我尝试的每次运行中,BitBake 在 recipe gcc-cross-i586-5.2.0-r0: task do_compile
期间失败。
bitbake
的输出示例:
NOTE: recipe gcc-cross-i586-5.2.0-r0: task do_compile: Started
ERROR: Worker process (367) exited unexpectedly (-9), shutting down...
ERROR: Worker process (367) exited unexpectedly (-9), shutting down...
ERROR: Worker process (367) exited unexpectedly (-9), shutting down...
ERROR: Worker process (367) exited unexpectedly (-9), shutting down...
NOTE: Tasks Summary: Attempted 1538 tasks of which 17 didn't need to be rerun and all succeeded.
这是
recipe gcc-cross-i586-5.2.0-r0: task do_compile
的问题吗?也许是内存不足错误?我不知道 -9
指的是什么,也不知道如何找到有关它的更多信息。 最佳答案
尝试:
$ bitbake -c cleansstate gcc-cross ; bitbake -k gcc-cross
你有多少内存内存?
在这里报告日志错误。
关于linux - 什么导致 BitBake 工作进程意外退出?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34441225/