aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/CommandLine.cpp
AgeCommit message (Expand)Author
2007-02-01Add PrintVersionMessage() that tools can use to print version numberDevang Patel
2006-12-07Don't use <sstream> in Streams.h but <iosfwd> instead.Bill Wendling
2006-12-07Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, areBill Wendling
2006-11-26Removed #include <iostream> and replace with llvm_* streams.Bill Wendling
2006-10-13avoid a ctor/dtor issue with the ProgramName global.Chris Lattner
2006-10-12shrink anon-ns and mark stuff static. No functionality changesChris Lattner
2006-10-04Fix more static dtor issuesChris Lattner
2006-08-27Minor code cleanupsChris Lattner
2006-08-27Add external definitions for commonly-used template specializations and addChris Lattner
2006-08-23Make the ProgramName variable a std::string so we can eliminate the pathReid Spencer
2006-08-21For PR797:Reid Spencer
2006-08-02If the Program name was NULL then all further output sent to std::cerr wasJim Laskey
2006-07-18Add an out-of-line virtual method to provide a home for the cl::option class.Chris Lattner
2006-07-06Print LLVM version info like this:Chris Lattner
2006-06-05Make it possible to override the standard version printer. Not all toolsReid Spencer
2006-04-28Fix PR743: emit -help output of a tool to cout, not cerr.Chris Lattner
2006-01-17Add support for programs with a null argv[0]Chris Lattner
2005-12-26MERRY CHRISTMAS EVERYONE!!! (what better way to spend christmas thanDuraid Madina
2005-11-16indicate when a tool is a debug build.Chris Lattner
2005-08-08Allow tools with "consume after" options (like lli) to take more positionalChris Lattner
2005-08-08Reject command lines that have too many positional arguments passed (e.g.,Chris Lattner
2005-05-13CapitalizeChris Lattner
2005-05-10Do not use "" as a sentinal for a missing argument! This fixes PR560.Chris Lattner
2005-04-21Remove trailing whitespaceMisha Brukman
2005-02-14Work around GCC PR19958, which causes programs to sometimes crash afterChris Lattner
2004-11-24Implement and document prefix options with arbitrary values including anReid Spencer
2004-11-20Fixed assertion from triggering. We need to check if the commandline map is e...Tanya Lattner
2004-11-19Patches to avoid "leaking" memory on process exit. Patch contributed byChris Lattner
2004-11-16Add a comment to some code that at first glance just doesn't look right.Reid Spencer
2004-11-16Per code review:Reid Spencer
2004-11-14Implement the MoreHelp utility that calls a function to printmore help inform...Reid Spencer
2004-11-07Replace uses of llvm.org with llvm.cs.uiuc.eduMisha Brukman
2004-09-01Changes For Bug 352Reid Spencer
2004-09-01Make CommandLine prefix error output with the name of the program.Reid Spencer
2004-08-13Allow any cl::opt to use the method getPosition() to retrieve the option'sReid Spencer
2004-08-04Add a --version option for every tool that prints out:Reid Spencer
2004-07-18Add a workaround for a GCC 3.3.2 bugChris Lattner
2004-07-03Fix compilation on internixChris Lattner
2004-05-06Implement the new cl::PositionalEatsArgs flag, refactor code a bitChris Lattner
2004-03-04Hide variable from other functions.Alkis Evlogimenos
2003-12-14Finegrainify namespacificationChris Lattner
2003-11-11Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke
2003-10-20Added LLVM project notice to the top of every C++ source file.John Criswell
2003-10-10Change to use strtoul instead of strtoll.Brian Gaeke
2003-09-16Add missing apostrophe. It's been bugging me for years.Brian Gaeke
2003-09-16Fixed spelling & grammar.Misha Brukman
2003-08-15lib/Support/CommandLine.cpp:Brian Gaeke
2003-08-14Add support for reading command line arguments from an environment variable.Brian Gaeke
2003-07-30Add support for "named positional arguments"Chris Lattner
2003-07-10Fixed grammatical error.Misha Brukman