[Lldb-commits] [lldb] [lldb] Upstream lldb-rpc-gen and LLDB RPC server-side emitters (PR #136748)
Chelsea Cassanova via lldb-commits
lldb-commits at lists.llvm.org
Tue Apr 29 15:21:29 PDT 2025
================
@@ -0,0 +1,19 @@
+if(LLDB_CODESIGN_IDENTITY)
+ # Use explicit LLDB identity
+ set(LLVM_CODESIGNING_IDENTITY ${LLDB_CODESIGN_IDENTITY})
+else()
+ # Use explicit LLVM identity or default to ad-hoc signing if empty
+ if(NOT LLVM_CODESIGNING_IDENTITY)
+ set(LLVM_CODESIGNING_IDENTITY -)
+ endif()
+endif()
+
+check_cxx_compiler_flag("-Wno-gnu-zero-variadic-macro-arguments"
----------------
chelcassanova wrote:
The `CXX_SUPPORTS_NO_GNU_ZERO_VARIADIC_MACRO_ARGUMENTS` variable is used later on in files that haven't been upstreamed yet (If this variable is set then the `-Wno-gnu-zero-variadic-macro-arguments` gets added as a compile option). For simplicity's sake, this line could be removed until those files are upstreamed.
https://github.com/llvm/llvm-project/pull/136748
More information about the lldb-commits
mailing list