abinfo "Setting Meson to vendored one in the numpy tree ..."
export PATH="$SRCDIR"/vendored-meson/meson/:$PATH
ln -sv meson.py "$SRCDIR"/vendored-meson/meson/meson

# use lld on applicable platforms
if bool USECLANG; then
    if command -v ld.lld; then
        abinfo "Using ld.lld on this platform."
        export LDFLAGS="$LDFLAGS -fuse-ld=lld -Wl,--lto-O3"
    fi
else
    abinfo "NOT using ld.lld on this platform"
fi
