[Lldb-commits] [PATCH] D55013: [CMake] Streamline code signing for debugserver #2

Stefan Gränitz via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Nov 28 16:03:28 PST 2018


sgraenitz added a comment.

In-tree builds look good now. I successfully built and tested with these configurations:

  green dragon: xcrun cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_ASSERTIONS=On -DLLVM_ENABLE_MODULES=On ../llvm
  my default: xcrun cmake -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DLLVM_TARGETS_TO_BUILD="X86;ARM;AArch64" ../llvm

Had a short look at standalone builds. Including the test suite is currently not supported. With this config I could build the binaries successfully (with a quick-fix for debugserver D55032 <https://reviews.llvm.org/D55032>):

  LLDB standalone: xcrun cmake -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DLLVM_TARGETS_TO_BUILD="X86;ARM;AArch64" -DLLVM_CONFIG=/path/to/llvm-build/llvm-config ../lldb
  debugserver standalone: xcrun cmake -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DLLVM_TARGETS_TO_BUILD="X86;ARM;AArch64" -DLLVM_CONFIG=/path/to/llvm-build/bin/llvm-config ../lldb/tools/debugserver


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

https://reviews.llvm.org/D55013





More information about the lldb-commits mailing list