Makefile 409 B

1234567891011121314
  1. ifndef NO_DWARF
  2. PERF_HAVE_DWARF_REGS := 1
  3. LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/dwarf-regs.o
  4. endif
  5. ifndef NO_LIBUNWIND
  6. LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/unwind-libunwind.o
  7. endif
  8. ifndef NO_LIBDW_DWARF_UNWIND
  9. LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/unwind-libdw.o
  10. endif
  11. ifndef NO_DWARF_UNWIND
  12. LIB_OBJS += $(OUTPUT)arch/$(ARCH)/tests/regs_load.o
  13. LIB_OBJS += $(OUTPUT)arch/$(ARCH)/tests/dwarf-unwind.o
  14. endif