================ @@ -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" ---------------- DavidSpickett wrote:
What is this used for / supposed to be used for? Because you check the compiler flag works but then don't appear to do anything with it. Is something later looking for CXX_SUPPORTS_NO_GNU_ZERO_VARIADIC_MACRO_ARGUMENTS? https://github.com/llvm/llvm-project/pull/136748 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits