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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
=head1 NAME
botch-cross - execute botch tools in the cross phase
=head1 SYNOPSIS
=over
=item B<botch-cross> [options] [I<buildarch> I<hostarch> I<buildpackages> I<sources>]
=back
=head1 DESCRIPTION
Use the botch tools to analyze the cross bootstrap phase.
=head1 OPTIONS
=over 4
=item B<-h, --help>
Show help message
=item B<-k, --keep>
Keep the temporary files
=item B<-w, --online>
Produce stat.html for online consumption
=item B<-o, --output=>I<DIR>
Output directory. Default is the current directory
=item B<-t, --tmp=>I<DIR>
Temporary directory. Default is created by I<mktemp(1)>
=item B<-G, --optgraph>
Calculate a dependency graph where each installation set contains the minimal
number of unavailable binary packages.
=item B<-T, --timers>
time all program executions
=item B<-m, --allowsrcmismatch>
Allow binary packages to be associated with a source package of a different
version than themselves
=item B<-e, --ignoresrclessbin>
Ignore binary packages without a source package.
=item B<-b, --sapsb>
Calculate strong articulation points and bridges
=item B<-I, --deb-drop-b-d-indep>
Drop Build-Depends-Indep dependencies.
=item B<-v, --verbose>
Be more verbose
=item B<-d, --debug>
Maximum verbosity
=item B<-D, --develop>
Execute tools from the source checkout instead of I<$PATH>
=back
=head1 FILES
The following files are created in the output directory:
=over 4
=item F<buildgraph_acyclic.xml>
The output of botch-profile-build-fvs.
=item F<buildgraph.xml>
The output of botch-create-graph.
=item F<cross.json>
The output of botch-dose2html.
=item F<cyclic_src:*.xml>
The strongly connected components created by botch-extract-scc.
=item F<fas>
The standard output of botch-extract-scc.
=item F<feedback_vertex_set.list>
The concatenated output of multiple runs of botch-find-fvs.
=item F<ma.diff>
The output of botch-ma-diff.
=item F<order1.lst>
The output of botch-build-fixpoint.
=item F<order2.lst>
The output of botch-partial-order.
=item F<remove.list>
The output of botch-fasofstats.
=item F<srcgraph_acyclic.xml>
F<buildgraph_acyclic.xml> converted by botch-buildgraph2srcgraph.
=item F<srcgraph.xml>
F<buildgraph.xml> converted by botch-buildgraph2srcgraph.
=item F<stats.html>
The standard output of botch-stat-html
=item F<stats.json>
The JSON output of botch-stat-html
=back
=head1 BUGS
See L<http://bugs.debian.org/botch>.
=head1 SEE ALSO
Debian doc-base Manual F</usr/share/doc/botch/wiki/Home.html>
=head1 AUTHOR
This man page was written by Johannes Schauer. Botch is written by Johannes
Schauer and Pietro Abate.
=head1 COPYRIGHT
Copyright 2012-2014 Johannes Schauer, Pietro Abate
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version. A special linking exception to the GNU Lesser General Public
License applies to this library, see the COPYING file for more information.
|