From owner-svn-src-stable-9@FreeBSD.ORG Fri May 25 17:20:01 2012 Return-Path: Delivered-To: svn-src-stable-9@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9CC9C1065672; Fri, 25 May 2012 17:20:01 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 869168FC12; Fri, 25 May 2012 17:20:01 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4PHK1oH023505; Fri, 25 May 2012 17:20:01 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4PHK1AG023503; Fri, 25 May 2012 17:20:01 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <201205251720.q4PHK1AG023503@svn.freebsd.org> From: Marius Strobl Date: Fri, 25 May 2012 17:20:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r236014 - in stable/9: gnu/lib/libgcc lib/libcompiler_rt X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 17:20:01 -0000 Author: marius Date: Fri May 25 17:20:00 2012 New Revision: 236014 URL: http://svn.freebsd.org/changeset/base/236014 Log: MFC: r235487 Switch sparc64 to using libcompiler_rt; since r230021 (MFC'ed to stable/9 in r236012) we have a workaround in place allowing it to be used there and since r235388 (MFC'ed to stable/9 in r236002) we also have usable div/mod optimizations like libgcc has. Modified: stable/9/gnu/lib/libgcc/Makefile stable/9/lib/libcompiler_rt/Makefile Directory Properties: stable/9/gnu/lib/libgcc/ (props changed) stable/9/lib/libcompiler_rt/ (props changed) Modified: stable/9/gnu/lib/libgcc/Makefile ============================================================================== --- stable/9/gnu/lib/libgcc/Makefile Fri May 25 17:19:30 2012 (r236013) +++ stable/9/gnu/lib/libgcc/Makefile Fri May 25 17:20:00 2012 (r236014) @@ -15,7 +15,7 @@ MK_SSP= no .include "${.CURDIR}/../../usr.bin/cc/Makefile.tgt" -.if ${TARGET_CPUARCH} == "sparc64" || ${TARGET_CPUARCH} == "mips" +.if ${TARGET_CPUARCH} == "mips" LIB= gcc .endif Modified: stable/9/lib/libcompiler_rt/Makefile ============================================================================== --- stable/9/lib/libcompiler_rt/Makefile Fri May 25 17:19:30 2012 (r236013) +++ stable/9/lib/libcompiler_rt/Makefile Fri May 25 17:20:00 2012 (r236014) @@ -152,7 +152,7 @@ SRCS+= ${file}.c . endif .endfor -.if ${MACHINE_CPUARCH} != "sparc64" && ${MACHINE_CPUARCH} != "mips" +.if ${MACHINE_CPUARCH} != "mips" . if ${MK_INSTALLLIB} != "no" SYMLINKS+=libcompiler_rt.a ${LIBDIR}/libgcc.a . endif