From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38772) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2ksM-0005mf-I4 for qemu-devel@nongnu.org; Mon, 13 Jan 2014 12:00:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W2ksD-0001ww-M5 for qemu-devel@nongnu.org; Mon, 13 Jan 2014 12:00:34 -0500 Received: from mail-ee0-x230.google.com ([2a00:1450:4013:c00::230]:51966) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2ksD-0001wa-Fm for qemu-devel@nongnu.org; Mon, 13 Jan 2014 12:00:25 -0500 Received: by mail-ee0-f48.google.com with SMTP id t10so1579672eei.35 for ; Mon, 13 Jan 2014 09:00:24 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Mon, 13 Jan 2014 17:59:49 +0100 Message-Id: <1389632394-10130-5-git-send-email-pbonzini@redhat.com> In-Reply-To: <1389632394-10130-1-git-send-email-pbonzini@redhat.com> References: <1389632394-10130-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH v15 4/9] 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: peter.maydell@linaro.org, famz@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 files changed, 0 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 9d71867..99434e6 100755 --- a/configure +++ b/configure @@ -516,8 +516,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.7.1