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
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.3.
.TH PYTHRAN "1" "January 2024" "pythran 0.15.0+ds" "User Commands"
.SH NAME
pythran \- part of pythran: ahead of time compiler for Python
.SH DESCRIPTION
usage: pythran [\-h] [\-o OUTPUT_FILE] [\-P] [\-E] [\-e] [\-v] [\-w] [\-V] [\-p pass]
.IP
[\-I include_dir] [\-L ldflags] [\-D macro_definition]
[\-U macro_definition] [\-\-config config] [\-ftime\-report]
input_file
.PP
pythran: a python to C++ compiler
.SS "positional arguments:"
.TP
input_file
the pythran module to compile, either a .py or a .cpp
file
.SS "options:"
.TP
\fB\-h\fR, \fB\-\-help\fR
show this help message and exit
.TP
\fB\-o\fR OUTPUT_FILE
path to generated file. Honors %{ext}.
.TP
\fB\-P\fR
only run the high\-level optimizer, do not compile
.TP
\fB\-E\fR
only run the translator, do not compile
.TP
\fB\-e\fR
similar to \fB\-E\fR, but does not generate python glue
.TP
\fB\-v\fR
be more verbose
.TP
\fB\-w\fR
be less verbose
.TP
\fB\-V\fR, \fB\-\-version\fR
show program's version number and exit
.TP
\fB\-p\fR pass
any pythran optimization to apply before code
generation
.TP
\fB\-I\fR include_dir
any include dir relevant to the underlying C++ compiler
.TP
\fB\-L\fR ldflags
any search dir relevant to the linker
.TP
\fB\-D\fR macro_definition
any macro definition relevant to the underlying C++
compiler
.TP
\fB\-U\fR macro_definition
any macro undef relevant to the underlying C++ compiler
.TP
\fB\-\-config\fR config
config additional params
.TP
\fB\-ftime\-report\fR
report time spent in each optimization/transformation
.PP
It's a megablast!
.SH AUTHORS
pythran was primarily written by Serge Guelton.
.SH "SEE ALSO"
This script is part of pythran. Full documentation for pythran can be
consulted at https://pythran.readthedocs.io .
|