diff options
Diffstat (limited to 'tools/gccld/gccld.cpp')
-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 70e0130da0..5649796aae 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")); |