From owner-svn-ports-head@freebsd.org Sat Mar 19 17:02:47 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2C0BEAD5DA4; Sat, 19 Mar 2016 17:02:46 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A7D99B27; Sat, 19 Mar 2016 17:02:46 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2JH2jct052826; Sat, 19 Mar 2016 17:02:45 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2JH2jQF052825; Sat, 19 Mar 2016 17:02:45 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201603191702.u2JH2jQF052825@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Sat, 19 Mar 2016 17:02:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411414 - head/lang/pypy/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Mar 2016 17:02:47 -0000 Author: dbn Date: Sat Mar 19 17:02:45 2016 New Revision: 411414 URL: https://svnweb.freebsd.org/changeset/ports/411414 Log: lang/pypy: fix build on i386. On i386 the registery eip should be used for instruction count, however the code was using the amd64 register of rip instead. Reported by: kib@ Added: head/lang/pypy/files/ head/lang/pypy/files/patch-rpython_rlib_rvmprof_src_vmprof__config.h (contents, props changed) Added: head/lang/pypy/files/patch-rpython_rlib_rvmprof_src_vmprof__config.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/pypy/files/patch-rpython_rlib_rvmprof_src_vmprof__config.h Sat Mar 19 17:02:45 2016 (r411414) @@ -0,0 +1,10 @@ +--- rpython/rlib/rvmprof/src/vmprof_config.h.orig 2016-03-19 14:27:46 UTC ++++ rpython/rlib/rvmprof/src/vmprof_config.h +@@ -1,6 +1,6 @@ + #define HAVE_SYS_UCONTEXT_H + #if defined(__FreeBSD__) || defined(__APPLE__) +-#define PC_FROM_UCONTEXT uc_mcontext.mc_rip ++#define PC_FROM_UCONTEXT uc_mcontext.mc_eip + #else + #define PC_FROM_UCONTEXT uc_mcontext.gregs[REG_RIP] + #endif