Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 5 Jul 2021 09:15:51 GMT
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 5594e82e0d0e - main - devel/mimalloc: fix build on powerpc
Message-ID:  <202107050915.1659FpXA030898@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj:

URL: https://cgit.FreeBSD.org/ports/commit/?id=5594e82e0d0edaf86a3b03e581f6c8fad3309d78

commit 5594e82e0d0edaf86a3b03e581f6c8fad3309d78
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2021-07-05 09:15:13 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2021-07-05 09:15:13 +0000

    devel/mimalloc: fix build on powerpc
    
    Same issue as on i386.
---
 devel/mimalloc/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/devel/mimalloc/Makefile b/devel/mimalloc/Makefile
index fd0f014ed062..a62fe4bc2030 100644
--- a/devel/mimalloc/Makefile
+++ b/devel/mimalloc/Makefile
@@ -20,7 +20,8 @@ USE_LDCONFIG=	yes
 
 CMAKE_ON=	MI_INSTALL_TOPLEVEL
 
-LDFLAGS_i386+=	-latomic
+LDFLAGS_i386=	-latomic
+LDFLAGS_powerpc=-latomic
 
 # ci pipeline creates transient tags
 PORTSCOUT=	ignore:1



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202107050915.1659FpXA030898>