From f9785d354812d60361cf766fb28274a2a7a26352 Mon Sep 17 00:00:00 2001 From: Peter Bocan Date: Sat, 30 Sep 2023 12:38:03 +0100 Subject: [PATCH] fix: Add warning for missing Go toolchain to README (#151) From Go 1.20 golang no longer ships the precompiled standard library, which means that you must use `go_toolchain` or `go_system_toolchain` --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index ccd31415..01d3a678 100644 --- a/README.md +++ b/README.md @@ -76,3 +76,5 @@ go_binary( Go is especially well suited to writing command line tools and utilities. Binaries can be ran with `plz run`, or used as a tool for other [custom rules](https://please.build/codelabs/genrule/#0). + +**WARNING: From Go 1.20, Golang no longer ships the precompiled standard library and thus you MUST use `go_toolchain` or `go_system_toolchain`.**