strace: add option to enable libdw stack tracing
Fixes build with CONFIG_libdw=y. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
This commit is contained in:
parent
7bfe757bc4
commit
7378ca79b9
1 changed files with 7 additions and 1 deletions
|
@ -54,12 +54,18 @@ system calls a program makes while it is running.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/strace/config
|
define Package/strace/config
|
||||||
|
config PACKAGE_strace_libdw
|
||||||
|
bool "Enable stack tracing support using libdw"
|
||||||
|
default n
|
||||||
config PACKAGE_strace_libunwind
|
config PACKAGE_strace_libunwind
|
||||||
bool "Enable stack tracing support using libunwind (experimental)"
|
bool "Enable stack tracing support using libunwind (experimental)"
|
||||||
default n
|
default n
|
||||||
endef
|
endef
|
||||||
|
|
||||||
CONFIGURE_ARGS += --with-libunwind=$(if $(CONFIG_PACKAGE_strace_libunwind),yes,no)
|
CONFIGURE_ARGS += \
|
||||||
|
--with-libdw=$(if $(CONFIG_PACKAGE_strace_libdw),yes,no) \
|
||||||
|
--with-libunwind=$(if $(CONFIG_PACKAGE_strace_libunwind),yes,no)
|
||||||
|
|
||||||
MAKE_FLAGS := \
|
MAKE_FLAGS := \
|
||||||
CCOPT="$(TARGET_CFLAGS)"
|
CCOPT="$(TARGET_CFLAGS)"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue