mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
56289013ba
This extends information provided in the project_description.json file. Newly added information can be used in the SBOM generating tool and also to improve hints regarding the the component dependency issues. Added fields version: This adds versioning to the project_description.json file, so it's easy to identify if it contains the required information. project_version: Can be used as a version for the resulting binary e.g. `hello_world.bin`. idf_path: This one is probably not necessary, but it allows tools to run even without esp-idf environment exported(e.g. export.sh). c_compiler: The `CMAKE_C_COMPILER` value with full path to the compiler binary. This can be used to get information about toolchain, which was used to build the project. common_component_reqs: List of common components as presented in cmake's __COMPONENT_REQUIRES_COMMON and set in tools/cmake/build.cmake:__build_init(). build_component_info: Detailed information about components used during build. It's a dictionary with the component name as a key and each component has a dictionary with detailed information. Following is an example for the efuse component. "efuse": { "alias": "idf::efuse", "target": "___idf_efuse", "prefix": "idf", "dir": "/home/fhrbata/work/esp-idf/components/efuse", "type": "LIBRARY", "lib": "__idf_efuse", "reqs": [], "priv_reqs": [ "bootloader_support", "soc", "spi_flash" ], "managed_reqs": [], "managed_priv_reqs": [], "file": "/home/fhrbata/work/blink/build/esp-idf/efuse/libefuse.a", "sources": [ "/home/fhrbata/work/esp-idf/components/efuse/esp32s3/esp_efuse_table.c", ... ], "include_dirs": [ "include", "esp32s3/include" ] } Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com> |
||
---|---|---|
.. | ||
ble | ||
catch | ||
ci | ||
cmake | ||
docker | ||
esp_app_trace | ||
esp_prov | ||
gen_soc_caps_kconfig | ||
idf_py_actions | ||
kconfig_new | ||
ldgen | ||
mass_mfg | ||
mocks | ||
requirements | ||
templates/sample_component | ||
test_apps | ||
test_build_system | ||
test_idf_py | ||
test_idf_tools | ||
test_mkdfu | ||
test_mkuf2 | ||
unit-test-app | ||
check_python_dependencies.py | ||
check_term.py | ||
detect_python.fish | ||
detect_python.sh | ||
eclipse-code-style.xml | ||
format-minimal.sh | ||
format.sh | ||
gdb_panic_server.py | ||
gen_esp_err_to_name.py | ||
generate_debug_prefix_map.py | ||
idf_monitor.py | ||
idf_size.py | ||
idf_tools.py | ||
idf.py | ||
install_util.py | ||
mkdfu.py | ||
mkuf2.py | ||
python_version_checker.py | ||
requirements_schema.json | ||
requirements.json | ||
set-submodules-to-github.sh | ||
split_paths_by_spaces.py | ||
tools_schema.json | ||
tools.json |