mirror of
https://github.com/apache/nuttx.git
synced 2026-05-23 23:28:29 +08:00
sim/cmake: enable garbage collection of unused input sections
enable --gc-sections for linker enable -ffunction-sections -fdata-sections for compiler Signed-off-by: chao an <anchao@lixiang.com>
This commit is contained in:
@@ -94,6 +94,11 @@ else()
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(CONFIG_DEBUG_OPT_UNUSED_SECTIONS)
|
||||
add_link_options(-Wl,--gc-sections)
|
||||
add_compile_options(-ffunction-sections -fdata-sections)
|
||||
endif()
|
||||
|
||||
if(CONFIG_CXX_STANDARD)
|
||||
add_compile_options($<$<COMPILE_LANGUAGE:CXX>:-std=${CONFIG_CXX_STANDARD}>)
|
||||
endif()
|
||||
|
||||
Reference in New Issue
Block a user