This service is available only in Japanese-language.

Ubuntu 16.04上でu-boot-imx_2017.03.bbのbuild errorが発生する

社内のエンジニアからの問い合わせです。

Ubuntu16.04上で、NXPの 4.9.11-1.0.0 を使用してNXP i.MX 6QuadPlus SABRE Device の構築を行ったところ
------------------------------------------------------------------------------------------------------------------------
tools/libfdt_wrap.c:147:21: fatal error: Python.h: No such file or directory
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
------------------------------------------------
u-boot-imx_2017.03.bb のbuild に失敗します。

NXPの4.9.51のu-boot-imxのレシピと比較したところ、4.9.51のレシピでは
inherit pythonnative 及び DEPENDS_append に python が追加されています。
以下の内容のbbapendを作成したところ、buildが通ることを確認しております。
==========================================================
inherit pythonnative
DEPENDS_append = " python "
==========================================================