mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 00:32:14 +02:00
(From OE-Core rev: 604d46c686d06d62d5a07b9c7f4fa170f99307d8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 lines
134 B
PHP
7 lines
134 B
PHP
|
|
def get_clutter_fpu_setting(bb, d):
|
|
if d.getVar('TARGET_FPU', True) in [ 'soft' ]:
|
|
return "--without-fpu"
|
|
return ""
|
|
|