blob: 07ca89cafbedeb9ee35ee5f1963c15a1aa861552 (
plain)
1
2
3
4
5
6
|
def get_alsa_versym_setting(bb, d):
# Versioned symbols don't work propery with uClibc
if bb.data.getVar('TARGET_OS', d, 1).find('uclibc') >= 0:
return "--with-versioned=no"
return ""
|