diff options
| author | Alex Langford <apl@fb.com> | 2019-04-16 21:21:28 +0000 |
|---|---|---|
| committer | Alex Langford <apl@fb.com> | 2019-04-16 21:21:28 +0000 |
| commit | 7603bd52e399709832a49d026b86f879cb4bad7a (patch) | |
| tree | e9cbf9da7c05423ac0d9a199621be9b63d80d6f5 /lldb/source/Plugins/Process/Linux/SingleStepCheck.cpp | |
| parent | 4eff3de99423a62fd6e833e29c71c1e62ba6140b (diff) | |
| download | bcm5719-llvm-7603bd52e399709832a49d026b86f879cb4bad7a.tar.gz bcm5719-llvm-7603bd52e399709832a49d026b86f879cb4bad7a.zip | |
[Process] Fix linux arm64 single step compilation failure
This was updated in r356703 to use llvm::sys::RetryAfterSignal, which
comes from llvm/Support/Errno.h. The header wasn't added, so it fails if
you compile for arm64/aarch64.
llvm-svn: 358530
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/SingleStepCheck.cpp')
| -rw-r--r-- | lldb/source/Plugins/Process/Linux/SingleStepCheck.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/Linux/SingleStepCheck.cpp b/lldb/source/Plugins/Process/Linux/SingleStepCheck.cpp index bd1f099f5d4..a7837daa833 100644 --- a/lldb/source/Plugins/Process/Linux/SingleStepCheck.cpp +++ b/lldb/source/Plugins/Process/Linux/SingleStepCheck.cpp @@ -16,6 +16,7 @@ #include "NativeProcessLinux.h" #include "llvm/Support/Compiler.h" +#include "llvm/Support/Errno.h" #include "Plugins/Process/POSIX/ProcessPOSIXLog.h" #include "lldb/Host/linux/Ptrace.h" |

