Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 May 2024 08:39:27 GMT
From:      Alexander Leidinger <netchild@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: b40aa9707101 - main - Mk/Features: WITH_PIE - add cmake support
Message-ID:  <202405140839.44E8dRK1074694@gitrepo.freebsd.org>

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

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

commit b40aa97071012f71a9c8937ef41d3153f070243f
Author:     Jan Beich <jbeich@FreeBSD.org>
AuthorDate: 2024-05-14 08:35:00 +0000
Commit:     Alexander Leidinger <netchild@FreeBSD.org>
CommitDate: 2024-05-14 08:39:24 +0000

    Mk/Features: WITH_PIE - add cmake support
    
    Use cmake specific options to enable position independent code generation.
    
    This fixes several ports (at least multimedia/cmrtlib, math/blas and
    math/lapack) which are build with cmake when WITH_PIE is enabled.
    
    PR:             268981
    Approved by:    portmgr
---
 Mk/Features/pie.mk | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/Mk/Features/pie.mk b/Mk/Features/pie.mk
index 2f7b902f2660..06174b403c31 100644
--- a/Mk/Features/pie.mk
+++ b/Mk/Features/pie.mk
@@ -5,11 +5,15 @@ _PIE_MK_INCLUDED=	yes
 PIE_Include_MAINTAINER=	portmgr@FreeBSD.org
 
 .  if !defined(PIE_UNSAFE)
+.    if defined(_INCLUDE_USES_CMAKE_MK)
+CMAKE_ARGS+=	-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true
+.    else
 PIE_CFLAGS?=	-fPIE -fPIC
 CFLAGS+=	${PIE_CFLAGS}
 CXXFLAGS+=	${PIE_CFLAGS}
 LDFLAGS+=	-pie
 STATIC_PIE_ARGS+=	-static-pie
+.    endif
 .  endif
 .endif
 



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