From: Angelo Graziosi <angelo.graziosi@alice.it>
To: Glenn Morris <rgm@gnu.org>
Cc: Eli Zaretskii <eliz@gnu.org>, emacs-devel@gnu.org
Subject: Re: Emacs bootstrap: 'ignored' errors [trunk]
Date: Sun, 10 Oct 2010 18:00:36 +0200 [thread overview]
Message-ID: <4CB1E324.2000507@alice.it> (raw)
In-Reply-To: <4ihbgvugtu.fsf@fencepost.gnu.org>
Il 10/10/2010 0.44, Glenn Morris ha scritto:
> Angelo Graziosi wrote:
>
>> In some ways, the 'ignored' errors were the basis of the upcoming
>> fatal ones. Perhaps, asking 'why I got these ignored?' could avoid the
>> break in r101874: the recent changes in docs did not take into account
>> for bootstrap OOT.
>
> This is all bunkum.
Why?
The following is on GNU/Linux Kubuntu 10.04.
[A] - Out of tree build, rev. 101821
$ rsync -av --delete emacs-trunk/ emacs/
$ cd emacs
$ bzr up -r 101821
$ mkdir build_dir
$ cd build_dir
$ ../configure 2>&1 | tee oot_build.log
$ make bootstrap -j4 2>&1 | tee -a oot_build.log
$ grep -i error oot_build.log
checking jerror.h usability... yes
checking jerror.h presence... yes
checking for jerror.h... yes
checking for strerror... yes
checking for gai_strerror... yes
rm -f libXMenu11.a Activate.o AddPane.o AddSel.o ChgPane.o ChgSel.o
Create.o DelPane.o DelSel.o Destroy.o Error.o EvHand.o FindPane.o
FindSel.o InsPane.o InsSel.o Internal.o Locate.o Post.o Recomp.o
SetAEQ.o SetFrz.o SetPane.o SetSel.o XDelAssoc.o XLookAssoc.o XCrAssoc.o
XDestAssoc.o XMakeAssoc.o insque.o
make[1]: [infoclean] Errore 2 (ignorato)
make[1]: [infoclean] Errore 2 (ignorato)
make[1]: [infoclean] Errore 2 (ignorato)
/tmp/emacs/lib-src/../src/regex.c: In function ‘regerror’:
[B] - In tree build, rev. 101821
$ rsync -av --delete emacs-trunk/ emacs/
$ cd emacs
$ bzr up -r 101821
$ ./configure 2>&1 | tee in_tree_build.log
$ make bootstrap -j4 2>&1 | tee -a in_tree_build.log
$ grep -i error in_tree_build.log
checking jerror.h usability... yes
checking jerror.h presence... yes
checking for jerror.h... yes
checking for strerror... yes
checking for gai_strerror... yes
rm -f libXMenu11.a Activate.o AddPane.o AddSel.o ChgPane.o ChgSel.o
Create.o DelPane.o DelSel.o Destroy.o Error.o EvHand.o FindPane.o
FindSel.o InsPane.o InsSel.o Internal.o Locate.o Post.o Recomp.o
SetAEQ.o SetFrz.o SetPane.o SetSel.o XDelAssoc.o XLookAssoc.o XCrAssoc.o
XDestAssoc.o XMakeAssoc.o insque.o
/tmp/emacs/lib-src/../src/regex.c: In function ‘regerror’:
make[2]: [stamp-rcs-checkin] Errore 1 (ignorato)
make[2]: [stamp-grep-changelog] Errore 1 (ignorato)
make[2]: [stamp-rcs2log] Errore 1 (ignorato)
make[2]: [stamp-vcdiff] Errore 1 (ignorato)
In [B], the 'ignored' errors regard something like 'cp foo foo' _NOT_
your changes in 'infoclean'.
Repeating the same with rev. 101874, [A] gives:
$ grep -i error oot_build.log
checking jerror.h usability... yes
checking jerror.h presence... yes
checking for jerror.h... yes
checking for strerror... yes
checking for gai_strerror... yes
rm -f libXMenu11.a Activate.o AddPane.o AddSel.o ChgPane.o ChgSel.o
Create.o DelPane.o DelSel.o Destroy.o Error.o EvHand.o FindPane.o
FindSel.o InsPane.o InsSel.o Internal.o Locate.o Post.o Recomp.o
SetAEQ.o SetFrz.o SetPane.o SetSel.o XDelAssoc.o XLookAssoc.o XCrAssoc.o
XDestAssoc.o XMakeAssoc.o insque.o
make[1]: [infoclean] Errore 2 (ignorato)
make[1]: [infoclean] Errore 2 (ignorato)
make[1]: [infoclean] Errore 2 (ignorato)
make[2]: *** [info-real] Errore 2
make[1]: *** [info] Errore 2
/tmp/emacs/lib-src/../src/regex.c: In function ‘regerror’:
make: *** [bootstrap] Errore 2
BOOTSTRAP FAILURE!
Instead, [B] with rev. 101874 has success:
$ grep -i error in_tree_build.log
checking jerror.h usability... yes
checking jerror.h presence... yes
checking for jerror.h... yes
checking for strerror... yes
checking for gai_strerror... yes
rm -f libXMenu11.a Activate.o AddPane.o AddSel.o ChgPane.o ChgSel.o
Create.o DelPane.o DelSel.o Destroy.o Error.o EvHand.o FindPane.o
FindSel.o InsPane.o InsSel.o Internal.o Locate.o Post.o Recomp.o
SetAEQ.o SetFrz.o SetPane.o SetSel.o XDelAssoc.o XLookAssoc.o XCrAssoc.o
XDestAssoc.o XMakeAssoc.o insque.o
/tmp/emacs/lib-src/../src/regex.c: In function ‘regerror’:
make[2]: [stamp-rcs-checkin] Errore 1 (ignorato)
make[2]: [stamp-grep-changelog] Errore 1 (ignorato)
make[2]: [stamp-rcs2log] Errore 1 (ignorato)
make[2]: [stamp-vcdiff] Errore 1 (ignorato)
Where 'ignored' recards 'cp foo foo'.
Your changes, at least up to rev. 101874, were affected by this issue:
they did not work right in a bootstrap 'out of tree', and the 'ignored'
errors, [A], of rev. 101821, were trying to flag this.
Cheers,
Angelo.
next prev parent reply other threads:[~2010-10-10 16:00 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-10-06 15:15 Emacs bootstrap: 'ignored' errors [trunk] Angelo Graziosi
2010-10-08 19:14 ` Angelo Graziosi
2010-10-09 18:10 ` Glenn Morris
2010-10-09 20:58 ` Angelo Graziosi
2010-10-09 21:51 ` Eli Zaretskii
2010-10-09 22:06 ` Angelo Graziosi
2010-10-09 22:21 ` Eli Zaretskii
2010-10-09 22:41 ` Angelo Graziosi
2010-10-09 22:44 ` Glenn Morris
2010-10-09 22:56 ` Angelo Graziosi
2010-10-10 16:00 ` Angelo Graziosi [this message]
2010-10-09 22:39 ` Glenn Morris
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4CB1E324.2000507@alice.it \
--to=angelo.graziosi@alice.it \
--cc=eliz@gnu.org \
--cc=emacs-devel@gnu.org \
--cc=rgm@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.