Files
clang-p2996/lldb/test/Shell/Process/Windows/process_load.cpp
Saleem Abdulrasool f1585a4b47 Windows: support DoLoadImage
This implements `DoLoadImage` and `UnloadImage` in the Windows platform
plugin modelled after the POSIX platform plugin.  This was previously
unimplemented and resulted in a difficult to decipher error without any
logging.

This implementation is intended to support enables the use of LLDB's
Swift REPL on Windows.

Paths which are added to the library search path are persistent and
applied to all subsequent loads.  This can be adjusted in the future by
storing all the cookies and restoring the path prior to returning from
the helper.  However, the dynamic path count makes this a bit more
challenging.

Reviewed By: @JDevlieghere
Differential Revision: https://reviews.llvm.org/D77287
2021-12-04 11:11:47 -08:00

13 lines
357 B
C++

// clang-format off
// REQUIRES: system-windows
// RUN: %build --compiler=clang-cl -o %t.exe -- %s
// RUN: env LLDB_USE_NATIVE_PDB_READER=1 %lldb -f %t.exe -o "b main" -o "process launch" -o "process load kernel32.dll" | FileCheck %s
int main(int argc, char *argv[]) {
return 0;
}
// CHECK: "Loading "kernel32.dll"...ok{{.*}}
// CHECK: Image 0 loaded.