2018-04-18 02:57:45 +00:00
|
|
|
# Utilities for supporting linker script generation in the build system
|
|
|
|
|
2019-04-26 05:42:10 +00:00
|
|
|
# __ldgen_add_fragment_files
|
2018-04-18 02:57:45 +00:00
|
|
|
#
|
|
|
|
# Add one or more linker fragment files, and append it to the list of fragment
|
|
|
|
# files found so far.
|
2019-04-26 05:42:10 +00:00
|
|
|
function(__ldgen_add_fragment_files fragment_files)
|
2018-04-18 02:57:45 +00:00
|
|
|
spaces2list(fragment_files)
|
|
|
|
|
|
|
|
foreach(fragment_file ${fragment_files})
|
2019-04-26 05:42:10 +00:00
|
|
|
get_filename_component(abs_path ${fragment_file} ABSOLUTE)
|
|
|
|
list(APPEND _fragment_files ${abs_path})
|
2018-04-18 02:57:45 +00:00
|
|
|
endforeach()
|
|
|
|
|
2019-04-26 05:42:10 +00:00
|
|
|
idf_build_set_property(__LDGEN_FRAGMENT_FILES "${_fragment_files}" APPEND)
|
2018-11-27 05:26:15 +00:00
|
|
|
endfunction()
|
2018-04-18 02:57:45 +00:00
|
|
|
|
2019-04-26 05:42:10 +00:00
|
|
|
# __ldgen_add_component
|
2018-11-27 05:26:15 +00:00
|
|
|
#
|
2019-04-26 05:42:10 +00:00
|
|
|
# Generate sections info for specified target to be used in linker script generation
|
|
|
|
function(__ldgen_add_component component_lib)
|
|
|
|
idf_build_set_property(__LDGEN_LIBRARIES "$<TARGET_FILE:${component_lib}>" APPEND)
|
|
|
|
idf_build_set_property(__LDGEN_DEPENDS ${component_lib} APPEND)
|
2018-04-18 02:57:45 +00:00
|
|
|
endfunction()
|
|
|
|
|
2019-04-26 05:42:10 +00:00
|
|
|
# __ldgen_process_template
|
2018-04-18 02:57:45 +00:00
|
|
|
#
|
|
|
|
# Passes a linker script template to the linker script generation tool for
|
|
|
|
# processing
|
2019-05-31 03:30:44 +00:00
|
|
|
function(__ldgen_process_template template output)
|
2019-04-26 05:42:10 +00:00
|
|
|
idf_build_get_property(idf_target IDF_TARGET)
|
|
|
|
idf_build_get_property(idf_path IDF_PATH)
|
2019-04-26 05:42:10 +00:00
|
|
|
|
2019-04-26 05:42:10 +00:00
|
|
|
idf_build_get_property(build_dir BUILD_DIR)
|
|
|
|
idf_build_get_property(ldgen_libraries __LDGEN_LIBRARIES GENERATOR_EXPRESSION)
|
|
|
|
file(GENERATE OUTPUT ${build_dir}/ldgen_libraries.in CONTENT $<JOIN:${ldgen_libraries},\n>)
|
|
|
|
file(GENERATE OUTPUT ${build_dir}/ldgen_libraries INPUT ${build_dir}/ldgen_libraries.in)
|
|
|
|
|
2019-04-26 05:42:10 +00:00
|
|
|
set_property(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
|
|
|
|
APPEND PROPERTY ADDITIONAL_MAKE_CLEAN_FILES
|
2019-04-26 05:42:10 +00:00
|
|
|
"${build_dir}/ldgen_libraries.in"
|
|
|
|
"${build_dir}/ldgen_libraries")
|
|
|
|
|
|
|
|
idf_build_get_property(ldgen_fragment_files __LDGEN_FRAGMENT_FILES GENERATOR_EXPRESSION)
|
|
|
|
idf_build_get_property(ldgen_depends __LDGEN_DEPENDS GENERATOR_EXPRESSION)
|
|
|
|
# Create command to invoke the linker script generator tool.
|
|
|
|
idf_build_get_property(sdkconfig SDKCONFIG)
|
|
|
|
idf_build_get_property(root_kconfig __ROOT_KCONFIG)
|
|
|
|
idf_build_get_property(kconfigs KCONFIGS)
|
|
|
|
idf_build_get_property(kconfig_projbuilds KCONFIG_PROJBUILDS)
|
|
|
|
|
|
|
|
idf_build_get_property(python PYTHON)
|
|
|
|
|
|
|
|
string(REPLACE ";" " " kconfigs "${kconfigs}")
|
|
|
|
string(REPLACE ";" " " kconfig_projbuilds "${kconfig_projbuilds}")
|
2018-12-01 14:22:45 +00:00
|
|
|
|
2018-04-18 02:57:45 +00:00
|
|
|
add_custom_command(
|
|
|
|
OUTPUT ${output}
|
2019-04-26 05:42:10 +00:00
|
|
|
COMMAND ${python} ${idf_path}/tools/ldgen/ldgen.py
|
|
|
|
--config ${sdkconfig}
|
|
|
|
--fragments "$<JOIN:${ldgen_fragment_files},\t>"
|
2018-04-18 02:57:45 +00:00
|
|
|
--input ${template}
|
|
|
|
--output ${output}
|
2019-04-26 05:42:10 +00:00
|
|
|
--kconfig ${root_kconfig}
|
|
|
|
--env "COMPONENT_KCONFIGS=${kconfigs}"
|
|
|
|
--env "COMPONENT_KCONFIGS_PROJBUILD=${kconfig_projbuilds}"
|
2018-04-18 02:57:45 +00:00
|
|
|
--env "IDF_CMAKE=y"
|
2019-04-26 05:42:10 +00:00
|
|
|
--env "IDF_PATH=${idf_path}"
|
|
|
|
--env "IDF_TARGET=${idf_target}"
|
|
|
|
--libraries-file ${build_dir}/ldgen_libraries
|
2019-04-26 05:42:10 +00:00
|
|
|
--objdump ${CMAKE_OBJDUMP}
|
2019-04-26 05:42:10 +00:00
|
|
|
DEPENDS ${template} ${ldgen_fragment_files} ${ldgen_depends} ${SDKCONFIG}
|
2018-04-18 02:57:45 +00:00
|
|
|
)
|
|
|
|
|
2019-04-26 05:42:10 +00:00
|
|
|
get_filename_component(_name ${output} NAME)
|
|
|
|
add_custom_target(__ldgen_output_${_name} DEPENDS ${output})
|
|
|
|
add_dependencies(__idf_build_target __ldgen_output_${_name})
|
2019-06-04 11:05:33 +00:00
|
|
|
idf_build_set_property(__LINK_DEPENDS ${output} APPEND)
|
2019-04-26 05:42:10 +00:00
|
|
|
endfunction()
|