#!/bin/sh

if [ "$1" = "--libs" ]; then
    /usr/bin/llvm-config "$@" "--system-libs" "--link-static"
else
    /usr/bin/llvm-config "$@"
fi
