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.
- 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.