Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the job for oe_runmake in yocto?

I want to know about the oe_runmake in yocto.

like image 200
yoctotutor.com Avatar asked Jun 14 '17 06:06

yoctotutor.com


1 Answers

oe_runmake function is used to run make.

oe_runmake

  • passes EXTRA_OEMAKE settings to make
  • displays the make command
  • checks for errors generated via the call.

In OE environment you should not call make directly rather use oe_runmake when you need to run make.

oe_runmake is one of many helper functions defined by the base class. For a list of helper functions you can refer OEManual

like image 155
sob Avatar answered Oct 24 '22 10:10

sob