From owner-svn-src-user@FreeBSD.ORG Sat Oct 23 08:07:05 2010 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B26C3106566C; Sat, 23 Oct 2010 08:07:05 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A1FD68FC0C; Sat, 23 Oct 2010 08:07:05 +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 o9N875xB080113; Sat, 23 Oct 2010 08:07:05 GMT (envelope-from ed@svn.freebsd.org) Received: (from ed@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o9N8759k080111; Sat, 23 Oct 2010 08:07:05 GMT (envelope-from ed@svn.freebsd.org) Message-Id: <201010230807.o9N8759k080111@svn.freebsd.org> From: Ed Schouten Date: Sat, 23 Oct 2010 08:07:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r214233 - user/ed/compiler-rt/lib/libcompiler_rt X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2010 08:07:05 -0000 Author: ed Date: Sat Oct 23 08:07:05 2010 New Revision: 214233 URL: http://svn.freebsd.org/changeset/base/214233 Log: Compile compiler-rt with -fPIC. Modified: user/ed/compiler-rt/lib/libcompiler_rt/Makefile Modified: user/ed/compiler-rt/lib/libcompiler_rt/Makefile ============================================================================== --- user/ed/compiler-rt/lib/libcompiler_rt/Makefile Sat Oct 23 00:44:16 2010 (r214232) +++ user/ed/compiler-rt/lib/libcompiler_rt/Makefile Sat Oct 23 08:07:05 2010 (r214233) @@ -6,6 +6,8 @@ LIB= compiler_rt NO_PIC= WARNS?= 2 +CFLAGS+=${PICFLAG} + .if ${MACHINE_CPUARCH} == "amd64" CRTARCH=x86_64 .elif ${MACHINE_CPUARCH} == "powerpc"