Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 24 Apr 2024 08:24:14 GMT
From:      Lorenzo Salvadore <salvadore@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: b218a23dc58b - main - lang/gcc14-devel: Disable jit on i386
Message-ID:  <202404240824.43O8OEht061609@gitrepo.freebsd.org>

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

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

commit b218a23dc58b1440209360e81234225189eae3bc
Author:     Lorenzo Salvadore <salvadore@FreeBSD.org>
AuthorDate: 2024-04-23 12:44:07 +0000
Commit:     Lorenzo Salvadore <salvadore@FreeBSD.org>
CommitDate: 2024-04-24 08:23:23 +0000

    lang/gcc14-devel: Disable jit on i386
    
    Build fails for jit on i386. Disable it until a fix is found.
---
 lang/gcc14-devel/Makefile | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lang/gcc14-devel/Makefile b/lang/gcc14-devel/Makefile
index 44264ff68774..1704cadf389b 100644
--- a/lang/gcc14-devel/Makefile
+++ b/lang/gcc14-devel/Makefile
@@ -83,7 +83,11 @@ USE_GCC=	yes
 USE_GCC=	yes
 .endif
 
+.if ${ARCH} == i386
+LANGUAGES:=	c,c++,objc,fortran
+.else
 LANGUAGES:=	c,c++,objc,fortran,jit
+.endif
 TARGLIB=	${PREFIX}/lib/gcc${SUFFIX}
 TARGLIB32=	${PREFIX}/lib32	# The version information is added later
 LIBEXEC=	${PREFIX}/libexec/gcc${SUFFIX}



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