[Lldb-commits] [PATCH] D65109: [LLDB] Remove the Xcode project

Nathan Lanza via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 22 13:26:38 PDT 2019


lanza added inline comments.


================
Comment at: lldb/utils/xcode.py:1
+#!/usr/bin/env python
+
----------------
This could probably be just a 10 line `make` file that you just `make -f lldb/utils/xcode.mk`. Not sure if you guys are a fan of this method, but we tend to find it to be much more manageable than custom python scripts. 

    lldb-build:
        cmake -E make_directory lldb-build
    lldb-build/lldb.xcodeproj: llvm-build/build.ninja
         cmake -GXcode -Slldb -Blldb-build -C cmake/caches/Apple-lldb-Xcode.cmake 
     llvm-build:
         make -E make_directory llvm-build 
     llvm-build/build.ninja: llvm-build
         cmake -GNinja -Sllvm -Bllvm-build -DLLVM_ENABLE_PROJECTS='clang;libcxx;libcxxabi'


Repository:
  rLLDB LLDB

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

https://reviews.llvm.org/D65109





More information about the lldb-commits mailing list