diff options
author | Ayke van Laethem <[email protected]> | 2022-02-03 19:21:17 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-02-04 07:49:46 +0100 |
commit | 77ec9b63698ebd1f21509cdd758a90edbd6e4916 (patch) | |
tree | 9ed277658ce7bb4b61637a568ee30759baf53862 /builder | |
parent | aa8e0bb509f3e9649543a1906db040dea11f67ad (diff) | |
download | tinygo-77ec9b63698ebd1f21509cdd758a90edbd6e4916.tar.gz tinygo-77ec9b63698ebd1f21509cdd758a90edbd6e4916.zip |
all: update build constraints to Go 1.17
Do it all at once in preparation for Go 1.18 support.
To make this commit, I've simply modified the `fmt-check` Makefile
target to rewrite files instead of listing the differences. So this is a
fully mechanical change, it should not have introduced any errors.
Diffstat (limited to 'builder')
-rw-r--r-- | builder/tools-builtin.go | 1 | ||||
-rw-r--r-- | builder/tools-external.go | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/builder/tools-builtin.go b/builder/tools-builtin.go index 29dfa8613..e5ecd424c 100644 --- a/builder/tools-builtin.go +++ b/builder/tools-builtin.go @@ -1,3 +1,4 @@ +//go:build byollvm // +build byollvm package builder diff --git a/builder/tools-external.go b/builder/tools-external.go index 4955bd2c7..b2af00fb0 100644 --- a/builder/tools-external.go +++ b/builder/tools-external.go @@ -1,3 +1,4 @@ +//go:build !byollvm // +build !byollvm package builder |