nt9856x/BSP/linux-kernel/tools/build/feature/test-dwarf.c
2023-03-28 15:07:53 +08:00

12 lines
197 B
C

// SPDX-License-Identifier: GPL-2.0
#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;
}