Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Nov 2020 08:32:00 +0000 (UTC)
From:      Kirill Ponomarev <krion@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r555171 - head/devel/pcre
Message-ID:  <202011150832.0AF8W0nO046787@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: krion
Date: Sun Nov 15 08:32:00 2020
New Revision: 555171
URL: https://svnweb.freebsd.org/changeset/ports/555171

Log:
  Disable JIT support on RISC-V.
  
  Submitted by:	kp

Modified:
  head/devel/pcre/Makefile

Modified: head/devel/pcre/Makefile
==============================================================================
--- head/devel/pcre/Makefile	Sun Nov 15 08:27:54 2020	(r555170)
+++ head/devel/pcre/Makefile	Sun Nov 15 08:32:00 2020	(r555171)
@@ -83,7 +83,7 @@ CONFIGURE_ARGS+=	--with-parens-nest-limit=${WITH_PAREN
 CONFIGURE_ARGS+=	--with-posix-malloc-threshold=${WITH_POSIX_MALLOC_THRESHOLD}
 .endif
 
-.if ${ARCH} != "sparc64" && empty(ARCH:Mmips64*)
+.if ${ARCH} != "sparc64" && empty(ARCH:Mmips64*) && empty(ARCH:Mriscv64*)
 CONFIGURE_ARGS+=	--enable-jit
 .else
 CONFIGURE_ARGS+=	--disable-jit



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