From owner-svn-src-projects@FreeBSD.ORG Fri Oct 22 20:43:38 2010 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 02AD8106564A; Fri, 22 Oct 2010 20:43:38 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E65A78FC12; Fri, 22 Oct 2010 20:43:37 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o9MKhbBN065619; Fri, 22 Oct 2010 20:43:37 GMT (envelope-from dim@svn.freebsd.org) Received: (from dim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o9MKhbFU065617; Fri, 22 Oct 2010 20:43:37 GMT (envelope-from dim@svn.freebsd.org) Message-Id: <201010222043.o9MKhbFU065617@svn.freebsd.org> From: Dimitry Andric Date: Fri, 22 Oct 2010 20:43:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r214222 - projects/binutils-2.17/gnu/usr.bin/cc/cc_tools X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 20:43:38 -0000 Author: dim Date: Fri Oct 22 20:43:37 2010 New Revision: 214222 URL: http://svn.freebsd.org/changeset/base/214222 Log: In case of powerpc64, enable HAVE_LD_NO_DOT_SYMS in gcc's auto-host.h. Requested by: nwhitehorn Modified: projects/binutils-2.17/gnu/usr.bin/cc/cc_tools/auto-host.h Modified: projects/binutils-2.17/gnu/usr.bin/cc/cc_tools/auto-host.h ============================================================================== --- projects/binutils-2.17/gnu/usr.bin/cc/cc_tools/auto-host.h Fri Oct 22 20:13:45 2010 (r214221) +++ projects/binutils-2.17/gnu/usr.bin/cc/cc_tools/auto-host.h Fri Oct 22 20:43:37 2010 (r214222) @@ -891,7 +891,9 @@ /* Define if your PowerPC64 linker only needs function descriptor syms. */ #ifndef USED_FOR_TARGET -/* #undef HAVE_LD_NO_DOT_SYMS */ +# ifdef __powerpc64_ +# define HAVE_LD_NO_DOT_SYMS 1 +# endif #endif