You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/docs/guides/build/manual-llvm.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ This results in a `tinygo` binary in the `build` directory:
86
86
87
87
```shell
88
88
$ ./build/tinygo version
89
-
tinygo version 0.31.2-dev-d4189fec linux/amd64 (using go version go1.22 and LLVM version 17.0.1)
89
+
tinygo version 0.32.0-dev-d4189fec linux/amd64 (using go version go1.22 and LLVM version 18.1.2)
90
90
```
91
91
92
92
You have successfully built TinyGo from source. Congratulations! What's left now is to complete the [additional requirements](../additional-requirements)
Copy file name to clipboardExpand all lines: content/docs/guides/webassembly/wasm.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -62,13 +62,13 @@ Note the `--no-debug` flag, which reduces the size of the final binary by removi
62
62
debug symbols from the output. Also note that you must change the path to your Wasm file from `/go/src/github.com/myuser/myrepo/wasm-main.go` to whatever the actual path to your file is:
Copy file name to clipboardExpand all lines: content/getting-started/install/linux.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -25,20 +25,20 @@ You can also install the development build of TinyGo if you want to test the lat
25
25
26
26
### Ubuntu/Debian
27
27
28
-
You must have Go already installed on your machine in order to install TinyGo. We recommend Go v1.19 or above.
28
+
You must have Go already installed on your machine in order to install TinyGo. We recommend Go v1.20 or above.
29
29
30
30
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:
You will need to ensure that the path to the `tinygo` executable file is in your `PATH` variable.
@@ -51,7 +51,7 @@ You can test that the installation is working properly by running this code whic
51
51
52
52
```shell
53
53
$ tinygo version
54
-
tinygo version 0.31.2 linux/amd64 (using go version go1.22 and LLVM version 17.0.1)
54
+
tinygo version 0.32.0 linux/amd64 (using go version go1.22 and LLVM version 18.1.2)
55
55
```
56
56
57
57
If you are on a 64 bit ARM OS, and running tinygo fails with "no such file or directory", you may need to install the 32 bit C++ runtime library, e.g.:
Copy file name to clipboardExpand all lines: content/getting-started/install/macos.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ description: >
9
9
10
10
This page has information on how to install and use TinyGo on macOS. If you wish to build TinyGo from source, for example if you intend to contribute to the project, please take a look [here](../../../docs/guides/build).
11
11
12
-
You must have Go v1.19+ already installed on your machine in order to install TinyGo.
12
+
You must have Go v1.20+ already installed on your machine in order to install TinyGo.
13
13
14
14
You can use Homebrew to install TinyGo using the following commands:
15
15
@@ -22,18 +22,18 @@ brew install tinygo
22
22
23
23
#### Mac M1/M2
24
24
25
-
Download [this](https://github.com/tinygo-org/tinygo/releases/download/v0.31.2/tinygo0.31.2.darwin-arm64.tar.gz) file. Then, run the following commands:
25
+
Download [this](https://github.com/tinygo-org/tinygo/releases/download/v0.32.0/tinygo0.32.0.darwin-arm64.tar.gz) file. Then, run the following commands:
26
26
27
27
```shell
28
-
tar xvzf tinygo0.31.2.darwin-arm64.tar.gz
28
+
tar xvzf tinygo0.32.0.darwin-arm64.tar.gz
29
29
export PATH=<extract location>/tinygo/bin:$PATH
30
30
```
31
31
32
32
You can test that the installation is working properly by running this code which should display the version number:
33
33
34
34
```shell
35
35
$ tinygo version
36
-
tinygo version 0.31.2 darwin/arm64 (using go version go1.22 and LLVM version 17.0.1)
36
+
tinygo version 0.32.0 darwin/arm64 (using go version go1.22 and LLVM version 18.1.2)
37
37
```
38
38
39
39
If you are only interested in compiling TinyGo code for WebAssembly then you are done with the installation.
@@ -42,18 +42,18 @@ Otherwise, please continue with the installation of the additional requirements
42
42
43
43
#### Mac Intel
44
44
45
-
Download [this](https://github.com/tinygo-org/tinygo/releases/download/v0.31.2/tinygo0.31.2.darwin-amd64.tar.gz) file. Then, run the following commands:
45
+
Download [this](https://github.com/tinygo-org/tinygo/releases/download/v0.32.0/tinygo0.32.0.darwin-amd64.tar.gz) file. Then, run the following commands:
46
46
47
47
```shell
48
-
tar xvzf tinygo0.31.2.darwin-amd64.tar.gz
48
+
tar xvzf tinygo0.32.0.darwin-amd64.tar.gz
49
49
export PATH=<extract location>/tinygo/bin:$PATH
50
50
```
51
51
52
52
You can test that the installation is working properly by running this code which should display the version number:
53
53
54
54
```shell
55
55
$ tinygo version
56
-
tinygo version 0.31.2 darwin/amd64 (using go version go1.22 and LLVM version 17.0.1)
56
+
tinygo version 0.32.0 darwin/amd64 (using go version go1.22 and LLVM version 18.1.2)
57
57
```
58
58
59
59
If you are only interested in compiling TinyGo code for WebAssembly then you are done with the installation.
Copy file name to clipboardExpand all lines: content/getting-started/install/windows.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ description: >
9
9
10
10
This page has information on how to install and use TinyGo on Windows 10. If you wish to build TinyGo from source, for example if you intend to contribute to the project, please take a look [here](../../../docs/guides/build).
11
11
12
-
TinyGo requires Go v1.19+ to be already installed on your machine.
12
+
TinyGo requires Go v1.20+ to be already installed on your machine.
13
13
14
14
### Quick Install via Scoop
15
15
@@ -33,7 +33,7 @@ You can test that the installation was successful by running the `version` comma
33
33
34
34
```shell
35
35
> tinygo version
36
-
tinygo version 0.31.2 windows/amd64 (using go version go1.22 and LLVM version 17.0.1)
36
+
tinygo version 0.32.0 windows/amd64 (using go version go1.22 and LLVM version 18.1.2)
37
37
```
38
38
39
39
Upgrading to the latest TinyGo version can be done via scoop with:
@@ -73,13 +73,13 @@ Upgrading to the latest versions can be as easy as:
73
73
74
74
### Manual Install
75
75
76
-
- You MUST use Go 1.19.x+ with the Windows 10 native install of TinyGo.
76
+
- You MUST use Go 1.20.x+ with the Windows 10 native install of TinyGo.
77
77
78
78
- If you have not installed it yet, you can get it from https://golang.org/dl/
79
79
80
80
- Choose the download link for Microsoft Windows, Windows 7 or later, Intel 64-bit processor.
81
81
82
-
- Download the TinyGo binary for Windows file from https://github.com/tinygo-org/tinygo/releases/download/v0.31.2/tinygo0.31.2.windows-amd64.zip
82
+
- Download the TinyGo binary for Windows file from https://github.com/tinygo-org/tinygo/releases/download/v0.32.0/tinygo0.32.0.windows-amd64.zip
83
83
84
84
- Decompress the file like this:
85
85
@@ -99,7 +99,7 @@ Upgrading to the latest versions can be as easy as:
99
99
100
100
```
101
101
> tinygo version
102
-
tinygo version 0.31.2 windows/amd64 (using go version go1.22 and LLVM version 17.0.1)
102
+
tinygo version 0.32.0 windows/amd64 (using go version go1.22 and LLVM version 18.1.2)
0 commit comments