diff options
author | TBK <tbk@jjtc.eu> | 2019-05-26 18:42:08 +0200 |
---|---|---|
committer | TBK <tbk@jjtc.eu> | 2019-05-26 18:42:42 +0200 |
commit | 92d5072e27e2e9dd6a683979f3f1f45a359bdfeb (patch) | |
tree | a065c5d8881e2f6dd512a7c6613e33df9344546f | |
parent | f41324b2994ef4c8a9b3cd2374dc4f7f8a73dabb (diff) | |
download | aports-92d5072e27e2e9dd6a683979f3f1f45a359bdfeb.tar.bz2 aports-92d5072e27e2e9dd6a683979f3f1f45a359bdfeb.tar.xz |
community/py-opencl: disable ppc64le
Fails to compile. Error out with:
/usr/include/c++/8.3.0/chrono:826:38: required from here
/usr/include/c++/8.3.0/type_traits:1925:64: error: 'value' is not a member of 'std::is_array<long int>'
typedef typename __decay_selector<__remove_type>::__type type;
^~~~
In file included from /usr/include/c++/8.3.0/thread:38,
from src/wrap_cl.hpp:76,
from src/wrap_constants.cpp:27:
/usr/include/c++/8.3.0/chrono: In instantiation of 'constexpr unsigned int std::chrono::operator<(const std::chrono::duration<_Rep1, _Period1>&, const std::chrono::duration<_Rep2, _Period2>&) [with _Rep1 = long int; _Period1 = std::ratio<1, 1000000000>; _Rep2 = long int; _Period2 = std::ratio<1, 1000000000>]':
/usr/include/c++/8.3.0/chrono:826:38: required from here
/usr/include/c++/8.3.0/chrono:564:52: error: no type named 'type' in 'struct std::common_type<std::chrono::duration<long int, std::ratio<1, 1000000000> >, std::chrono::duration<long int, std::ratio<1, 1000000000> > >'
typedef typename common_type<__dur1,__dur2>::type __ct;
^~~~
error: command 'gcc' failed with exit status 1
>>> ERROR: py-opencl: build failed
>>> py-opencl: Uninstalling dependencies...
-rw-r--r-- | community/py-opencl/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/py-opencl/APKBUILD b/community/py-opencl/APKBUILD index e4db502efb..7e200d4d1f 100644 --- a/community/py-opencl/APKBUILD +++ b/community/py-opencl/APKBUILD @@ -6,7 +6,7 @@ pkgver=2018.2.5 pkgrel=0 pkgdesc="Python wrapper for OpenCL" url="https://pypi.python.org/pypi/pyopencl" -arch="all" +arch="all !ppc64le" license="MIT" depends="py-mako" makedepends="python2-dev python3-dev py-setuptools py-mako py-numpy>=1.14.3-r1 ctags libffi-dev mesa-dev opencl-headers |