library - 2024.2 日本語

Vitis 統合ソフトウェア プラットフォームの資料: エンベデッド ソフトウェア開発 (UG1400)

Document ID
UG1400
Release Date
2024-11-13
Version
2024.2 日本語
Vitis [12]: cl.create_library_component?
Signature: cl.create_library_component(name, platform, domain=None, template=None)
Docstring:
create_library_component:
    Create a static library component.
Prototype:
    lib_comp = client.create_library_component(name = <comp_name>,
                                            platform = <platform>,
                                            domain = <domain>)

Required Arguments:
    name = <comp_name>
        Library component name.
    platform = <platform>
        Platform for which component is to be created.
        In case of baremetal platforms, user can specify the domain
        along with platform.

Optional Argument:
    domain = <domain>
        Specify the domain when there is more than one domain
        on the platform. (Only supported for baremetal domains)

Returns:
    Library component object.

Examples:
    lib_comp = client.create_library_component(name = "lib_component1",
                                               platform = "/tmp/vck190.xpfm",
                                               domain = "psv_cortexa72_o")
File:      /proj/xbuilds/SWIP/2024.2_1106_0237/installs/lin64/Vitis/2024.2/cli/vitis/cli_client.py
Type:      method