Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2014-01-07 18:54:58 +0400
committerCorinna Vinschen <corinna@vinschen.de>2014-01-07 18:54:58 +0400
commit6d49b42a95cb032a94cb51f064646f380a082362 (patch)
tree474f67c6686d554e295c0389a85d1b721f9f7b42
parent439f4e7a8772f34adaadab19b4a6613695926c70 (diff)
* faq-programming.xml: Update packages needed to build Cygwin.
-rw-r--r--winsup/doc/ChangeLog4
-rw-r--r--winsup/doc/faq-programming.xml16
2 files changed, 16 insertions, 4 deletions
diff --git a/winsup/doc/ChangeLog b/winsup/doc/ChangeLog
index 1bb3defd3..ecb04a4d1 100644
--- a/winsup/doc/ChangeLog
+++ b/winsup/doc/ChangeLog
@@ -1,3 +1,7 @@
+2014-01-07 Mark Geisert <mark@maxrnd.com>
+
+ * faq-programming.xml: Update packages needed to build Cygwin.
+
2013-12-07 Corinna Vinschen <corinna@vinschen.de>
* new-features.xml (ov-new1.7.26): Add new section.
diff --git a/winsup/doc/faq-programming.xml b/winsup/doc/faq-programming.xml
index c01a127e6..998364240 100644
--- a/winsup/doc/faq-programming.xml
+++ b/winsup/doc/faq-programming.xml
@@ -693,11 +693,19 @@ rewriting the runtime library in question from specs...
<answer>
<para>First, you need to make sure you have the necessary build tools
-installed; you at least need <literal>gcc</literal>, <literal>make</literal>,
-<literal>perl</literal>, and <literal>cocom</literal>. If you want to run
-the tests, <literal>dejagnu</literal> is also required.
+installed; you at least need <literal>gcc-g++</literal>, <literal>make</literal>,
+<literal>perl</literal>, <literal>cocom</literal>, <literal>gettext</literal>,
+and <literal>zlib-devel</literal>.
+Building for 32-bit Cygwin also requires <literal>libiconv</literal>,
+<literal>mingw64-i686-gcc-g++</literal>, <literal>mingw64-i686-zlib</literal>,
+and <literal>mingw64-x86_64-gcc-core</literal>.
+Building for 64-bit Cygwin also requires <literal>libiconv-devel</literal>,
+<literal>mingw64-x86_64-gcc-g++</literal>, and
+<literal>mingw64-x86_64-zlib</literal>.
+If you want to run the tests, <literal>dejagnu</literal> is also required.
Normally, building ignores any errors in building the documentation,
-which requires the <literal>dblatex</literal>, <literal>docbook-xml45</literal>, <literal>docbook-xsl</literal>, and
+which requires the <literal>dblatex</literal>,
+<literal>docbook-xml45</literal>, <literal>docbook-xsl</literal>, and
<literal>xmlto</literal> packages. For more information on building the
documentation, see the README included in the <literal>cygwin-doc</literal> package.
</para>