From 1ed2f735ac0426fd25a200778abd1c862f9d7722 Mon Sep 17 00:00:00 2001 From: Gerhard de Clercq <11624490+Gerharddc@users.noreply.github.com> Date: Wed, 13 Nov 2024 14:47:48 +0100 Subject: [PATCH] Show correct dependencies for .NET builds This commit updates the docs to show the correct version of the gtk-sharp dependency to use depending on the type of build. This is to address the issue in https://github.com/renode/renode/issues/648 --- source/advanced/building_from_sources.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/source/advanced/building_from_sources.md b/source/advanced/building_from_sources.md index a4b62be..11dbe6b 100644 --- a/source/advanced/building_from_sources.md +++ b/source/advanced/building_from_sources.md @@ -12,17 +12,25 @@ The following instructions have been tested on Ubuntu 20.04, however there shoul :::{tab} Mono First, install the `mono-complete` package as per the installation instructions for various Linux distributions which can be found on [the Mono project website](https://www.mono-project.com/download/stable/#download-lin). + +To install the remaining dependencies, use: + + sudo apt update + sudo apt install git automake cmake autoconf libtool g++ coreutils policykit-1 \ + libgtk2.0-dev uml-utilities gtk-sharp2 python3 python3-pip + ::: :::{tab} .NET First, install the `.NET SDK` package as per the installation instructions, which can be found on [the official .NET site](https://dotnet.microsoft.com/en-us/download/dotnet/6.0). This can as well be installed with the default package manager, using: `sudo apt install dotnet-sdk-6.0`. -::: To install the remaining dependencies, use: sudo apt update sudo apt install git automake cmake autoconf libtool g++ coreutils policykit-1 \ - libgtk2.0-dev uml-utilities gtk-sharp2 python3 python3-pip + uml-utilities gtk-sharp3 python3 python3-pip + +::: ::::