From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751474AbWGBDEf (ORCPT ); Sat, 1 Jul 2006 23:04:35 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751500AbWGBDEf (ORCPT ); Sat, 1 Jul 2006 23:04:35 -0400 Received: from terminus.zytor.com ([192.83.249.54]:9098 "EHLO terminus.zytor.com") by vger.kernel.org with ESMTP id S1751474AbWGBDEe (ORCPT ); Sat, 1 Jul 2006 23:04:34 -0400 Message-ID: <44A73790.5030006@zytor.com> Date: Sat, 01 Jul 2006 20:03:44 -0700 From: "H. Peter Anvin" User-Agent: Thunderbird 1.5.0.4 (X11/20060614) MIME-Version: 1.0 To: Sam Ravnborg CC: Miles Lane , Arjan van de Ven , Andrew Morton , LKML Subject: Re: 2.6.17-mm5 -- Busted toolchain? -- usr/klibc/exec_l.c:59: undefined reference to `__stack_chk_fail' References: <1151788673.3195.58.camel@laptopd505.fenrus.org> <1151789342.3195.60.camel@laptopd505.fenrus.org> <20060701230635.GA19114@mars.ravnborg.org> <44A706C4.7070908@zytor.com> <20060702030121.GA7247@mars.ravnborg.org> In-Reply-To: <20060702030121.GA7247@mars.ravnborg.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Sam Ravnborg wrote: > >> -KLIBCREQFLAGS := >> +KLIBCREQFLAGS := $(call cc_option, -fno-stack-protector, ) > > This needs to be $(call cc-option, ...) > '-' not '_'. > *plonk* OK... I feel dumb now :) Miles: could you try this out? >> +++ b/usr/klibc/arch/arm/MCONFIG >> @@ -12,7 +12,7 @@ CPU_TUNE := strongarm >> >> KLIBCOPTFLAGS = -Os -march=$(CPU_ARCH) -mtune=$(CPU_TUNE) >> KLIBCBITSIZE = 32 >> -KLIBCREQFLAGS = -fno-exceptions >> +KLIBCREQFLAGS += -fno-exceptions > > This should be fixed for KLIBCOPTFLAGS also. Unrelated to this issue. > *Nod.* -hpa