Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 11 Oct 2020 10:26:23 +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: r552046 - in head/lang/sbcl: . files
Message-ID:  <202010111026.09BAQNrI067714@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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+
+  `#(,@+common-static-symbols+



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