prerequisite.txt 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. ** +C compiler (gcc or clang)+
  21. ** `C++ compiler (g++ or clang++)`
  22. ** +GNU sed+
  23. ** +GNU make+
  24. ** +gzip+
  25. ** +perl+
  26. ** +tar+
  27. ** +wget+
  28. ** +ncurses5 development files+
  29. ** +zlib development files+
  30. ** +libc development files+
  31. There is a check for the required versions of these tools in advance,
  32. though. To re-issue the checks, use +make prereq+.
  33. For some packages there are some optional packages required. OpenADK
  34. will check for the required tools in advance, when a specific package is
  35. choosen. For example XBMC needs java installed on the host system.
  36. OpenADK tries to avoid any optional required host tools and will try to
  37. build them when needed.
  38. For some host systems you can try to use ./scripts/adkprepare.sh to
  39. install all required software. You need to run the script as root, it
  40. will use the package management of your host to install the software.