- Aug 04, 2010
-
-
Dan Gohman authored
llvm-svn: 110206
-
Dan Gohman authored
llvm-svn: 110204
-
- Dec 19, 2009
-
-
Chris Lattner authored
llvm-svn: 91784
-
- Jul 16, 2009
-
-
Daniel Dunbar authored
llvm-svn: 75867
-
- Jan 08, 2009
-
-
Chris Lattner authored
llvm-svn: 61932
-
- Aug 11, 2008
-
-
Chris Lattner authored
llvm-svn: 54630
-
- Dec 29, 2007
-
-
Chris Lattner authored
llvm-svn: 45419
-
- Jul 04, 2007
-
-
Reid Spencer authored
llvm-svn: 37867
-
- Aug 14, 2006
-
-
Reid Spencer authored
source dir for LLVM to be specified explicitly. This removes the dependency on the llvm-config script. If the option is not given, then the scripts use llvm-config which should be both built and in the PATH. This arrangement provides a useful default for most developers but also allows the nightly tester to execute countloc.sh before llvm-config is built and without altering the PATH. llvm-svn: 29663
-
- Aug 13, 2006
-
-
Reid Spencer authored
nightly test graph. And, documentation is important. llvm-svn: 29654
-
Reid Spencer authored
files that are considered to be code. Documentation is excluded. llvm-svn: 29652
-
- Aug 12, 2006
-
-
Reid Spencer authored
so we remove it from being counted. llvm-svn: 29641
-
Reid Spencer authored
llvm-svn: 29638
-
- Aug 11, 2006
-
-
Reid Spencer authored
the llvm source root from the llvm-config command. The dependency now is that the correct llvm-config command is in the path. For most developers this is the case. llvm-svn: 29630
-
- Apr 20, 2006
-
-
Chris Lattner authored
llvm-svn: 27903
-
- Apr 17, 2006
-
-
Chris Lattner authored
llvm-svn: 27740
-
- Mar 14, 2006
-
-
Reid Spencer authored
determine the top directory. This allows the tool to find the correct top directory when you have something like: /x/llvm /x/llvm2 /x/llvm3 Previously the scripts would always find /x/llvm even if you were in the llvm2 or llvm3 directory because the pattern didn't allow the digits at the end of the path. llvm-svn: 26751
-
- Jan 19, 2006
-
-
Chris Lattner authored
llvm-svn: 25466
-
- Oct 08, 2004
-
-
Reid Spencer authored
llvm-svn: 16844
-
Reid Spencer authored
llvm-svn: 16843
-
Misha Brukman authored
llvm-svn: 16831
-
- Oct 07, 2004
-
-
Reid Spencer authored
llvm-svn: 16805
-
- Sep 20, 2004
-
-
Reid Spencer authored
llvm-svn: 16444
-
Reid Spencer authored
specification was too liberal in some areas and missing things in others. This specification is based on the actual extensions found in the source tree. llvm-svn: 16443
-
Reid Spencer authored
allowing the set of directories searched to be specified either by the LLVMDO_DIRS env var or by the -dirs "dirs..." command line option. llvm-svn: 16441
-
- Sep 18, 2004
-
-
Chris Lattner authored
llvm-svn: 16391
-
- Jul 27, 2004
-
-
Reid Spencer authored
This is like llvmgrep but instead of running grep, it runs the command given by the first argument. For example, to find the top ten files with the most lines in llvm, you could: utils/llvmdo wc -l | sort -nb | tail Or, to find any source files with the wrong permissions, you could: utils/llvmdo ls -l | grep -v rw-r--r-- Hopefully, you get the idea. llvm-svn: 15246
-
- Jul 07, 2004
-
-
Reid Spencer authored
llvm-svn: 14676
-
- Jun 19, 2004
-
-
Reid Spencer authored
replacement for getsrcs.sh which now generates too much text to put on a Linux command line. The approach taken with llvmgrep is to execute a find command and execute a grep on each file that matches the name pattern. The arguments to this script are the same as those of egrep. Note that the -H and -n options to egrep will always be passed so that you always get the file and line number of matches. llvm-svn: 14255
-