We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 13fb03c + 6e3b455 commit 51fcfeeCopy full SHA for 51fcfee
lldb/tools/driver/Driver.cpp
@@ -518,12 +518,12 @@ void SetupPythonRuntimeLibrary() {
518
if (AddPythonDLLToSearchPath() && IsPythonDLLInPath())
519
return;
520
#endif
521
- llvm::errs() << "error: unable to find '"
522
- << LLDB_PYTHON_RUNTIME_LIBRARY_FILENAME << "'.\n";
+ WithColor::error() << "unable to find '"
+ << LLDB_PYTHON_RUNTIME_LIBRARY_FILENAME << "'.\n";
523
524
#elif defined(LLDB_PYTHON_DLL_RELATIVE_PATH)
525
if (!AddPythonDLLToSearchPath())
526
- llvm::errs() << "error: unable to find the Python runtime library.\n";
+ WithColor::error() << "unable to find the Python runtime library.\n";
527
528
}
529
0 commit comments