mirror of
https://github.com/azure-rtos/threadx
synced 2025-01-16 07:42:57 +08:00
27 lines
473 B
Bash
Executable File
27 lines
473 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Install necessary softwares for Ubuntu.
|
|
|
|
# Remove large folder to save space
|
|
rm -rf /opt/hostedtoolcache
|
|
|
|
sudo apt-get update
|
|
sudo apt-get install -y \
|
|
gcc-multilib \
|
|
git \
|
|
g++ \
|
|
python3-pip \
|
|
ninja-build \
|
|
unifdef \
|
|
p7zip-full \
|
|
tofrodos \
|
|
gawk \
|
|
cmake \
|
|
software-properties-common
|
|
|
|
python3 -m pip install --upgrade pip
|
|
pip3 install gcovr==4.1
|
|
|
|
# Upgrade cmake to the latest version.
|
|
pip install --upgrade cmake
|