X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=utils%2Fllvmgrep;h=dc15da4961efcad5cd8c668056af99f1c7099ccd;hp=c24dc6f3ab6a59ba74b3b774ead07a1054f57980;hb=626353404e8674c41205e1a9123e8560656383e4;hpb=6ae928fc69dc18754d1c72437c7a75357685e066 diff --git a/utils/llvmgrep b/utils/llvmgrep index c24dc6f3ab6..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. # ##===----------------------------------------------------------------------===## # @@ -29,11 +29,11 @@ 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 -topdir "$TOPDIR" \ - -dirs "include lib tools utils docs examples test projects" $grep_cmd "$*" + -dirs "include lib tools utils docs examples test unittests projects cmake" $grep_cmd "$*" else echo "Can't find LLVM top directory" fi