ccdv.bbclass 839 B

123456789101112131415161718192021
  1. python () {
  2. if bb.data.getVar('PN', d, 1) in ['ccdv-native']:
  3. if not bb.data.getVar('INHIBIT_DEFAULT_DEPS', d, 1):
  4. bb.data.setVar("DEPENDS", '%s %s' % ("ccdv-native", bb.data.getVar("DEPENDS", d, 1) or ""), d)
  5. bb.data.setVar("CC", '%s %s' % ("ccdv", bb.data.getVar("CC", d, 1) or ""), d)
  6. bb.data.setVar("BUILD_CC", '%s %s' % ("ccdv", bb.data.getVar("BUILD_CC", d, 1) or ""), d)
  7. bb.data.setVar("CCLD", '%s %s' % ("ccdv", bb.data.getVar("CCLD", d, 1) or ""), d)
  8. }
  9. def quiet_libtool(bb,d):
  10. deps = (bb.data.getVar('DEPENDS', d, 1) or "").split()
  11. if 'libtool-cross' in deps:
  12. return "'LIBTOOL=${STAGING_BINDIR}/${HOST_SYS}-libtool --silent'"
  13. elif 'libtool-native' in deps:
  14. return "'LIBTOOL=${B}/${HOST_SYS}-libtool --silent'"
  15. else:
  16. return ""
  17. CCDV = "ccdv"
  18. EXTRA_OEMAKE_append = " ${@quiet_libtool(bb,d)}"
  19. MAKE += "-s"