X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=utils%2Fllvmgrep;h=dc15da4961efcad5cd8c668056af99f1c7099ccd;hb=1758082f64077aeaa33b397a561e0483a2e02d37;hp=e5a08ad00512a0e1ea9dfbed315668c61725c227;hpb=09a053a777056ea3e246a6b2fc3df139c6dff9f1;p=oota-llvm.git diff --git a/utils/llvmgrep b/utils/llvmgrep index e5a08ad0051..dc15da4961e 100755 --- a/utils/llvmgrep +++ b/utils/llvmgrep @@ -3,8 +3,8 @@ # # The LLVM Compiler Infrastructure # -# This file was developed by Reid Spencer and is distributed under the -# University of Illinois Open Source License. See LICENSE.TXT for details. +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. # ##===----------------------------------------------------------------------===## # @@ -18,16 +18,22 @@ # details. ##===----------------------------------------------------------------------===## -TOPDIR=`pwd | sed -e 's#\(.*/llvm[0-9]*\).*#\1#'` -echo $TOPDIR +if test "$1" = "-topdir" ; then + TOPDIR="$2" + shift; shift; +else + TOPDIR=`llvm-config --src-root` +fi + if test -d "$TOPDIR" ; then cd $TOPDIR case `uname -s` in SunOS) grep_cmd="ggrep -H -n" ;; - Linux) grep_cmd="egrep -H -n" ;; + Linux|Darwin) grep_cmd="egrep -H -n" ;; *) grep_cmd="egrep -l -n" ;; esac - ./utils/llvmdo -dirs "include lib tools utils docs examples test projects" $grep_cmd "$*" + ./utils/llvmdo -topdir "$TOPDIR" \ + -dirs "include lib tools utils docs examples test unittests projects cmake" $grep_cmd "$*" else - echo "Can't find LLVM top directory in $TOPDIR" + echo "Can't find LLVM top directory" fi