-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Open
Labels
Description
When calling pico_set_float_implementation(${TARGET} none)
, such as done by pico_minimize_runtime
, it adds -msoft-float
which is an Arm-only compile option
I think the fix is to wrap
target_compile_options(pico_float_none INTERFACE -msoft-float) |
if (NOT PICO_RISCV)
so it doesn't get added for Risc-V binaries, but I'm not sure if there's a different option that should be passed instead?