From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/822 Path: news.gmane.org!not-for-mail From: Isaac Dunham Newsgroups: gmane.linux.lib.musl.general Subject: gcc segfault at src/mman/mlockall.c Date: Tue, 15 May 2012 09:35:53 -0700 Message-ID: <20120515093553.18c90a66@newbook> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1337099776 7777 80.91.229.3 (15 May 2012 16:36:16 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 15 May 2012 16:36:16 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-823-gllmg-musl=m.gmane.org@lists.openwall.com Tue May 15 18:36:15 2012 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1SUKjK-0000UY-V2 for gllmg-musl@plane.gmane.org; Tue, 15 May 2012 18:36:11 +0200 Original-Received: (qmail 5496 invoked by uid 550); 15 May 2012 16:36:10 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 5488 invoked from network); 15 May 2012 16:36:09 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=lavabit; d=lavabit.com; b=W+6eF5r0QUhk4xGthiAb8b7g+7Xp4hCAjBqHjVV/j1IBpGYC+B9qoXZcmm+W0YmgbXz84NFehP4pY5iCIHpSQQ9Xyri69Pc4twK8J9Ti+fnkjhuC8T8HfBn83UtK5UDV2xr3x1pbAadJkgMb4QG8oYMvaOoXUVcOu1q+pinzBwQ=; h=Date:From:To:Subject:Message-ID:X-Mailer:Mime-Version:Content-Type:Content-Transfer-Encoding; X-Mailer: Claws Mail 3.7.4 (GTK+ 2.20.1; i486-pc-linux-gnu) Xref: news.gmane.org gmane.linux.lib.musl.general:822 Archived-At: With -Os -fno-stack-protector, gcc (Ubuntu 4.4.3-4ubuntu5.1) 4.4.3 gcc -std=c99 -nostdinc -ffreestanding -ffloat-store -frounding-math -D_XOPEN_SOURCE=700 -I./src/internal -I./include -I./arch/i386 -pipe -fno-unwind-tables -fno-asynchronous-unwind-tables -fomit-frame-pointer -falign-functions=1 -falign-labels=1 -falign-loops=1 -falign-jumps=1 -march=i486 -mtune=generic -Os -fno-stack-protector -c -o src/mman/mlockall.o src/mman/mlockall.c cc1: internal compiler error: Segmentation fault Please submit a full bug report, with preprocessed source if appropriate. See for instructions. make: *** [src/mman/mlockall.o] Error 1 gcc=latest gcc-4.4 package from Ubuntu With -O3, I get === gcc -std=c99 -nostdinc -ffreestanding -ffloat-store -frounding-math -D_XOPEN_SOURCE=700 -I./src/internal -I./include -I./arch/i386 -pipe -fno-unwind-tables -fno-asynchronous-unwind-tables -fomit-frame-pointer -falign-functions=1 -falign-labels=1 -falign-loops=1 -falign-jumps=1 -march=i486 -mtune=generic -O3 -fno-stack-protector -c -o src/misc/getgrouplist.o src/misc/getgrouplist.c cc1: internal compiler error: Segmentation fault Please submit a full bug report, with preprocessed source if appropriate. See for instructions. make: *** [src/misc/getgrouplist.o] Error 1 === Switching over to gcc-4.1, since I've used that without errors.