get_libs - 2024.1 English

Vitis Tutorials: Embedded Software (XD260)

Document ID
XD260
Release Date
2024-06-19
Version
2024.1 English

This will be delivered as a list. Users can iterate through this

for lib in domain_object.get_libs():
    print(lib)

Each object in the list will be delivered as a dictionary with keys; ‘name’, ‘current_path. For example, users can return all the library names

for lib in domain_object.get_libs():
    print(lib['name'])