[Lldb-commits] [PATCH] D65114: [LLDB] Add utility to streamline Xcode project generation.
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Jul 22 23:53:00 PDT 2019
labath added inline comments.
================
Comment at: lldb/utils/xcode.py:33
+ mkdir(build_path)
+ with cwd(build_path):
+ cmake_cmd = [
----------------
You can get rid of the chdir stuff by just running `cmake -S$SOURCE_DIR -B$BUILD_DIR && ninja -C $BUILD_DIR`.
Repository:
rLLDB LLDB
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D65114/new/
https://reviews.llvm.org/D65114
More information about the lldb-commits
mailing list