mirror of
https://github.com/azure-rtos/threadx
synced 2025-02-06 08:08:27 +08:00
23 lines
373 B
Bash
23 lines
373 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# Install necessary softwares for Ubuntu.
|
||
|
|
||
|
apt-get update
|
||
|
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 artifacts-keyring
|
||
|
pip3 install gcovr==4.1 $INDEX_URL
|
||
|
|