blob: fe7c53337a1df99adac0caab04763804254f12c5 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001
2def get_cairo_fpu_setting(bb, d):
Brad Bishop6e60e8b2018-02-01 10:27:11 -05003 if d.getVar('TARGET_FPU') in [ 'soft' ]:
Patrick Williamsc124f4f2015-09-15 14:41:29 -05004 return "--disable-some-floating-point"
5 return ""
6