Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

apps: microtvm: Disable CONFIG_FPU for Zephyr runtime #8055

Merged
merged 1 commit into from
Jul 16, 2021

Commits on Jul 15, 2021

  1. apps: microtvm: Disable CONFIG_FPU for Zephyr runtime

    `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 conflict 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.
    
    Signed-off-by: Kevin Townsend <[email protected]>
    microbuilder committed Jul 15, 2021
    Configuration menu
    Copy the full SHA
    b8dcfe0 View commit details
    Browse the repository at this point in the history