From ef0e7270992dbbedc0d7611f141cf7643ef4731b Mon Sep 17 00:00:00 2001 From: maxice8 Date: Thu, 6 Sep 2018 09:52:42 -0300 Subject: [PATCH] bcc: mark as broken on i686 --- srcpkgs/bcc/template | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template index ef587a66bc7..8079f087f6b 100644 --- a/srcpkgs/bcc/template +++ b/srcpkgs/bcc/template @@ -15,6 +15,10 @@ distfiles="https://github.com/iovisor/${pkgname}/archive/v${version}.tar.gz" checksum=ac92f25861453b71943bd2ffbd5ed0b906e62a000d18ba61b178a1c13e57a32d nocross=yes # https://github.com/voidlinux/void-packages/issues/4738 +case "$XBPS_TARGET_MACHINE" in + i686*) broken="__uint128t not available" ;; +esac + post_extract() { sed -i '/tests/d' CMakeLists.txt # break on musl }