git: b218a23dc58b - main - lang/gcc14-devel: Disable jit on i386
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 24 Apr 2024 08:24:14 UTC
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}