================
@@ -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
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits