about summary refs log tree commit diff
path: root/pkgs/build-support/dart/build-dart-application/hooks/dart-fixup-hook.sh
blob: c5a9bedd0665abe893a833d3724e5c899bd0a1c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# shellcheck shell=bash

dartFixupHook() {
    echo "Executing dartFixupHook"

    declare -a wrapProgramArgs

    # Add runtime library dependencies to the LD_LIBRARY_PATH.
    # For some reason, the RUNPATH of the executable is not used to load dynamic libraries in dart:ffi with DynamicLibrary.open().
    #
    # This could alternatively be fixed with patchelf --add-needed, but this would cause all the libraries to be opened immediately,
    # which is not what application authors expect.
    echo "$runtimeDependencyLibraryPath"
    if [[ ! -z "$runtimeDependencyLibraryPath" ]]; then
        wrapProgramArgs+=(--suffix LD_LIBRARY_PATH : \"$runtimeDependencyLibraryPath\")
    fi

    if [[ ! -z "$extraWrapProgramArgs" ]]; then
        wrapProgramArgs+=("$extraWrapProgramArgs")
    fi

    if [ ${#wrapProgramArgs[@]} -ne 0 ]; then
        for f in "$out"/bin/*; do
            echo "Wrapping $f..."
            eval "wrapProgram \"$f\" ${wrapProgramArgs[@]}"
        done
    fi

    echo "Finished dartFixupHook"
}

postFixupHooks+=(dartFixupHook)