Changeset 5385 for Binaries/macRelink.py


Ignore:
Timestamp:
Nov 19, 2022 9:28:12 PM (4 months ago)
Author:
toby
Message:

fix Mac dependencies

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Binaries/macRelink.py

    r4727 r5385  
    4343
    4444    fileList = glob.glob(os.path.join(dirloc,'*.so'))
    45 
     45    fileList += glob.glob(os.path.join(dirloc,'convcell'))
     46    fileList += glob.glob(os.path.join(dirloc,'LATTIC'))
     47   
    4648    libs = {}
    4749    ignorelist = []
     
    6971            print('\t',os.path.split(f)[1])
    7072            cmd = ["install_name_tool","-change",key,newkey,f]
     73            #print(cmd)
    7174            s = subprocess.Popen(cmd,stdout=subprocess.PIPE,stderr=subprocess.PIPE)
    7275            out,err = MakeByte2str(s.communicate())
Note: See TracChangeset for help on using the changeset viewer.