From owner-freebsd-current@FreeBSD.ORG Fri Feb 27 20:18:54 2015 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AD733B05; Fri, 27 Feb 2015 20:18:54 +0000 (UTC) Received: from mail-pa0-x235.google.com (mail-pa0-x235.google.com [IPv6:2607:f8b0:400e:c03::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 73DB7274; Fri, 27 Feb 2015 20:18:54 +0000 (UTC) Received: by padfa1 with SMTP id fa1so25302033pad.2; Fri, 27 Feb 2015 12:18:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=K41COovImQhfsSADswkUp8ZT8Q6vQ8pzAu1Ggi32NDc=; b=EczqHfdRZ2s2PSQtuSTEXvJX0slIZRHxAkEeYk5fkFRMe9pThEG4tbzqyKQXnUBxns tFYgySkmyLOhdAsmPX4Oyk5+rpmlhJovPJ09u41xnFgQIU2Wu9KQ/9V4HbAh5qITOxpO GZeBQt/HghSOMXhPBlHBc7FIcf3ZFu1O8G+3SoDoknYmchbN8Ra62riKOUVje7G2BGnf OjqoiosrjeuzwcLluYvUOTjiC1N+S44j8i1EpTMCRiC0jnfWyaDIOQ3iSPhg3Xjd5diX wcCShTiJfOxi4LeBQAVYysGDBOoQbXolIrEbQ/Q4xihot8jaH4ZQ/pfMebxGS2A3sUYb XfOA== X-Received: by 10.66.139.135 with SMTP id qy7mr26706709pab.144.1425068334134; Fri, 27 Feb 2015 12:18:54 -0800 (PST) MIME-Version: 1.0 Received: by 10.66.237.39 with HTTP; Fri, 27 Feb 2015 12:18:33 -0800 (PST) In-Reply-To: <54EE2D68.9050209@FreeBSD.org> References: <20150225154327.GD1161@hub.FreeBSD.org> <20150225182201.216f6fee@nonamehost.local> <54EE05EA.3030509@FreeBSD.org> <20150225190512.GH1161@hub.FreeBSD.org> <54EE1F1D.8060807@FreeBSD.org> <54EE2D68.9050209@FreeBSD.org> From: Arseny Nasokin Date: Sat, 28 Feb 2015 00:18:33 +0400 Message-ID: Subject: Re: r279278 failed to build (yacc: maximum table size exceeded) To: Jung-uk Kim Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: Ivan Klymenko , Glen Barber , freebsd-current , Allan Jude X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Feb 2015 20:18:54 -0000 On 25 February 2015 at 23:15, Jung-uk Kim wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA256 > > On 02/25/2015 14:59, Arseny Nasokin wrote: > > On 25 February 2015 at 22:14, Jung-uk Kim > > wrote: > > > > On 02/25/2015 14:05, Glen Barber wrote: > >> On Wed, Feb 25, 2015 at 10:51:31PM +0400, Arseny Nasokin wrote: > >>> On 25 February 2015 at 20:27, Jung-uk Kim > > > >>> wrote: > >>>> Your installed yacc(1) is too old, i.e., your world was > >>>> built from head before r274460. FYI, this commit fixes the > >>>> above problem for building from stable: > >>>> > >>>> https://svnweb.freebsd.org/changeset/base/278975 > >>>> > >>>> For building from old head (pre-r274460), you have to > >>>> manually bootstrap yacc first, e.g., something like this: > >>>> > >>>> cd /usr/src/usr.bin/yacc make clean cleandepend make all && > >>>> make install make clean cleandepend cd /usr/src make > >>>> buildworld > >>>> > >>> > >>> Hi, guys, > >>> > >>> I've found the fix by forcing to add yacc(1) to bootstrap > >>> build. > >>> > >>> Makefile.inc1, line 1277: > >>> > >>> if ${BOOTSTRAPPING} < 1001506 _yacc= lib/liby \ > >>> > >>> change to: > >>> > >>> if ${BOOTSTRAPPING} < 1201506 ## It is for test purposes > >>> only!!! _yacc= lib/liby \ > >>> > > > >> This can be set to 1001507 now; __FreeBSD_version was bumped > >> earlier today. > > > > Nope, 1001506 is correct, i.e., the change was MFC'ed to stable/10 > > and __FreeBSD_version was bumped to reflect it. > > > > https://svnweb.freebsd.org/changeset/base/277087 > > > > Jung-uk Kim > > > > > > Jung, > > > > I have FreeBSD 11.0-CURRENT r265265 with OSRELDATE 1100020 and > > invalid YACC. So This conditional expression must be fixed to check > > if this 11.x and yacc is not changed. > > Wow, that's more than 9-month old now. > > > In my hypothetical "patch" I set OSRELDATE to invalid abstract > > future version, because it's only concept and I have no time to fix > > it correctly now. > > If you insist, you can try this: > > - --- Makefile.inc1 > +++ Makefile.inc1 > @@ -1274,7 +1274,8 @@ > _awk= usr.bin/awk > .endif > > - -.if ${BOOTSTRAPPING} < 1001506 > +.if ${BOOTSTRAPPING} < 1001506 || \ > + (${BOOTSTRAPPING} >= 1100000 && ${BOOTSTRAPPING} < 1100046) > _yacc= lib/liby \ > usr.bin/yacc > > (but I won't commit it.) > > Jung-uk Kim > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v2 > > iQEcBAEBCAAGBQJU7i1kAAoJEHyflib82/FGh9kH/07QOQ+xlPQVApJD+x1u/c4b > G1g4mmOhEKKOjVK9dJFKY1hvTiLYkOB3UDwJH8rmzbglInY+eepbD9Ac15Dtl90b > RFvNEB3B7Rwzt9ljg2zH/OQ6HnPCHgreF31ggkmKLszQ/Rrv62KTmN9ML4dkx897 > 7jAPwwtMb2XfLzyAc2fMNne3xl/zmdzafcqA+87UOUJ3Jb4rv35/x3kSrOqsMzvj > A3ufAepzG2J0+fH62ZP2L/FfuXoaKP0hlIpXZwNYAciSf+GAa7McYyu1aaRZQedF > 1DSphDtSFnJKR+ltIvDL5WH98Zi0iOu5FHb9bLfW/s+bV+oxs4/ZQHtxsIejLN4= > =3xA9 > -----END PGP SIGNATURE----- > Should I fill PR for? -- Eir Nym