svn commit: r552046 - in head/lang/sbcl: . files

Kirill Ponomarev krion at FreeBSD.org
Sun Oct 11 10:26:23 UTC 2020


Author: krion
Date: Sun Oct 11 10:26:22 2020
New Revision: 552046
URL: https://svnweb.freebsd.org/changeset/ports/552046

Log:
  Fix CPUID checking and unbreak.
  
  Obtained from:	upstream

Added:
  head/lang/sbcl/files/patch-src_compiler_x86-64_parms.lisp   (contents, props changed)
Modified:
  head/lang/sbcl/Makefile

Modified: head/lang/sbcl/Makefile
==============================================================================
--- head/lang/sbcl/Makefile	Sun Oct 11 10:16:32 2020	(r552045)
+++ head/lang/sbcl/Makefile	Sun Oct 11 10:26:22 2020	(r552046)
@@ -7,6 +7,7 @@
 PORTNAME=	sbcl
 DISTVERSION=	2.0.9
 DISTVERSIONSUFFIX=	-source
+PORTREVISION=	1
 PORTEPOCH=	1
 CATEGORIES=	lang lisp
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${DISTVERSION} \

Added: head/lang/sbcl/files/patch-src_compiler_x86-64_parms.lisp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/sbcl/files/patch-src_compiler_x86-64_parms.lisp	Sun Oct 11 10:26:22 2020	(r552046)
@@ -0,0 +1,13 @@
+--- src/compiler/x86-64/parms.lisp.orig	2020-10-11 10:03:19 UTC
++++ src/compiler/x86-64/parms.lisp
+@@ -178,8 +178,8 @@
+ (defvar *binding-stack-pointer*)
+ 
+ ;;; Bit indices into *CPU-FEATURE-BITS*
+-(defconstant cpu-has-ymm-registers   1)
+-(defconstant cpu-has-popcnt          2)
++(defconstant cpu-has-ymm-registers   0)
++(defconstant cpu-has-popcnt          1)
+ 
+ (defconstant-eqx +static-symbols+
+  `#(, at +common-static-symbols+


More information about the svn-ports-all mailing list