prerequisite.txt 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // -*- mode:doc; -*-
  2. // vim: set syntax=asciidoc:
  3. [[requirement]]
  4. System requirements
  5. -------------------
  6. OpenADK is designed to run on Linux systems. But there is basic
  7. support to run on MacOS X Maverick, Windows 7 with Cygwin, OpenBSD,
  8. NetBSD and FreeBSD. Main development happens on Debian/GNU Linux 7
  9. and MacOS X Maverick. The other host platforms are occasionally
  10. tested.
  11. OpenADK detects the host system and displays only the software
  12. packages, which are known to be cross-compilable on the used host.
  13. For example OpenJDK7 is only cross-compilable on a Linux host.
  14. OpenADK needs some software to be already installed on the host
  15. system; here is the list of the mandatory packages,
  16. package names may vary between host systems.
  17. * Build tools:
  18. ** +bash+
  19. ** +binutils+
  20. ** +gcc+
  21. ** `g++`
  22. ** +GNU sed+
  23. ** +GNU awk+
  24. ** +GNU make+
  25. ** +patch+
  26. ** +gzip+
  27. ** +perl+
  28. ** +tar+
  29. ** +wget+
  30. ** +findutils (find, xargs)+
  31. ** +ncurses5 development+
  32. ** +zlib development+
  33. ** +libc development+
  34. There is a check for the required versions of these tools in advance,
  35. though. To re-issue the checks, use +make prereq+.
  36. For some packages there are some optional packages required. OpenADK
  37. will check for the required tools in advance, when a specific package is
  38. choosen. For example XBMC needs java installed on the host system.
  39. OpenADK tries to avoid any optional required host tools and will try to
  40. build them when needed.
  41. For some host systems you can try to use ./scripts/adkprepare.sh to
  42. install all required software. You need to run the script as root, it
  43. will use the package management of your host to install the software.