Merge branch 'fix/kconfig-option-orphan_sections_warning_v5.2' into 'release/v5.2'

fix(build): fix orphan sections warning kconfig variable (v5.2)

See merge request espressif/esp-idf!33942
This commit is contained in:
Jiang Jiang Jian
2024-11-18 11:15:15 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -592,7 +592,7 @@ mainmenu "Espressif IoT Development Framework Configuration"
config COMPILER_ORPHAN_SECTIONS_WARNING
bool "Place with warning"
help
Places orphan sections without a warning message.
Places orphan sections with a warning message.
config COMPILER_ORPHAN_SECTIONS_PLACE
bool "Place silently"

View File

@@ -720,7 +720,7 @@ macro(project project_name)
# Do not print RWX segment warnings
target_link_options(${project_elf} PRIVATE "-Wl,--no-warn-rwx-segments")
endif()
if(CONFIG_ESP_ORPHAN_SECTION_WARNING)
if(CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING)
# Print warnings if orphan sections are found
target_link_options(${project_elf} PRIVATE "-Wl,--orphan-handling=warn")
endif()