[Lldb-commits] [PATCH] D152569: [lldb] Introduce a tool to quickly generate projects with an arbitrary number of sources

Adrian Prantl via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Jun 9 12:34:58 PDT 2023


aprantl added a comment.

That looks useful!



================
Comment at: lldb/scripts/generate-project.py:175
+        # Building Objects and their respective swiftmodule
+        f.write(f"$(OBJDIR)/%.o: %.swift objdir\n")
+        f.write("\t$(SWIFT_FE) -c -primary-file $< -I objs/ \\\n")
----------------
Would `"""` multiline literals be more readable?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D152569



More information about the lldb-commits mailing list