Changeset 5385 for Binaries/macRelink.py
- Timestamp:
- Nov 19, 2022 9:28:12 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Binaries/macRelink.py
r4727 r5385 43 43 44 44 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 46 48 libs = {} 47 49 ignorelist = [] … … 69 71 print('\t',os.path.split(f)[1]) 70 72 cmd = ["install_name_tool","-change",key,newkey,f] 73 #print(cmd) 71 74 s = subprocess.Popen(cmd,stdout=subprocess.PIPE,stderr=subprocess.PIPE) 72 75 out,err = MakeByte2str(s.communicate())
Note: See TracChangeset
for help on using the changeset viewer.