mirror of
https://github.com/flightlessmango/MangoHud.git
synced 2024-10-31 15:20:13 +00:00
29 lines
783 B
Bash
Executable File
29 lines
783 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$#" -eq 0 ]; then
|
|
programname=`basename "$0"`
|
|
echo "ERROR: No program supplied"
|
|
echo
|
|
echo "Usage: $programname <program>"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$1" = "--dlsym" ]; then
|
|
MANGOHUD_DLSYM=1
|
|
shift
|
|
fi
|
|
|
|
MANGOHUD_LIB_NAME="@ld_libdir_mangohud_abs@libMangoHud.so"
|
|
|
|
if [ "$MANGOHUD_DLSYM" = "1" ]; then
|
|
MANGOHUD_LIB_NAME="@ld_libdir_mangohud_abs@libMangoHud_dlsym.so:${MANGOHUD_LIB_NAME}"
|
|
fi
|
|
|
|
# Preload using the plain filenames of the libs, the dynamic linker will
|
|
# figure out whether the 32 or 64 bit version should be used, and will search
|
|
# for it in the correct directory
|
|
LD_PRELOAD="${LD_PRELOAD}:${MANGOHUD_LIB_NAME}"
|
|
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:@ld_libdir_mangohud@"
|
|
|
|
exec env MANGOHUD=1 LD_LIBRARY_PATH="${LD_LIBRARY_PATH}" LD_PRELOAD="${LD_PRELOAD}" "$@"
|