Displaying 5 results from an estimated 5 matches for "basearg".
2012 Sep 20
2
[LLVMdev] RFC: Adding an option to llvm-link to allow it to get a list of input bitcode file names from a file
...00000 -0400
@@ -83,7 +83,7 @@
LLVMContext &Context = getGlobalContext();
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
- cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
+ cl::ParseCommandLineOptions(argc, argv, "llvm linker\n", true);
unsigned BaseArg = 0;
std::string ErrorMessage;
Sam
-----Original Message-----
From: Liu, Yaxun (Sam)
Sent: Thursday, September 20, 2012 2:59 PM
To: 'Nick Lewycky'
Cc: 'llvmdev at cs.uiuc.edu'
Subject: RE: [LLVMdev] RFC: Adding an option to llvm-link to allow it to get a list of input bitcode...
2012 Sep 21
0
[LLVMdev] RFC: Adding an option to llvm-link to allow it to get a list of input bitcode file names from a file
...;
> LLVMContext &Context = getGlobalContext();
> llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
> - cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
> + cl::ParseCommandLineOptions(argc, argv, "llvm linker\n", true);
>
> unsigned BaseArg = 0;
> std::string ErrorMessage;
>
> Sam
>
> -----Original Message-----
> From: Liu, Yaxun (Sam)
> Sent: Thursday, September 20, 2012 2:59 PM
> To: 'Nick Lewycky'
> Cc: 'llvmdev at cs.uiuc.edu'
> Subject: RE: [LLVMdev] RFC: Adding an option to llvm-l...
2012 Sep 21
2
[LLVMdev] RFC: Adding an option to llvm-link to allow it to get a list of input bitcode file names from a file
...;
> LLVMContext &Context = getGlobalContext();
> llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
> - cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
> + cl::ParseCommandLineOptions(argc, argv, "llvm linker\n", true);
>
> unsigned BaseArg = 0;
> std::string ErrorMessage;
>
> Sam
>
> -----Original Message-----
> From: Liu, Yaxun (Sam)
> Sent: Thursday, September 20, 2012 2:59 PM
> To: 'Nick Lewycky'
> Cc: 'llvmdev at cs.uiuc.edu'
> Subject: RE: [LLVMdev] RFC: Adding an option to llvm-l...
2012 Sep 13
0
[LLVMdev] RFC: Adding an option to llvm-link to allow it to get a list of input bitcode file names from a file
Liu, Yaxun (Sam) wrote:
> I am proposing to add an option to llvm-link allow it to get a list of
> input bitcode file names from a file.
>
> The reason is that there is a limitation for command line length which
> limits the number of input bitcode files that can be passed to
> llvm-link. By adding this option we can bypass such limitation.
>
> The name of the option can be
2012 Sep 13
6
[LLVMdev] RFC: Adding an option to llvm-link to allow it to get a list of input bitcode file names from a file
I am proposing to add an option to llvm-link allow it to get a list of input bitcode file names from a file.
The reason is that there is a limitation for command line length which limits the number of input bitcode files that can be passed to llvm-link. By adding this option we can bypass such limitation.
The name of the option can be discussed. My initial proposal would be -input-file-list.