[Lldb-commits] [PATCH] D138618: [LLDB] Enable 64 bit debug/type offset

Alexander Yermolovich via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 17 10:45:13 PST 2023


ayermolo added a comment.

In D138618#4133717 <https://reviews.llvm.org/D138618#4133717>, @mib wrote:

> Hi @ayermolo!
>
> This patch is causing some failure on the macOS lldb bot: https://green.lab.llvm.org/green/job/lldb-cmake/51257/
>
> Could you take a look ? If you don't have the time, we can revert your patch until you manage to reproduce these failures.
>
> Let me know if you need help with that :)

@mib

I tried running bin/llvm-lit -sv /Users/ayermolo/local/llvm-project/lldb/test/API/commands/expression/anonymous-struct/TestCallUserAnonTypedef.py on a X86 mac and keep getting:

Command Output (stdout):
------------------------

lldb version 16.0.0git (https://github.com/llvm/llvm-project.git revision 7ad786a29e7bcd75bf3e7af2d96a0bf419faff64 <https://reviews.llvm.org/rG7ad786a29e7bcd75bf3e7af2d96a0bf419faff64>)

  clang revision 7ad786a29e7bcd75bf3e7af2d96a0bf419faff64
  llvm revision 7ad786a29e7bcd75bf3e7af2d96a0bf419faff64

-

Command Output (stderr):
------------------------

libc++abi: terminating with uncaught exception of type std::__1::system_error: recursive_mutex lock failed: Resource temporarily unavailable
PLEASE submit a bug report to https://github.com/llvm/llvm-project/issues/ and include the crash backtrace.

...
Unresolved: 1

I thought it was my config, so tried to change it as closely as in your buildbot, but still getting this error. Do you have any idea what is going on?

  cmake \
  -G Ninja \
  ../llvm-project/llvm \
  -DCMAKE_C_COMPILER=/Applications/Xcode_14.2.0_14C18_fb.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang \
  -DCMAKE_CXX_COMPILER=/Applications/Xcode_14.2.0_14C18_fb.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ \
  -DLLVM_ENABLE_ASSERTIONS:BOOL=TRUE \
  -DLLVM_TARGETS_TO_BUILD='X86' \
  -DLLVM_ENABLE_PROJECTS='clang;lldb;cross-project-tests' \
  -DLLVM_ENABLE_RUNTIMES='libcxx;libcxxabi;compiler-rt' \
  -DLLVM_LIT_ARGS='-v --time-tests --shuffle --xunit-xml-output=/Users/buildslave/jenkins/workspace/lldb-cmake/test/results.xml -v -j 6' \
  -DLLDB_BUILD_FRAMEWORK:BOOL=TRUE \
  -DLLDB_USE_SYSTEM_DEBUGSERVER=ON \
  -DLLDB_EDITLINE_USE_WCHAR=0 \
  -DLLDB_ENABLE_LIBEDIT:BOOL=TRUE \
  -DLLDB_ENABLE_CURSES:BOOL=TRUE \
  -DLLDB_ENABLE_PYTHON:BOOL=TRUE \
  -DLLDB_ENABLE_LIBXML2:BOOL=TRUE \
  -DLLDB_ENABLE_LUA:BOOL=FALSE \
  -DPython3_EXECUTABLE=/usr/bin/python3 \
  -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
  -DBUILTINS_CMAKE_ARGS=-DCOMPILER_RT_ENABLE_IOS=OFF \
  -DCMAKE_BUILD_TYPE=Release


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D138618/new/

https://reviews.llvm.org/D138618



More information about the lldb-commits mailing list