With commit:
https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/commit/?id=31acfe1747b273e147f864b5a62a4e39197ca1a2
package libtracefs utest started to use pthread_barrier_() functions and
this lead to build failure when we build without NPTL. Since utest is
not needed on the target we can avoid to build it, so let's disable it.
Fixes: 117ece4835 ("package/libtracefs: bump to version 1.8.0")
Fixes:
https://autobuild.buildroot.net/results/69b/69b75908bebdf9382a4cd9b138fcaf1e34daba09//
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
21 lines
604 B
Makefile
21 lines
604 B
Makefile
################################################################################
|
|
#
|
|
# libtracefs
|
|
#
|
|
################################################################################
|
|
|
|
LIBTRACEFS_VERSION = 1.8.2
|
|
LIBTRACEFS_SITE = https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/snapshot
|
|
LIBTRACEFS_INSTALL_STAGING = YES
|
|
LIBTRACEFS_LICENSE = GPL-2.0, LGPL-2.1
|
|
LIBTRACEFS_LICENSE_FILES = LICENSES/GPL-2.0 LICENSES/LGPL-2.1
|
|
|
|
LIBTRACEFS_DEPENDENCIES = host-bison host-flex host-pkgconf libtraceevent
|
|
|
|
LIBTRACEFS_CONF_OPTS = \
|
|
-Ddoc=false \
|
|
-Dsamples=false \
|
|
-Dutest=false
|
|
|
|
$(eval $(meson-package))
|