From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51067) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W9FPd-0002zZ-4s for qemu-devel@nongnu.org; Fri, 31 Jan 2014 09:49:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W9FPU-0007Yz-Ow for qemu-devel@nongnu.org; Fri, 31 Jan 2014 09:49:45 -0500 Received: from mail-ee0-x233.google.com ([2a00:1450:4013:c00::233]:46559) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W9FPU-0007Yr-Hy for qemu-devel@nongnu.org; Fri, 31 Jan 2014 09:49:36 -0500 Received: by mail-ee0-f51.google.com with SMTP id b57so2332437eek.38 for ; Fri, 31 Jan 2014 06:49:35 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Fri, 31 Jan 2014 15:49:08 +0100 Message-Id: <1391179753-5216-6-git-send-email-pbonzini@redhat.com> In-Reply-To: <1391179753-5216-1-git-send-email-pbonzini@redhat.com> References: <1391179753-5216-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH v18 05/10] darwin: do not use -mdynamic-no-pic List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, peter.maydell@linaro.org, stefanha@redhat.com, mjt@tls.msk.ru, alex@alex.org.uk, mrezanin@redhat.com, vilanova@ac.upc.edu, rth@twiddle.net While -mdynamic-no-pic can speed up the code somewhat, it is only used on the legacy PowerPC Mac OS X, and I am not sure if anyone is still testing that. Disabling PIC can cause problems when enabling modules, so do not do that. Signed-off-by: Paolo Bonzini --- configure | 2 -- 1 file changed, 2 deletions(-) diff --git a/configure b/configure index bfc8636..0e62059 100755 --- a/configure +++ b/configure @@ -517,8 +517,6 @@ Darwin) if [ "$cpu" = "x86_64" ] ; then QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS" LDFLAGS="-arch x86_64 $LDFLAGS" - else - QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS" fi cocoa="yes" audio_drv_list="coreaudio" -- 1.8.3.1