aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/scripts/depfixer.py
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-06-08 00:37:24 +0530
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2018-06-18 06:33:23 +0000
commit69f817b0e36f8fba7d2bd81cf569d9ad09bb7a2b (patch)
tree74665a6ec61f55032d7537037eddd29f121cc708 /mesonbuild/scripts/depfixer.py
parente3757e3d3cf24327c89dd3fc40f6cc933510f676 (diff)
downloadmeson-69f817b0e36f8fba7d2bd81cf569d9ad09bb7a2b.zip
meson-69f817b0e36f8fba7d2bd81cf569d9ad09bb7a2b.tar.gz
meson-69f817b0e36f8fba7d2bd81cf569d9ad09bb7a2b.tar.bz2
depfixer: Rewrite install_name for dylibs on install
The install name is used by consumers of the library to find the library at runtime. If it's @rpath/libfoo.dylib, all consumers must manually add the library path to RPATH, which is not what people expect. Almost everyone sets the library install name as the full path to the library, and this is done at install time with install_name_tool.
Diffstat (limited to 'mesonbuild/scripts/depfixer.py')
-rw-r--r--mesonbuild/scripts/depfixer.py22
1 files changed, 15 insertions, 7 deletions
diff --git a/mesonbuild/scripts/depfixer.py b/mesonbuild/scripts/depfixer.py
index 1d2cc60..132cc72 100644
--- a/mesonbuild/scripts/depfixer.py
+++ b/mesonbuild/scripts/depfixer.py
@@ -364,7 +364,7 @@ def get_darwin_rpaths_to_remove(fname):
result.append(rp)
return result
-def fix_darwin(fname, new_rpath):
+def fix_darwin(fname, new_rpath, final_path):
try:
rpaths = get_darwin_rpaths_to_remove(fname)
except subprocess.CalledProcessError:
@@ -372,30 +372,38 @@ def fix_darwin(fname, new_rpath):
# non-executable target. Just return.
return
try:
+ args = []
if rpaths:
- args = []
for rp in rpaths:
args += ['-delete_rpath', rp]
subprocess.check_call(['install_name_tool', fname] + args,
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL)
+ args = []
if new_rpath:
- subprocess.check_call(['install_name_tool', '-add_rpath', new_rpath, fname],
+ args += ['-add_rpath', new_rpath]
+ # Rewrite -install_name @rpath/libfoo.dylib to /path/to/libfoo.dylib
+ if fname.endswith('dylib'):
+ args += ['-id', final_path]
+ if args:
+ subprocess.check_call(['install_name_tool', fname] + args,
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL)
except Exception as e:
raise
sys.exit(0)
-def fix_rpath(fname, new_rpath, verbose=True):
+def fix_rpath(fname, new_rpath, final_path, verbose=True):
+ # Static libraries never have rpaths
+ if fname.endswith('.a'):
+ return
try:
fix_elf(fname, new_rpath, verbose)
- return 0
+ return
except SystemExit as e:
if isinstance(e.code, int) and e.code == 0:
pass
else:
raise
if shutil.which('install_name_tool'):
- fix_darwin(fname, new_rpath)
- return 0
+ fix_darwin(fname, new_rpath, final_path, install_name_mappings)