From owner-freebsd-questions@FreeBSD.ORG Tue Feb 17 08:53:21 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71CF010656EB for ; Tue, 17 Feb 2009 08:53:20 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 0DE868FC1D for ; Tue, 17 Feb 2009 08:53:18 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1LZLhd-0001HJ-Qe for freebsd-questions@freebsd.org; Tue, 17 Feb 2009 08:53:17 +0000 Received: from mar92-9-82-237-75-54.fbx.proxad.net ([82.237.75.54]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 17 Feb 2009 08:53:17 +0000 Received: from gilles.ganault by mar92-9-82-237-75-54.fbx.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 17 Feb 2009 08:53:17 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Gilles Date: Tue, 17 Feb 2009 09:53:09 +0100 Lines: 22 Message-ID: References: <6suip45ucdh4h7uuf4p6en66orr05qtr5q@4ax.com> <200902161132.47046.fbsd.questions@rachie.is-a-geek.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: mar92-9-82-237-75-54.fbx.proxad.net X-Newsreader: Forte Agent 3.1/32.783 X-Antivirus: avast! (VPS 090216-1, 16/02/2009), Outbound message X-Antivirus-Status: Clean Sender: news Subject: Re: [6.3/MySQL Server 5.1] item_cmpfunc.h:1301: internal compiler error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Feb 2009 08:53:46 -0000 On Tue, 17 Feb 2009 09:45:40 +0100, Gilles wrote: >How should I tell gcc to compile for either a PIII processor, or just >plain i386? BTW, here are the CFLAGS-related lines MySQL Server's Makefile: .if defined(WITH_LINUXTHREADS) CFLAGS+= -D__USE_UNIX98 -D_REENTRANT -D_THREAD_SAFE CFLAGS+= -I${LOCALBASE}/include/pthread/linuxthreads .else CFLAGS+= ${PTHREAD_CFLAGS} .endif .if defined(BUILD_OPTIMIZED) CFLAGS+= -O3 -fno-omit-frame-pointer CFLAGS+= -fno-gcse .endif .if defined(WITHOUT_THR_ALARM) CFLAGS+= -DDONT_USE_THR_ALARM .endif