From: Keith Randall Date: Tue, 28 Nov 2023 21:09:42 +0000 (-0800) Subject: doc: release notes for GOARM hardfloat/softfloat change X-Git-Tag: go1.22rc1~137 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=636c6e350dfc89c164f3e26aee85b241faf06ae0;p=gostls13.git doc: release notes for GOARM hardfloat/softfloat change See CL 514907 Change-Id: Ieba2d7737115c66990b0ea7629033e787a99be93 Reviewed-on: https://go-review.googlesource.com/c/go/+/545655 Reviewed-by: Keith Randall Reviewed-by: Ludi Rehak Reviewed-by: Cherry Mui LUCI-TryBot-Result: Go LUCI Auto-Submit: Keith Randall --- diff --git a/doc/go1.22.html b/doc/go1.22.html index 287de0eebb..789ecc3c32 100644 --- a/doc/go1.22.html +++ b/doc/go1.22.html @@ -570,8 +570,15 @@ Do not send CLs removing the interior tags from such phrases.

Ports

+

Arm

- TODO: https://go.dev/cl/514907: all: add floating point option for ARM targets + The GOARM environment variable now allows you to select whether to use software or hardware floating point. + Previously, valid GOARM values were 5, 6, or 7. Now those same values can + be optionally followed by ,softfloat or ,hardfloat to select the floating-point implementation. +

+

+ This new option defaults to softfloat for version 5 and hardfloat for versions + 6 and 7.