git: dcb1e86511b3 - main - math/openblas: -lm is after all necessary
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 13 Aug 2024 09:41:38 UTC
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=dcb1e86511b312e209088e8bd76a7f3d96331910 commit dcb1e86511b312e209088e8bd76a7f3d96331910 Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2024-08-12 16:15:25 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2024-08-13 09:40:48 +0000 math/openblas: -lm is after all necessary I'm not sure why it previously built for me, but now it doesn't anymore. --- math/openblas/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/math/openblas/Makefile b/math/openblas/Makefile index 3815b2d7dfe9..2934de8d5027 100644 --- a/math/openblas/Makefile +++ b/math/openblas/Makefile @@ -81,6 +81,7 @@ TARGET_CPU_ARCH= PPCG4 .endif .if ${ARCH} == powerpc64le +CFLAGS+= -lm USE_GCC= yes .endif