aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Dempsky <mdempsky@google.com>2022-07-13 15:00:53 -0700
committerRuss Cox <rsc@golang.org>2022-08-01 17:07:11 +0000
commit8b13a073a19336923622a1de47d2b4fa2994545d (patch)
tree628427984956e66846e676492b53a0f1e2ace427
parente95fd4c2380b0adaa10be40812739156198037b7 (diff)
downloadgo-8b13a073a19336923622a1de47d2b4fa2994545d.tar.gz
go-8b13a073a19336923622a1de47d2b4fa2994545d.zip
doc: mention removal of cmd/compile's -importmap and -installsuffix flags
Updates #51225. Change-Id: I820f3f5ba169635fee37c30e41b370c9399a436d Reviewed-on: https://go-review.googlesource.com/c/go/+/417534 Reviewed-by: Russ Cox <rsc@golang.org>
-rw-r--r--doc/go1.19.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/go1.19.html b/doc/go1.19.html
index 8fc28b94bf..321dec642b 100644
--- a/doc/go1.19.html
+++ b/doc/go1.19.html
@@ -252,6 +252,13 @@ as well as support for rendering them to HTML, Markdown, and text.
that invoke the Go compiler directly will need to make sure they
pass this flag as well.
</p>
+<p><!-- CL 415235 --><!-- CL 415236 -->
+ The Go compiler no longer accepts the <code>-importmap</code>
+ or <code>-installsuffix</code> flags. Build systems that invoke the
+ Go compiler directly must use the <code>-importcfg</code> flag
+ instead. (The <code>go</code> command's <code>-installsuffix</code>
+ build flag is still supported and unaffected by this change.)
+</p>
<h2 id="assembler">Assembler</h2>
<p><!-- CL 404298 -->