Open
Description
It appears that since #61408, rust now requires fminf
and fmaxf
functions to be present when compiling for i386 with +soft-float (using a custom target JSON). However, compiler-builtins only expose those functions for some targets, which don't include x86.
Maybe compiler-builtins should include a target-feature = "soft-float"
in the list of conditions to enable the math module?