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 c38ce79 + 04e7b52 commit 53e5d74Copy full SHA for 53e5d74
lldb/tools/driver/Driver.cpp
@@ -505,12 +505,12 @@ void SetupPythonRuntimeLibrary() {
505
if (AddPythonDLLToSearchPath() && IsPythonDLLInPath())
506
return;
507
#endif
508
- llvm::errs() << "error: unable to find '"
509
- << LLDB_PYTHON_RUNTIME_LIBRARY_FILENAME << "'.\n";
+ WithColor::error() << "unable to find '"
+ << LLDB_PYTHON_RUNTIME_LIBRARY_FILENAME << "'.\n";
510
511
#elif defined(LLDB_PYTHON_DLL_RELATIVE_PATH)
512
if (!AddPythonDLLToSearchPath())
513
- llvm::errs() << "error: unable to find the Python runtime library.\n";
+ WithColor::error() << "unable to find the Python runtime library.\n";
514
515
}
516
0 commit comments