* makeinfo problem
@ 2001-09-04 7:42 Kaoru Fukui
2001-09-04 8:57 ` Eli Zaretskii
0 siblings, 1 reply; 4+ messages in thread
From: Kaoru Fukui @ 2001-09-04 7:42 UTC (permalink / raw)
To: gdb; +Cc: keiths
Hi!
I got insight source from cvs yesterday.
Problem is that.
My texinfo is texinfo-4.0b-3.src.rpm from rawhide.
My system is linuxppc.
Any help
Kaoru
PS: I'm not on gdb list so please CC for me.
I heard the list from Keith,Thanks Keith
----------------------------------------------------------------
make[1]: Leaving directory `/usr/src/redhat/BUILD/src/sim'
make[1]: Entering directory `/usr/src/redhat/BUILD/src/gdb'
make[2]: Entering directory `/usr/src/redhat/BUILD/src/gdb'
make[3]: Entering directory `/usr/src/redhat/BUILD/src/gdb/doc'
echo "@set GDBVN `head -1 ./../version.in`" > ./GDBvn.new
mv GDBvn.new GDBvn.texi
(test "$LN_S" = "ln -s" && \
ln -s ./all-cfg.texi gdb-cfg.texi) || \
ln ./all-cfg.texi gdb-cfg.texi || \
cp ./all-cfg.texi gdb-cfg.texi
makeinfo -I ./../../readline/doc -I ./../mi -I . -o ./gdb.info gdb.texinfo
gdb.texinfo:6326: No matching `@end itemize'.
./../../readline/doc/rluser.texinfo:1331: warning: @sc argument all uppercase,
thus no effect.
makeinfo: Removing output file `./gdb.info' due to errors; use --force to preserve.
make[3]: *** [gdb.info] Error 2
make[3]: Leaving directory `/usr/src/redhat/BUILD/src/gdb/doc'
make[2]: *** [subdir_do] Error 1
make[2]: Leaving directory `/usr/src/redhat/BUILD/src/gdb'
make[1]: *** [info] Error 2
make[1]: Leaving directory `/usr/src/redhat/BUILD/src/gdb'
make: *** [do-info] Error 1
error: Bad exit status from /var/tmp/rpm-tmp.1235 (%build)
RPM build errors:
Bad exit status from /var/tmp/rpm-tmp.1235 (%build)
[root@g4mpKFUKUI SPECS]#
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: makeinfo problem 2001-09-04 7:42 makeinfo problem Kaoru Fukui @ 2001-09-04 8:57 ` Eli Zaretskii 2001-09-10 0:25 ` Eli Zaretskii 0 siblings, 1 reply; 4+ messages in thread From: Eli Zaretskii @ 2001-09-04 8:57 UTC (permalink / raw) To: k_fukui, Jim Blandy; +Cc: gdb, keiths > Date: Tue, 4 Sep 2001 23:39:22 +0900 > From: Kaoru Fukui <k_fukui@highway.ne.jp> > > Problem is that. > My texinfo is texinfo-4.0b-3.src.rpm from rawhide. Your Texinfo is fine. > makeinfo -I ./../../readline/doc -I ./../mi -I . -o ./gdb.info gdb.texinfo > gdb.texinfo:6326: No matching `@end itemize'. There's some snafu in the latest version of gdb.texinfo in the CVS on the trunk. Jim, it seems that your commit, which created version 1.50, is the culprit: the text you commited is broken, it looks like some lines just disappeared. See the fragment below. In addition, the new Overlays section is not mentioned at all in the log message. > ./../../readline/doc/rluser.texinfo:1331: warning: @sc argument all uppercase, > thus no effect. This is a known problem with the Readline docs. We don't maintain that, so we just inherit what Readline developers produce. This is just a warning, and it's harmless. Here's the part of the Overlays section which causes the trouble. As you see, it's completely broken: Overlays introduce a number of complications: @itemize bullet @item Since you cannot have all your overlays loaded at once, This will probably overwrite the previous overlay loaded in that space; you will need to re-load modify your main program such that, before it calls a function located in an overlay, it first copies that overlay from the large memory into the instruction memory. copy the overlay into place want to run which is larger than 64 kilobytes. a 64kb instruction address space. to run on a system which has a small amount of memory available from which it can execute machine instructions, and a large amount of separate data memory, ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: makeinfo problem 2001-09-04 8:57 ` Eli Zaretskii @ 2001-09-10 0:25 ` Eli Zaretskii 2001-09-17 21:37 ` Andrew Cagney 0 siblings, 1 reply; 4+ messages in thread From: Eli Zaretskii @ 2001-09-10 0:25 UTC (permalink / raw) To: jimb; +Cc: k_fukui, gdb, keiths > Date: Tue, 04 Sep 2001 18:50:41 +0300 > From: "Eli Zaretskii" <eliz@is.elta.co.il> > > > Date: Tue, 4 Sep 2001 23:39:22 +0900 > > From: Kaoru Fukui <k_fukui@highway.ne.jp> > > > > Problem is that. > > My texinfo is texinfo-4.0b-3.src.rpm from rawhide. > > Your Texinfo is fine. > > > makeinfo -I ./../../readline/doc -I ./../mi -I . -o ./gdb.info gdb.texinfo > > gdb.texinfo:6326: No matching `@end itemize'. > > There's some snafu in the latest version of gdb.texinfo in the CVS on > the trunk. Jim, it seems that your commit, which created version > 1.50, is the culprit: the text you commited is broken, it looks like > some lines just disappeared. See the fragment below. > > In addition, the new Overlays section is not mentioned at all in the > log message. Jim, these problems is still in the CVS, which means someone who does a "cvs up" cannot build the current sources. Could you please fix this ASAP, or at least send me the correct text of the Overlays section, so that I could fix it myself? Thanks. ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: makeinfo problem 2001-09-10 0:25 ` Eli Zaretskii @ 2001-09-17 21:37 ` Andrew Cagney 0 siblings, 0 replies; 4+ messages in thread From: Andrew Cagney @ 2001-09-17 21:37 UTC (permalink / raw) To: k_fukui; +Cc: Eli Zaretskii, jimb, gdb, keiths >> There's some snafu in the latest version of gdb.texinfo in the CVS on >> the trunk. Jim, it seems that your commit, which created version >> 1.50, is the culprit: the text you commited is broken, it looks like >> some lines just disappeared. See the fragment below. >> >> In addition, the new Overlays section is not mentioned at all in the >> log message. > > > Jim, these problems is still in the CVS, which means someone who does a > "cvs up" cannot build the current sources. > > Could you please fix this ASAP, or at least send me the correct text > of the Overlays section, so that I could fix it myself? I believe this has been fixed. Andrew ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2001-09-17 21:37 UTC | newest] Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2001-09-04 7:42 makeinfo problem Kaoru Fukui 2001-09-04 8:57 ` Eli Zaretskii 2001-09-10 0:25 ` Eli Zaretskii 2001-09-17 21:37 ` Andrew Cagney
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox