Skip to content
Snippets Groups Projects
Commit 871b5a5b authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

Start working on the developer guide.

parent fea649fb
No related branches found
No related tags found
No related merge requests found
add_custom_command(OUTPUT tarantool_user_guide.html
COMMAND ${XSLTPROC} --xinclude -o tarantool_user_guide.html
http://docbook.sourceforge.net/release/xsl-ns/current/html/docbook.xsl
user.xml)
add_custom_target(dev-html ALL
COMMAND ${XSLTPROC} --nonet
--stringparam collect.xref.targets "all"
--xinclude -o tarantool_developer_guide.html
${CMAKE_SOURCE_DIR}/doc/user/tnt-html.xsl
developer.xml)
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE book [
<!ENTITY % tnt SYSTEM "../tnt.ent">
%tnt;
]>
<book xmlns="http://docbook.org/ns/docbook"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude" version="5.0">
<title>Tarantool/Box User Guide, version 1.3.5</title>
<xi:include href="./intro.xml"/>
<title>Tarantool/Box Developer Guide</title>
<chapter>
<title>Compiling</title>
<section>
<title>How to fix the compile time error about missing confetti</title>
<para>
An error about missing confetti:
<programlisting>
Generating prscfg.h, prscfg.c...
[ 13%] Generating prscfg.h, prscfg.c
/bin/sh: CONFETTI-NOTFOUND: not found
</programlisting>
This error is caused by cmake, trying to re-create generated files
prscfg.h, prscfg.c in <filename>cfg/</filename> directory.
These files are under revision control and normally need not to be
regenerated.
The fix is to
<programlisting>
<prompt>$ </prompt>git checkout cfg/prscfg.h
<prompt>$ </prompt>git checkout cfg/prscfg.c
<prompt>$ </prompt>touch cfg/prscfg.[hc]
</programlisting>
The other alternative, if you have actually modified
<filename>core_cfg.cfg_tmpl</filename> is to install confetti from
<link xlink:href="http://github.com/mailru/confetti"/> and let cmake use it.
</para>
</section>
</chapter>
<!--
TOC:
......@@ -45,3 +77,8 @@
Glossary of terms
-->
</book>
<!--
vim: tw=66 syntax=docbk
vim: spell spelllang=en_us
-->
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment