aboutsummaryrefslogtreecommitdiffhomepage
path: root/TOOLS/dylib-unhell.py
Commit message (Collapse)AuthorAge
* osxbundle: fix recursion terminationGravatar Tsukasa OMOTO2014-05-25
| | | | Prevents the binary from being copied over to the lib directory.
* osxbundle: split and optimize bundling scriptGravatar Stefano Pigozzi2014-05-09
Move the code that copies the dylib's to the bundle to a new script (dylib-unhell.py) which is called by osxbundle.py. dylib-unhell is about 20x faster than the previous implementation. This is accomplished by removing superflous shell-out operations which are kept track of using an in memory tree of all the needed dependencies. Moreover the shell-outs have been further optimized by not requiring a complete shell for every operation and just using subprocess.call (which is equivalent to Popen).