svn commit: r555171 - head/devel/pcre

Kirill Ponomarev krion at FreeBSD.org
Sun Nov 15 08:32:01 UTC 2020


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


More information about the svn-ports-all mailing list