]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - tools/perf/config/feature-checks/test-dwarf.c
Merge branch 'perf/core'
[karo-tx-linux.git] / tools / perf / config / feature-checks / test-dwarf.c
diff --git a/tools/perf/config/feature-checks/test-dwarf.c b/tools/perf/config/feature-checks/test-dwarf.c
new file mode 100644 (file)
index 0000000..3fc1801
--- /dev/null
@@ -0,0 +1,10 @@
+#include <dwarf.h>
+#include <elfutils/libdw.h>
+#include <elfutils/version.h>
+
+int main(void)
+{
+       Dwarf *dbg = dwarf_begin(0, DWARF_C_READ);
+
+       return (long)dbg;
+}