7 lines
148 B
PHP
Raw Normal View History

2024-09-09 08:52:07 +00:00
def get_cairo_fpu_setting(bb, d):
2024-09-09 08:57:42 +00:00
if d.getVar('TARGET_FPU', True) in [ 'soft' ]:
return "--disable-some-floating-point"
return ""
2024-09-09 08:52:07 +00:00