microbuilder opened a new pull request #8055: URL: https://github.com/apache/tvm/pull/8055
`CONFIG_FPU` was being enabled by default for every platform, regardless of whether or not the platform using the sample app actually had a HW FPU unit. As a result, FPU instructions may be included on platforms that aren't able to support them, or in a best-case scenario we will get a warning about the conflct during builds, which pollutes the CI output, in a worst-case scenario a fault. This change removes the `CONFIG_FPU=y` setting from being set at the application level, since this flag should be set at the chip level for any platform that has an FPU. The default value of this is also `y`, so it should have no effect on boards unless that don't have FPU HW, such as the MPS2_AN521. Signed-off-by: Kevin Townsend <[email protected]> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
