aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts/main.py
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2018-07-13 15:46:35 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2018-07-24 10:16:51 +0000
commit0479cbd6abc8fffb9ba8b5f94de067e1670ffffa (patch)
tree1fdaf8ed47dd091e32928cbb4d4de1832e43dbd2 /build_scripts/main.py
parente24392c76e5cfdd2d6d51bd853b106db2bc4cb80 (diff)
Build script/Linux: Use installed patchelf if present
Add path search helper and use installed patchelf instead of building the contained source. Task-number: PYSIDE-740 Change-Id: I8043aa58ff9ebc4884eee9f15745865f10bb30fe Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'build_scripts/main.py')
-rw-r--r--build_scripts/main.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/build_scripts/main.py b/build_scripts/main.py
index 8d3a58eb0..d825357fd 100644
--- a/build_scripts/main.py
+++ b/build_scripts/main.py
@@ -885,6 +885,13 @@ class PysideBuild(_build):
def build_patchelf(self):
if not sys.platform.startswith('linux'):
return
+ self._patchelf_path = find_executable('patchelf')
+ if self._patchelf_path:
+ if not os.path.isabs(self._patchelf_path):
+ self._patchelf_path = os.path.join(os.getcwd(),
+ self._patchelf_path)
+ log.info("Using {} ...".format(self._patchelf_path))
+ return
log.info("Building patchelf...")
module_src_dir = os.path.join(self.sources_dir, "patchelf")
build_cmd = [
@@ -895,6 +902,7 @@ class PysideBuild(_build):
]
if run_process(build_cmd) != 0:
raise DistutilsSetupError("Error building patchelf")
+ self._patchelf_path = os.path.join(self.script_dir, "patchelf")
def build_extension(self, extension):
# calculate the subrepos folder name
@@ -1235,8 +1243,6 @@ class PysideBuild(_build):
pyside_libs = [lib for lib in os.listdir(
package_path) if filter_match(lib, ["*.so", "*.so.*"])]
- patchelf_path = os.path.join(self.script_dir, "patchelf")
-
def rpath_cmd(srcpath):
final_rpath = ''
# Command line rpath option takes precedence over
@@ -1251,7 +1257,7 @@ class PysideBuild(_build):
if OPTION_STANDALONE:
qt_lib_dir = "$ORIGIN/Qt/lib"
final_rpath = local_rpath + ':' + qt_lib_dir
- cmd = [patchelf_path, '--set-rpath', final_rpath, srcpath]
+ cmd = [self._patchelf_path, '--set-rpath', final_rpath, srcpath]
if run_process(cmd) != 0:
raise RuntimeError("Error patching rpath in " + srcpath)