aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/CommandLine.cpp
AgeCommit message (Expand)Author
2009-04-29Add support for a character after a command line option. Like '-Os'.Bill Wendling
2009-04-08Remove AllowInverse: it leaks memory and is not the rightChris Lattner
2009-04-01* Fixed spelling of `invertible'Misha Brukman
2009-03-28move a large method out of line.Chris Lattner
2009-02-02Improve -fno-opt style option processing to not require an extraMike Stump
2009-01-30Add opposite_of and inverse_opt to support -fno- style options. ThisMike Stump
2009-01-28Clarify comment.Mikhail Glushenkov
2009-01-21Mimic gcc behaviour with regard to response files.Mikhail Glushenkov
2009-01-16Support for multi-valued options in CommandLineMikhail Glushenkov
2008-12-23Tweak --version to include the date and time.Steve Naroff
2008-12-09remove unused varNuno Lopes
2008-10-14Fix command-line option printing to print two spaces where needed,Dan Gohman
2008-05-30Give a proper error message when a command line option is defined more thanMatthijs Kooijman
2008-05-05Fix more -Wshorten-64-to-32 warnings.Evan Cheng
2008-04-28Add support for response files to the CommandLine library.Mikhail Glushenkov
2008-03-25Add explicit keywords.Dan Gohman
2008-03-25A quick nm audit turned up several fixed tables and objects that wereDan Gohman
2008-02-23Fix a bug that caused opt and other tools to silently ignoreDan Gohman
2008-02-20Add 'sink' cmdline option. Patch by Mikhail Glushenkov!Anton Korobeynikov
2008-02-20Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-10-09Pass argc by value, not by reference, since it isn't modified.Dan Gohman
2007-10-08Move the space in overview output for commands out of each of theDan Gohman
2007-05-22Make tail merging the default, except on powerPC. There was no prior artDale Johannesen
2007-04-12improve the patch for PR1318 to also support grouped options with customChris Lattner
2007-04-11Fix PR1318 by reacting appropriately to a mutating option list.Chris Lattner
2007-04-07Fix a bug in my earlier commit which exposed positional options backwards.Chris Lattner
2007-04-06rearchitect the registration mechanism used by the command line option stuff.Chris Lattner
2007-04-05remove the dead removeArgument method, rename Options to OptionsMap.Chris Lattner
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