diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-25 16:31:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-25 16:31:09 +0000 |
commit | c7a0985995631025fbe9a4fe9fc435c3ba7387e4 (patch) | |
tree | eedf9c3d5c0f15ebdc5f2feab43676a2b9f69166 /tools/gccld | |
parent | 98ad7e9b5d1f7ed04a75f86a19f1a133fed555f4 (diff) | |
download | external_llvm-c7a0985995631025fbe9a4fe9fc435c3ba7387e4.zip external_llvm-c7a0985995631025fbe9a4fe9fc435c3ba7387e4.tar.gz external_llvm-c7a0985995631025fbe9a4fe9fc435c3ba7387e4.tar.bz2 |
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3087 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/gccld')
-rw-r--r-- | tools/gccld/gccld.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/gccld/gccld.cpp b/tools/gccld/gccld.cpp index 70e0130..5649796 100644 --- a/tools/gccld/gccld.cpp +++ b/tools/gccld/gccld.cpp @@ -30,22 +30,22 @@ #include <sys/stat.h> using std::cerr; -static cl::list<string> +static cl::list<std::string> InputFilenames(cl::Positional, cl::desc("<input bytecode files>"), cl::OneOrMore); -static cl::opt<string> +static cl::opt<std::string> OutputFilename("o", cl::desc("Override output filename"), cl::init("a.out"), cl::value_desc("filename")); static cl::opt<bool> Verbose("v", cl::desc("Print information about actions taken")); -static cl::list<string> +static cl::list<std::string> LibPaths("L", cl::desc("Specify a library search path"), cl::Prefix, cl::value_desc("directory")); -static cl::list<string> +static cl::list<std::string> Libraries("l", cl::desc("Specify libraries to link to"), cl::Prefix, cl::value_desc("library prefix")); |