bsp,am,integrate-am-apps: remove duplicated library symbols
This commit is contained in:
parent
1edc230f15
commit
e571b99c04
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ def read_lib_symbols(lib):
|
|||
cmd = f"{CROSS_COMPILE}nm -g --defined-only --format=just-symbols {str(libfile)}"
|
||||
res = subprocess.run(cmd, shell=True, capture_output=True, text=True)
|
||||
global lib_sym
|
||||
lib_sym += res.stdout.strip().split('\n')
|
||||
lib_sym = list(set(lib_sym + res.stdout.strip().split('\n')))
|
||||
|
||||
def integrate(app_dir):
|
||||
app_name = app_dir.name.replace("-", "_")
|
||||
|
|
Loading…
Add table
Reference in a new issue