7 lines
142 B
C++
7 lines
142 B
C++
|
|
def get_cairo_fpu_setting(bb, d):
|
|
if d.getVar('TARGET_FPU') in [ 'soft' ]:
|
|
return "--disable-some-floating-point"
|
|
return ""
|
|
|