Changeset 4727 for Binaries


Ignore:
Timestamp:
Jan 6, 2021 8:29:49 PM (3 years ago)
Author:
toby
Message:

show needed OSX libraries

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Binaries/macRelink.py

    r4437 r4727  
    4545
    4646    libs = {}
     47    ignorelist = []
    4748    for f in fileList:
    4849        cmd = ['otool','-L',f]
     
    5556                if "libSystem" not in lib: print("ignoring ",lib)
    5657                continue
    57             if "@rpath" in lib: continue
     58            if "@rpath" in lib and lib not in ignorelist:
     59                ignorelist.append(lib)
     60                print("ignoring ",lib)
     61                continue
    5862            if lib not in libs:
    5963                libs[lib] = []
Note: See TracChangeset for help on using the changeset viewer.