[Lldb-commits] [lldb] [RFC][LLDB] Telemetry in LLDB (PR #87815)

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Fri Apr 5 16:06:23 PDT 2024


================
@@ -0,0 +1,620 @@
+
+//===-- Telemetry.cpp -----------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+#include "lldb/Core/Telemetry.h"
+
+#include <memory>
+#include <stdbool.h>
+#include <sys/auxv.h>
----------------
bulbazord wrote:

auxv is not available on every platform, you'll have to go through the host layer for whatever you're trying to do with it.

https://github.com/llvm/llvm-project/pull/87815


More information about the lldb-commits mailing list