mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-11 21:45:16 +00:00
llvm-config: Default to "all" if no components are specified.
- Fixes PR11530. llvm-svn: 146388
This commit is contained in:
parent
9144e6bb3e
commit
e6cf061866
@ -300,6 +300,10 @@ int main(int argc, char **argv) {
|
||||
usage();
|
||||
|
||||
if (PrintLibs || PrintLibNames || PrintLibFiles) {
|
||||
// If no components were specified, default to "all".
|
||||
if (Components.empty())
|
||||
Components.push_back("all");
|
||||
|
||||
// Construct the list of all the required libraries.
|
||||
std::vector<StringRef> RequiredLibs;
|
||||
ComputeLibsForComponents(Components, RequiredLibs);
|
||||
|
Loading…
Reference in New Issue
Block a user