From owner-p4-projects@FreeBSD.ORG Fri Nov 2 18:56:58 2007 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 88C3E16A52B; Fri, 2 Nov 2007 18:56:58 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E28CD16A41A for ; Fri, 2 Nov 2007 18:56:57 +0000 (UTC) (envelope-from raj@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CF78C13C465 for ; Fri, 2 Nov 2007 18:56:57 +0000 (UTC) (envelope-from raj@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id lA2Iuvpv075919 for ; Fri, 2 Nov 2007 18:56:57 GMT (envelope-from raj@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id lA2IuvFj075915 for perforce@freebsd.org; Fri, 2 Nov 2007 18:56:57 GMT (envelope-from raj@freebsd.org) Date: Fri, 2 Nov 2007 18:56:57 GMT Message-Id: <200711021856.lA2IuvFj075915@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to raj@freebsd.org using -f From: Rafal Jaworowski To: Perforce Change Reviews Cc: Subject: PERFORCE change 128527 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Nov 2007 18:56:58 -0000 http://perforce.freebsd.org/chv.cgi?CH=128527 Change 128527 by raj@raj_mimi on 2007/11/02 18:56:48 Disable SoftFloat library for the PowerPC and use gcc's soft-fp. Previously for the FPU-less PowerPC (e500) we used the SoftFloat library integrated with libc; now switch to the new libgcc fine-grained soft-float emulation. Affected files ... .. //depot/projects/e500/gnu/lib/libgcc/Makefile#4 edit .. //depot/projects/e500/lib/libc/Makefile#5 edit Differences ... ==== //depot/projects/e500/gnu/lib/libgcc/Makefile#4 (text+ko) ==== @@ -122,7 +122,7 @@ .if ${TARGET_ARCH} == "powerpc" # from config/rs6000/t-ppccomm -LIB2FUNCS_EXTRA = tramp.asm darwin-ldouble.c +LIB2FUNCS_EXTRA = tramp.asm LIB2FUNCS_STATIC_EXTRA = eabi.asm .endif ==== //depot/projects/e500/lib/libc/Makefile#5 (text+ko) ==== @@ -63,7 +63,7 @@ .include "${.CURDIR}/rpc/Makefile.inc" .include "${.CURDIR}/uuid/Makefile.inc" .include "${.CURDIR}/xdr/Makefile.inc" -.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "powerpc" +.if ${MACHINE_ARCH} == "arm" .include "${.CURDIR}/softfloat/Makefile.inc" .endif .if ${MK_NIS} != "no"