Follow-up: RTEMS Project Documentation repository available.

Gene Smith gds at chartertn.net
Sat Sep 10 01:52:27 UTC 2016


Found that the pdf build failed because of lack of several texinfo-* 
packages that the "waf configure" doesn't catch and the error dump 
doesn't help with. So in addition to these fedora packages to satisfy 
configuration:

Installed fedora package texlive-xetex-bin to provide xelatex.
Installed fedora package texlive-glossaries-bin to provide makeglossaries.
Installed fedora package npm to install inliner:
sudo npm install -g inliner

I also needed these texlive-* packages:

framed
threeparttable
wrapfig
upquote
cap-of
multirow
eqparbox
xstring
lineno
lato

These were found by running in the eclipse/build/latex directory
pdflatex --shell-escape eclipse.tex
which will point out any missing "style" *.sty files that are provided 
by the above texlive-* packages.

(I hesitate to install all texlive-* pkgs since there are 100's of them.)

Also, the warning about something deprecated can be fixed with this patch:

diff --git a/common/conf.py b/common/conf.py
index b39de19..474984a 100644
--- a/common/conf.py
+++ b/common/conf.py
@@ -9,7 +9,7 @@ extensions = [
         "sphinx.ext.doctest",
         "sphinx.ext.graphviz",
         "sphinx.ext.intersphinx",
-       "sphinx.ext.pngmath",
+       "sphinx.ext.imgmath",
         "rtemsext",
         "rtemsdomain",
  ]

-gene





More information about the users mailing list