From 5892b98dbdb7034aeafd28e6a3ca0702593eb3fb Mon Sep 17 00:00:00 2001 From: Geoffroy Van Cutsem Date: Fri, 22 Jun 2018 13:57:09 +0200 Subject: [PATCH] Getting Started Guide: update build dependencies and tools Add some basic development tools needed to build the ACRN project. These were not specifically called out (although most likely already installed in any development system). Signed-off-by: Geoffroy Van Cutsem --- doc/getting_started/index.rst | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/getting_started/index.rst b/doc/getting_started/index.rst index 6115fadc8..0298ed592 100644 --- a/doc/getting_started/index.rst +++ b/doc/getting_started/index.rst @@ -392,7 +392,9 @@ each with their own way to install development tools: .. code-block:: console - $ sudo apt install git \ + $ sudo apt install gcc \ + git \ + make \ gnu-efi \ libssl-dev \ libpciaccess-dev \ @@ -414,6 +416,9 @@ each with their own way to install development tools: .. code-block:: console $ sudo dnf install gcc \ + git \ + make \ + findutils \ gnu-efi-devel \ libuuid-devel \ openssl-devel \ @@ -432,6 +437,8 @@ each with their own way to install development tools: .. code-block:: console $ sudo yum install gcc \ + git \ + make \ gnu-efi-devel \ libuuid-devel \ openssl-devel \