mirror of https://github.com/tinygo-org/tinygo.git
wasmstm32webassemblymicrocontrollerarmavrspiwasiadafruitarduinocircuitplayground-expressgpioi2cllvmmicrobitnrf51nrf52nrf52840samd21tinygo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
556 B
12 lines
556 B
# Command that's part of sizediff.yml. This is put in a separate file so that it
|
|
# still works after checking out the dev branch (that is, when going from LLVM
|
|
# 16 to LLVM 17 for example, both Clang 16 and Clang 17 are installed).
|
|
|
|
echo 'deb https://apt.llvm.org/jammy/ llvm-toolchain-jammy-17 main' | sudo tee /etc/apt/sources.list.d/llvm.list
|
|
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
|
|
sudo apt-get update
|
|
sudo apt-get install --no-install-recommends -y \
|
|
llvm-17-dev \
|
|
clang-17 \
|
|
libclang-17-dev \
|
|
lld-17
|
|
|