GCC has Ofast option, but e2studio cannot be set from the menu. For RA series, how can I set the Ofast optimization level?
GCC has Ofast option, but e2studio cannot be set from the menu. For RA series, how can I set the Ofast optimization level?
Read less
Could you try adding it to Other optimization flags? When compiling, you see both -o2 …. -ofast, I think the later options will overwrite the earlier ones.(hopefully). arm-none-eabi-gcc -mcpu=cortex-m33 -mthumb -mfloat-abi=hard -mfpu=fpv5-sp-d16 -O2 -fmessage-length=0 -fsigned-char -ffunctioRead more
Could you try adding it to Other optimization flags? When compiling, you see both -o2 …. -ofast, I think the later options will overwrite the earlier ones.(hopefully).
arm-none-eabi-gcc -mcpu=cortex-m33 -mthumb -mfloat-abi=hard -mfpu=fpv5-sp-d16 -O2 -fmessage-length=0 -fsigned-char -ffunction-sections -fdata-sections -Ofast -Wunused -Wuninitialized …
See less