1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
.\"
.\" Created by Ricardo Crdenes Medina <ricardo@conysis.com>
.\" for the Debian 'sip' package
.\"
.TH SIP 1 "2004/01/03"
.SH NAME
sip \- generates C++/Python bindings
.SH SYNOPSIS
.B sip
[\fI-h\fR] [\fI-V\fR] [\fI-a file\fR] [\fI-b file\fR] [\fI-c dir\fR]
[\fI-d file\fR] [\fI-e\fR] [\fI-I dir\fR] [\fI-j #\fR] [\fI-m file\fR]
[\fI-p module\fR] [\fI-r\fR] [\fI-s suffix\fR] [\fI-t version\fR]
[\fI-w\fR] [\fI-x feature\fR] [\fI-z file\fR] [\fIfile\fR]
.SH DESCRIPTION
.B sip
takes a set of specification files, and generate C++ compilable code,
documentation and Makefiles.
The format of the needed specification file is similar to a C++ header.
sip includes run-time support for the generated code (libsip).
.SH OPTIONS
.TP
.B \-h
Show summary of options.
.TP
.B \-V
Display the sip version number
.TP
.B \-a file
The name of the Scintilla API file. If not indicated, it will not
be generated.
.TP
.B \-b file
The name of the build file. If not indicated, it will not be generated.
.TP
.B \-c dir
The name of the directory where generated source file will be put.
If not indicated, code will not be generated.
.TP
.B -d file
The name of the documentation file. It's not generated by default.
.TP
.B -e
Enable support for exceptions.
.TP
.B -I dir
Directory where sip can search for included files.
.TP
.B -j number
Splits the generated code in \fInumber\fR files (1 by default). This
flag was added for parallel compilation on SMP machines.
.TP
.B -m file
The name of the Makefile. None is generated if you don't specify
this option.
.TP
.B -p module
The name of the generated C++ module. By default, sip takes what you
have stated using the %Module directive.
.TP
.B -r
Enable tracing on generated code.
.TP
.B -s suffix
The suffix used for generated C++ files (".cpp" if none specified)
.TP
.B -t version
The primary version to generate code for. You only can specify those
defined with a %Timeline directive. If you don't specify one, sip
will generate the latest available.
.TP
.B -w
Enable warning messages
.TP
.B -x feature
Disable a feature
.TP
.B -z file
This way you can specify a file containing extra command line flags
.TP
.B file
The name of the file containing the specification. If you skip it,
sip will expect to be fed by stdin.
.SH AUTHOR
This manual page was written by Ricardo Javier Cardenes Medina <rcardenes@debian.org>,
for the Debian GNU/Linux system (but may be used by others).
|