buildchroot-host.bb 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. # Root filesystem for packages building
  2. #
  3. # This software is a part of ISAR.
  4. # Copyright (C) 2015-2018 ilbers GmbH
  5. DESCRIPTION = "Isar development filesystem for host"
  6. require buildchroot.inc
  7. BUILDCHROOT_PREINSTALL ?= "make \
  8. debhelper \
  9. autotools-dev \
  10. dpkg \
  11. locales \
  12. docbook-to-man \
  13. apt \
  14. automake \
  15. devscripts \
  16. equivs \
  17. libc6:${DISTRO_ARCH}"
  18. # According to the wiki page:
  19. # https://wiki.debian.org/CrossToolchains
  20. BUILDCHROOT_PREINSTALL_append_armhf += "binutils-arm-linux-gnueabihf \
  21. crossbuild-essential-armhf"
  22. BUILDCHROOT_PREINSTALL_append_arm64 += "binutils-aarch64-linux-gnu \
  23. crossbuild-essential-arm64"
  24. PARAMS = "--host-arch --host-distro"
  25. do_build[depends] = "isar-apt:do_cache_config isar-bootstrap-host:do_bootstrap"