ports/devel/llvm70/files/llvm-wrapper.sh.in
Brooks Davis 3246ac86dc Upgrade to LLVM 7.0.1 Release.
Avoid calling realpath unless it is actually needed (D17990).
2018-12-15 15:21:37 +00:00

12 lines
308 B
Bash

#!/bin/sh
# $FreeBSD$
LLVM_PREFIX="%%LLVM_PREFIX%%"
LLVM_SUFFIX="%%LLVM_SUFFIX%%"
tool=$0
[ -L "$tool" ] && tool=$(/bin/realpath $tool)
tool=${tool##*/}
tool="${LLVM_PREFIX}/bin/${tool%${LLVM_SUFFIX}}"
LD_LIBRARY_PATH="${LD_LIBRARY_PATH:+${LD_LIBRARY_PATH}:}${LLVM_PREFIX}/lib" \
exec "${tool}" "${@}"