1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00
freebsd-ports/math/tblis/Makefile
Jan Beich 5b95cb7d25 math/tblis: unbreak with libc++ 8
In file included from src/iface/1v/add.cxx:1:
In file included from src/iface/1v/add.h:4:
In file included from src/iface/1v/../../util/thread.h:10:
In file included from ./src/external/tci/tci.h:4:
In file included from ./src/external/tci/tci/barrier.h:7:
In file included from src/external/tci/tci/mutex.h:50:
In file included from /usr/include/c++/v1/system_error:147:
In file included from /usr/include/c++/v1/type_traits:406:
In file included from /usr/include/c++/v1/cstddef:38:
./version:1:1: error: expected unqualified-id
1.0.0
^

PR:		236192
Approved by:	portmgr blanket
2019-03-04 10:44:36 +00:00

42 lines
1.0 KiB
Makefile

# Created by: Johannes M Dieterich <jmd@FreeBSD.org>
# $FreeBSD$
PORTNAME= tblis
PORTVERSION= 1.1.2
DISTVERSIONPREFIX= v
CATEGORIES= math
MAINTAINER= jmd@FreeBSD.org
COMMENT= Framework for performing tensor operations
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
BROKEN_aarch64= fails to compile: include_configs.hpp:2:10: fatal error: 'configs/armv7a/config.hpp' file not found
BROKEN_armv6= fails to compile: include_configs.hpp:2:10: fatal error: 'configs/armv7a/config.hpp' file not found
NOT_FOR_ARCHS= i386
NOT_FOR_ARCHS_REASON= i386 requires SSE
OPTIONS_DEFINE= PARA
PARA_DESC= use pthread parallelization
OPTIONS_DEFAULT= PARA
USES= gmake libtool
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= devinamatthews
HAS_CONFIGURE= yes
PARA_CONFIGURE_ON= --enable-thread-model=pthreads
PARA_CONFIGURE_OFF= --enable-thread-model=none
INSTALL_TARGET= install-strip
post-patch:
# Avoid conflict with C++20 <version> by ignoring <...> under WRKSRC
@${REINPLACE_CMD} -i .c++20 's/-I/-iquote/g' ${WRKSRC}/Makefile.in
.include <bsd.port.mk>