mirror of
https://github.com/intel/llvm.git
synced 2026-01-14 11:57:39 +08:00
[LLDB] [lldb-server] Use llvm::InitLLVM for doing unicode conversion of arguments for windows
This should allow lldb-server to operate on files with non-ascii pathnames. I tried looking around in lldb/tools, and this seemed like the only other tool (other than the main lldb driver itself) that would be used (implicitly) by an end user (which could be working in non-ascii paths). Differential Revision: https://reviews.llvm.org/D68864 llvm-svn: 374537
This commit is contained in:
@@ -12,6 +12,7 @@
|
||||
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include "llvm/Support/InitLLVM.h"
|
||||
#include "llvm/Support/ManagedStatic.h"
|
||||
#include "llvm/Support/PrettyStackTrace.h"
|
||||
#include "llvm/Support/Signals.h"
|
||||
@@ -48,6 +49,7 @@ static void terminate_debugger() { g_debugger_lifetime->Terminate(); }
|
||||
|
||||
// main
|
||||
int main(int argc, char *argv[]) {
|
||||
llvm::InitLLVM IL(argc, argv);
|
||||
llvm::StringRef ToolName = argv[0];
|
||||
llvm::sys::PrintStackTraceOnErrorSignal(ToolName);
|
||||
llvm::PrettyStackTraceProgram X(argc, argv);
|
||||
|
||||
Reference in New Issue
Block a user