2022-12-12 23:24:33 +01:00
|
|
|
# shellcheck shell=bash
|
2020-12-14 07:27:58 +01:00
|
|
|
|
2018-02-01 22:54:18 +01:00
|
|
|
declare -a autoPatchelfLibs
|
2022-02-04 10:08:27 +01:00
|
|
|
declare -a extraAutoPatchelfLibs
|
2018-02-01 22:54:18 +01:00
|
|
|
|
|
|
|
gatherLibraries() {
|
|
|
|
autoPatchelfLibs+=("$1/lib")
|
|
|
|
}
|
|
|
|
|
2020-12-14 07:27:58 +01:00
|
|
|
# shellcheck disable=SC2154
|
|
|
|
# (targetOffset is referenced but not assigned.)
|
2018-02-01 22:54:18 +01:00
|
|
|
addEnvHooks "$targetOffset" gatherLibraries
|
|
|
|
|
2018-11-25 16:17:14 +01:00
|
|
|
# Can be used to manually add additional directories with shared object files
|
|
|
|
# to be included for the next autoPatchelf invocation.
|
|
|
|
addAutoPatchelfSearchPath() {
|
2018-11-19 23:23:38 +01:00
|
|
|
local -a findOpts=()
|
|
|
|
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case "$1" in
|
|
|
|
--) shift; break;;
|
|
|
|
--no-recurse) shift; findOpts+=("-maxdepth" 1);;
|
2018-11-25 16:17:14 +01:00
|
|
|
--*)
|
|
|
|
echo "addAutoPatchelfSearchPath: ERROR: Invalid command line" \
|
|
|
|
"argument: $1" >&2
|
|
|
|
return 1;;
|
|
|
|
*) break;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2022-02-04 10:08:27 +01:00
|
|
|
local dir=
|
|
|
|
while IFS= read -r -d '' dir; do
|
|
|
|
extraAutoPatchelfLibs+=("$dir")
|
2020-12-14 07:27:58 +01:00
|
|
|
done < <(find "$@" "${findOpts[@]}" \! -type d \
|
2022-02-04 10:08:27 +01:00
|
|
|
\( -name '*.so' -o -name '*.so.*' \) -print0 \
|
|
|
|
| sed -z 's#/[^/]*$##' \
|
|
|
|
| uniq -z
|
|
|
|
)
|
2018-11-25 16:17:14 +01:00
|
|
|
}
|
|
|
|
|
2022-02-04 10:08:27 +01:00
|
|
|
|
2018-11-25 16:17:14 +01:00
|
|
|
autoPatchelf() {
|
2018-11-26 01:13:59 +01:00
|
|
|
local norecurse=
|
2018-11-25 16:17:14 +01:00
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case "$1" in
|
|
|
|
--) shift; break;;
|
|
|
|
--no-recurse) shift; norecurse=1;;
|
2018-11-19 23:23:38 +01:00
|
|
|
--*)
|
|
|
|
echo "autoPatchelf: ERROR: Invalid command line" \
|
|
|
|
"argument: $1" >&2
|
|
|
|
return 1;;
|
|
|
|
*) break;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2022-10-10 03:21:06 +02:00
|
|
|
readarray -td' ' ignoreMissingDepsArray < <(echo -n "$autoPatchelfIgnoreMissingDeps")
|
2022-04-14 05:47:59 +02:00
|
|
|
if [ "$autoPatchelfIgnoreMissingDeps" == "1" ]; then
|
2022-04-11 03:28:55 +02:00
|
|
|
echo "autoPatchelf: WARNING: setting 'autoPatchelfIgnoreMissingDeps" \
|
|
|
|
"= true;' is deprecated and will be removed in a future release." \
|
|
|
|
"Use 'autoPatchelfIgnoreMissingDeps = [ \"*\" ];' instead." >&2
|
2022-04-14 05:47:59 +02:00
|
|
|
ignoreMissingDepsArray=( "*" )
|
2022-04-11 03:28:55 +02:00
|
|
|
fi
|
|
|
|
|
2023-04-13 02:41:22 +02:00
|
|
|
local appendRunpathsArray=($appendRunpaths)
|
2022-02-04 10:08:27 +01:00
|
|
|
local runtimeDependenciesArray=($runtimeDependencies)
|
|
|
|
@pythonInterpreter@ @autoPatchelfScript@ \
|
|
|
|
${norecurse:+--no-recurse} \
|
2022-04-14 05:47:59 +02:00
|
|
|
--ignore-missing "${ignoreMissingDepsArray[@]}" \
|
2022-02-04 10:08:27 +01:00
|
|
|
--paths "$@" \
|
|
|
|
--libs "${autoPatchelfLibs[@]}" \
|
|
|
|
"${extraAutoPatchelfLibs[@]}" \
|
2023-04-13 02:41:22 +02:00
|
|
|
--runtime-dependencies "${runtimeDependenciesArray[@]/%//lib}" \
|
|
|
|
--append-rpaths "${appendRunpathsArray[@]}"
|
2018-02-01 22:54:18 +01:00
|
|
|
}
|
|
|
|
|
2018-07-16 01:06:43 +02:00
|
|
|
# XXX: This should ultimately use fixupOutputHooks but we currently don't have
|
|
|
|
# a way to enforce the order. If we have $runtimeDependencies set, the setup
|
|
|
|
# hook of patchelf is going to ruin everything and strip out those additional
|
|
|
|
# RPATHs.
|
|
|
|
#
|
|
|
|
# So what we do here is basically run in postFixup and emulate the same
|
|
|
|
# behaviour as fixupOutputHooks because the setup hook for patchelf is run in
|
|
|
|
# fixupOutput and the postFixup hook runs later.
|
2021-09-13 00:07:15 +02:00
|
|
|
#
|
|
|
|
# shellcheck disable=SC2016
|
|
|
|
# (Expressions don't expand in single quotes, use double quotes for that.)
|
2018-11-19 17:36:22 +01:00
|
|
|
postFixupHooks+=('
|
2019-10-31 17:50:15 +01:00
|
|
|
if [ -z "${dontAutoPatchelf-}" ]; then
|
2022-05-31 23:34:59 +02:00
|
|
|
autoPatchelf -- $(for output in $(getAllOutputNames); do
|
2018-11-19 17:36:22 +01:00
|
|
|
[ -e "${!output}" ] || continue
|
|
|
|
echo "${!output}"
|
|
|
|
done)
|
|
|
|
fi
|
|
|
|
')
|