[Lldb-commits] [lldb] 7610524 - [LLDB] Fix TestThreadAPI.py for AArch64/Windows
Muhammad Omair Javaid via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 13 04:30:27 PDT 2022
Author: Muhammad Omair Javaid
Date: 2022-07-13T16:30:09+05:00
New Revision: 7610524af3c99e63ec6b3a452c45af51ffae57fa
URL: https://github.com/llvm/llvm-project/commit/7610524af3c99e63ec6b3a452c45af51ffae57fa
DIFF: https://github.com/llvm/llvm-project/commit/7610524af3c99e63ec6b3a452c45af51ffae57fa.diff
LOG: [LLDB] Fix TestThreadAPI.py for AArch64/Windows
This patch fixes TestThreadAPI for AArch64 windows by switching over to
PDB debug info instead of DWARF. This is needed to step over library
functions like printf as there is debug info mismatch between DWARF and
PDB. PDB DWARF interworking is not fully supported by LLDB at the
moment.
Added:
Modified:
lldb/test/API/python_api/thread/Makefile
Removed:
################################################################################
diff --git a/lldb/test/API/python_api/thread/Makefile b/lldb/test/API/python_api/thread/Makefile
index 30749db9a67cf..57ef8f826d22d 100644
--- a/lldb/test/API/python_api/thread/Makefile
+++ b/lldb/test/API/python_api/thread/Makefile
@@ -1,3 +1,5 @@
CXX_SOURCES ?= main.cpp
+DEBUG_INFO_FLAG := -g
+
include Makefile.rules
More information about the lldb-commits
mailing list