Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
871b5a5b
Commit
871b5a5b
authored
13 years ago
by
Konstantin Osipov
Browse files
Options
Downloads
Patches
Plain Diff
Start working on the developer guide.
parent
fea649fb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/developer/CMakeLists.txt
+6
-4
6 additions, 4 deletions
doc/developer/CMakeLists.txt
doc/developer/developer.xml
+39
-2
39 additions, 2 deletions
doc/developer/developer.xml
with
45 additions
and
6 deletions
doc/developer/CMakeLists.txt
+
6
−
4
View file @
871b5a5b
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
)
This diff is collapsed.
Click to expand it.
doc/developer/developer.xml
+
39
−
2
View file @
871b5a5b
<?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
-->
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment