From owner-svn-src-head@FreeBSD.ORG Sun Feb 9 16:37:17 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E5277CC5; Sun, 9 Feb 2014 16:37:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D0F9B12F1; Sun, 9 Feb 2014 16:37:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s19GbHLk011827; Sun, 9 Feb 2014 16:37:17 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s19GbH6F011825; Sun, 9 Feb 2014 16:37:17 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <201402091637.s19GbH6F011825@svn.freebsd.org> From: Ed Maste Date: Sun, 9 Feb 2014 16:37:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r261668 - head/lib/libstand X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Feb 2014 16:37:18 -0000 Author: emaste Date: Sun Feb 9 16:37:17 2014 New Revision: 261668 URL: http://svnweb.freebsd.org/changeset/base/261668 Log: Build libstand as a 64-bit library on ppc64 The 32-bit bootloaders now link against libstand.a in sys/boot/libstand32, so there is no need to force /usr/lib/libstand.a to be 32-bit. This is equivalent to r261568 for amd64. Sponsored by: The FreeBSD Foundation Modified: head/lib/libstand/Makefile head/lib/libstand/libstand.3 Modified: head/lib/libstand/Makefile ============================================================================== --- head/lib/libstand/Makefile Sun Feb 9 16:16:24 2014 (r261667) +++ head/lib/libstand/Makefile Sun Feb 9 16:37:17 2014 (r261668) @@ -35,9 +35,6 @@ CFLAGS+= -Os .if ${MACHINE_CPUARCH} == "powerpc" CFLAGS+= -msoft-float -D_STANDALONE -DNETIF_DEBUG .endif -.if ${MACHINE_ARCH} == "powerpc64" -CFLAGS+= -m32 -I. -.endif .if ${MACHINE_CPUARCH} == "arm" CFLAGS+= -msoft-float -D_STANDALONE .endif Modified: head/lib/libstand/libstand.3 ============================================================================== --- head/lib/libstand/libstand.3 Sun Feb 9 16:16:24 2014 (r261667) +++ head/lib/libstand/libstand.3 Sun Feb 9 16:37:17 2014 (r261668) @@ -674,7 +674,3 @@ the environment functions and this manpa .An Mike Smith Aq msmith@FreeBSD.org . .Sh BUGS The lack of detailed memory usage data is unhelpful. -.Pp -On the powerpc64 architecture -.Nm -is a 32-bit library.