Skip to content

Commit f100b5d

Browse files
committed
getting-started: correct source install instructions to refer to LLVM 10
Signed-off-by: deadprogram <[email protected]>
1 parent 2c85f66 commit f100b5d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

content/getting-started/linux.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The third option is to use the Docker image. This has the benefit of making no c
2323

2424
### Ubuntu/Debian
2525

26-
You must have Go already installed on your machine in order to install TinyGo. We recommend Go v1.13 or above.
26+
You must have Go already installed on your machine in order to install TinyGo. We recommend Go v1.14 or above.
2727

2828
If you are using Ubuntu or another Debian based Linux on an Intel processor, download the DEB file from Github and install it using the following commands:
2929

@@ -164,10 +164,10 @@ For Debian and Ubuntu, you can install the binaries provided by LLVM on
164164
used to install LLVM 9 on Debian Stretch:
165165

166166
```shell
167-
echo 'deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch-9 main' | sudo tee /etc/apt/sources.list.d/llvm.list
167+
echo 'deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch-10 main' | sudo tee /etc/apt/sources.list.d/llvm.list
168168
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
169169
sudo apt-get update
170-
sudo apt-get install clang-9 llvm-9-dev lld-9 libclang-9-dev
170+
sudo apt-get install clang-10 llvm-10-dev lld-10 libclang-10-dev
171171
```
172172

173173
Note that you should not use `make` when you want to build using a

content/getting-started/macos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The third option is to use the Docker image. This has the benefit of making no c
1515

1616
## Quick Install
1717

18-
You must have Go v1.12+ already installed on your machine in order to install TinyGo.
18+
You must have Go v1.12+ already installed on your machine in order to install TinyGo. We recommend Go v1.14+.
1919

2020
You can use Homebrew to install TinyGo using the following commands:
2121

@@ -78,7 +78,7 @@ AVR-based boards, you can use Homebrew.
7878
### With LLVM from Homebrew
7979

8080
The easiest way to install LLVM on macOS is through
81-
[Homebrew](https://formulae.brew.sh/formula/llvm). Make sure you install LLVM 8:
81+
[Homebrew](https://formulae.brew.sh/formula/llvm). Make sure you install LLVM 10:
8282

8383
```shell
8484
brew install llvm

content/getting-started/windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ We now have a native install for Windows 10.
1313

1414
VERY IMPORTANT NOTE: You cannot yet create Windows binary programs using TinyGo, only MCU and WASM targets.
1515

16-
- You MUST use Go 1.13.x+ with the Windows 10 native install of TinyGo.
16+
- You MUST use Go 1.14.x+ with the Windows 10 native install of TinyGo.
1717

1818
- If you have not installed it yet, you can get it from https://golang.org/dl/
1919

0 commit comments

Comments
 (0)