CONFIG_COMPILER_OPTIMIZATION esp32

For general Flowcode discussion that does not belong in the other sections.
Post Reply
Oscar_T
Posts: 89
http://meble-kuchenne.info.pl
Joined: Wed Dec 02, 2020 10:06 am
Location: Italy
Has thanked: 37 times
Been thanked: 10 times

CONFIG_COMPILER_OPTIMIZATION esp32

Post by Oscar_T »

Hello

I'm trying to figure out how to change this option to be able to try out different levels of optimization.

Could you tell me a method to change these options?

thanks !

LeighM
Valued Contributor
Posts: 395
Joined: Mon Dec 07, 2020 1:00 pm
Has thanked: 70 times
Been thanked: 210 times

Re: CONFIG_COMPILER_OPTIMIZATION esp32

Post by LeighM »

When a Flowcode project is first compiled, a default sdkconfig file is copied into the project build subdirectory (similar name to the project)
You can edit this file and subsequent compiles will not overwrite it.

You can also use the ESP-IDF config tool to change sdkconfig settings.
To do this, run the ESP-IDF cmd prompt.
Change (cd) directory to the project build directory, where sdkconfig exists.
Run the following command:

Code: Select all

idf.py menuconfig

Post Reply