Skip to content

Commit

Permalink
build_setup: Fix nuget installation in ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
sunflower2333 committed Dec 15, 2024
1 parent ea6215a commit 70a6b8e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build_setup.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
#!/bin/bash
# Assume building on ubuntu 24.04
sudo apt update
sudo apt install -y uuid-dev clang llvm gcc-aarch64-linux-gnu lld

# Install Dependencies
sudo apt -y install python3-venv pip git mono-devel build-essential nuget build-essential iasl nasm python3 python3-distutils python3-git python3-pip gettext locales gnupg ca-certificates python3-venv git git-core curl
sudo apt -y install uuid-dev clang llvm gcc-aarch64-linux-gnu lld python3-venv pip git mono-devel build-essential iasl nasm python3 python3-git python3-pip gettext locales gnupg ca-certificates python3-venv git-core curl

# Install nuget
sudo curl -o /usr/local/bin/nuget.exe https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
alias nuget="mono /usr/local/bin/nuget.exe"

#cargo install --force cargo-make
#cargo add cargo-tarpaulin
Expand Down

0 comments on commit 70a6b8e

Please sign in to comment.