2df1c10ba7
Disabling tests will fix the following build failures on riscv32: select_poll_epoll.c:408:16: note: each undeclared identifier is reported only once for each function it appears in select_poll_epoll.c: In function 'ppoll_fds_ulong_max': select_poll_epoll.c:440:16: error: 'SYS_ppoll' undeclared (first use in this function); did you mean 'SYS_tkill'? 440 | ret = syscall(SYS_ppoll, ufds, ULONG_MAX, NULL, NULL); | ^~~~~~~~~ | SYS_tkill select_poll_epoll.c: In function 'pselect_invalid_fd': select_poll_epoll.c:488:16: error: 'SYS_pselect6' undeclared (first use in this function); did you mean 'SYS_semctl'? 488 | ret = syscall(SYS_pselect6, fd + 1, &rfds, NULL, NULL, NULL, NULL); | ^~~~~~~~~~~~ | SYS_semctl Fixes: - http://autobuild.buildroot.org/results/dd39188a7191efa512a51f18f4c34d9ee711a6a7 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
29 lines
980 B
Makefile
29 lines
980 B
Makefile
################################################################################
|
|
#
|
|
# lttng-tools
|
|
#
|
|
################################################################################
|
|
|
|
LTTNG_TOOLS_VERSION = 2.12.3
|
|
LTTNG_TOOLS_SITE = https://lttng.org/files/lttng-tools
|
|
LTTNG_TOOLS_SOURCE = lttng-tools-$(LTTNG_TOOLS_VERSION).tar.bz2
|
|
LTTNG_TOOLS_INSTALL_STAGING = YES
|
|
LTTNG_TOOLS_LICENSE = GPL-2.0, LGPL-2.1 (include/lttng/*, src/lib/lttng-ctl/*)
|
|
LTTNG_TOOLS_LICENSE_FILES = LICENSE $(addprefix LICENSES/,BSD-2-Clause BSD-3-Clause GPL-2.0 LGPL-2.1 MIT)
|
|
LTTNG_TOOLS_DEPENDENCIES = liburcu libxml2 popt util-linux
|
|
# We're patching configure.ac
|
|
LTTNG_TOOLS_AUTORECONF = YES
|
|
LTTNG_TOOLS_CONF_OPTS = \
|
|
--disable-man-pages \
|
|
--disable-tests \
|
|
--with-lttng-system-rundir=/run/lttng
|
|
|
|
ifeq ($(BR2_PACKAGE_LTTNG_LIBUST),y)
|
|
LTTNG_TOOLS_CONF_OPTS += --with-lttng-ust
|
|
LTTNG_TOOLS_DEPENDENCIES += lttng-libust
|
|
else
|
|
LTTNG_TOOLS_CONF_OPTS += --without-lttng-ust
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|