sdkconfig.prod_common 524 B

123456789101112
  1. # Common settings for production builds.
  2. # For product-specific settings, see sdkconfig.prod1 and sdkconfig.prod2.
  3. # This selects 'func_prod.c' file to be compiled and linked, see CMakeLists.txt.
  4. CONFIG_EXAMPLE_FUNC_IMPL_PROD=y
  5. # This sdkconfig file can also include additional options specific to this
  6. # configuration. For example, we can optimize the binary size of a production
  7. # build, and remove all log messages.
  8. CONFIG_COMPILER_OPTIMIZATION_SIZE=y
  9. CONFIG_BOOTLOADER_LOG_LEVEL_NONE=y
  10. CONFIG_LOG_DEFAULT_LEVEL_NONE=y