~ubuntu-branches/ubuntu/trusty/ctfutils/trusty

« back to all changes in this revision

Viewing changes to cddl/usr.bin/ctfconvert/ctfconvert.1

  • Committer: Package Import Robot
  • Author(s): Robert Millan
  • Date: 2013-11-09 17:07:06 UTC
  • Revision ID: package-import@ubuntu.com-20131109170706-kacr6nvpkbhxsk81
Tags: upstream-9.2
ImportĀ upstreamĀ versionĀ 9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.\"
 
2
.\" Copyright (c) 2010 The FreeBSD Foundation 
 
3
.\" All rights reserved. 
 
4
.\" 
 
5
.\" This software was developed by Rui Paulo under sponsorship from the
 
6
.\" FreeBSD Foundation. 
 
7
.\"  
 
8
.\" Redistribution and use in source and binary forms, with or without 
 
9
.\" modification, are permitted provided that the following conditions 
 
10
.\" are met: 
 
11
.\" 1. Redistributions of source code must retain the above copyright 
 
12
.\"    notice, this list of conditions and the following disclaimer. 
 
13
.\" 2. Redistributions in binary form must reproduce the above copyright 
 
14
.\"    notice, this list of conditions and the following disclaimer in the 
 
15
.\"    documentation and/or other materials provided with the distribution. 
 
16
.\" 
 
17
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 
 
18
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
 
19
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
 
20
.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 
 
21
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
 
22
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 
 
23
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
 
24
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
 
25
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 
 
26
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
 
27
.\" SUCH DAMAGE. 
 
28
.\"
 
29
.\" $FreeBSD$
 
30
.\"
 
31
.Dd July 7, 2010
 
32
.Dt CTFCONVERT 1
 
33
.Os
 
34
.Sh NAME
 
35
.Nm ctfconvert
 
36
.Nd convert debug data to CTF data
 
37
.Sh SYNOPSIS
 
38
.Nm
 
39
.Op Fl gis
 
40
.Fl l Ar label
 
41
.Fl L Ar labelenv
 
42
.Op Fl o Ar outfile
 
43
object_file
 
44
.Sh DESCRIPTION
 
45
The
 
46
.Nm
 
47
utility converts debug information from a binary file to CTF data and replaces
 
48
the debug section of that file with a CTF section called SUNW_ctf.
 
49
This new section is added to the input file, unless the -o
 
50
option is present.
 
51
You can also opt to keep the original debugging section with the
 
52
-g option.
 
53
.Pp
 
54
The following options are available:
 
55
.Bl -tag -width indent
 
56
.It Fl l Ar label
 
57
Sets the label as
 
58
.Ar label .
 
59
.It Fl L Ar labelenv
 
60
Instructs
 
61
.Nm
 
62
to read the label from the environment variable
 
63
.Ar labelenv .
 
64
.It Fl g
 
65
Don't delete the original debugging section.
 
66
.It Fl i
 
67
Ignore object files built from other languages than C.
 
68
.It Fl s
 
69
Use the .dynsym ELF section instead of the .symtab ELF section.
 
70
.It Fl o Ar outfile
 
71
Write the output to file in
 
72
.Ar outfile .
 
73
.El
 
74
.Sh EXIT STATUS
 
75
.Ex -std
 
76
.Sh SEE ALSO
 
77
.Xr ctfmerge 1 , 
 
78
.Xr ctfdump 1
 
79
.Sh HISTORY
 
80
The
 
81
.Nm
 
82
utility first appeared in
 
83
.Fx 7.0 .
 
84
.Sh AUTHORS
 
85
The CTF utilities came from OpenSolaris.