- Timestamp:
- Nov 8, 2006, 8:52:07 PM (18 years ago)
- Branches:
- master
- Children:
- a58af15
- Parents:
- a9e389d
- Location:
- BOOK/cross-tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/cross-tools/common/binutils.xml
ra9e389d r6561a0f 169 169 information in the executable to determine which source file and line 170 170 number are associated with the address</para> 171 <indexterm zone="ch- system-binutils addr2line">171 <indexterm zone="ch-cross-tools-binutils addr2line"> 172 172 <primary sortas="b-addr2line">addr2line</primary> 173 173 </indexterm> … … 179 179 <listitem> 180 180 <para>Creates, modifies, and extracts from archives</para> 181 <indexterm zone="ch- system-binutils ar">181 <indexterm zone="ch-cross-tools-binutils ar"> 182 182 <primary sortas="b-ar">ar</primary> 183 183 </indexterm> … … 190 190 <para>An assembler that assembles the output of <command>gcc</command> 191 191 into object files</para> 192 <indexterm zone="ch- system-binutils as">192 <indexterm zone="ch-cross-tools-binutils as"> 193 193 <primary sortas="b-as">as</primary> 194 194 </indexterm> … … 201 201 <para>Used by the linker to de-mangle C++ and Java symbols and to keep 202 202 overloaded functions from clashing</para> 203 <indexterm zone="ch- system-binutils c-filt">203 <indexterm zone="ch-cross-tools-binutils c-filt"> 204 204 <primary sortas="b-c++filt">c++filt</primary> 205 205 </indexterm> … … 211 211 <listitem> 212 212 <para>Displays call graph profile data</para> 213 <indexterm zone="ch- system-binutils gprof">213 <indexterm zone="ch-cross-tools-binutils gprof"> 214 214 <primary sortas="b-gprof">gprof</primary> 215 215 </indexterm> … … 223 223 into a single file, relocating their data and tying up symbol 224 224 references</para> 225 <indexterm zone="ch- system-binutils ld">225 <indexterm zone="ch-cross-tools-binutils ld"> 226 226 <primary sortas="b-ld">ld</primary> 227 227 </indexterm> … … 233 233 <listitem> 234 234 <para>Lists the symbols occurring in a given object file</para> 235 <indexterm zone="ch- system-binutils nm">235 <indexterm zone="ch-cross-tools-binutils nm"> 236 236 <primary sortas="b-nm">nm</primary> 237 237 </indexterm> … … 246 246 shown is useful to programmers who are working on the compilation 247 247 tools</para> 248 <indexterm zone="ch- system-binutils objdump">248 <indexterm zone="ch-cross-tools-binutils objdump"> 249 249 <primary sortas="b-objdump">objdump</primary> 250 250 </indexterm> … … 258 258 in the archive; the index lists all of the symbols defined by archive 259 259 members that are relocatable object files</para> 260 <indexterm zone="ch- system-binutils ranlib">260 <indexterm zone="ch-cross-tools-binutils ranlib"> 261 261 <primary sortas="b-ranlib">ranlib</primary> 262 262 </indexterm> … … 268 268 <listitem> 269 269 <para>Displays information about ELF type binaries</para> 270 <indexterm zone="ch- system-binutils readelf">270 <indexterm zone="ch-cross-tools-binutils readelf"> 271 271 <primary sortas="b-readelf">readelf</primary> 272 272 </indexterm> … … 279 279 <para>Lists the section sizes and the total size for the given 280 280 object files</para> 281 <indexterm zone="ch- system-binutils size">281 <indexterm zone="ch-cross-tools-binutils size"> 282 282 <primary sortas="b-size">size</primary> 283 283 </indexterm> … … 293 293 the initializing and loading sections while for other types of files, 294 294 it scans the entire file</para> 295 <indexterm zone="ch- system-binutils strings">295 <indexterm zone="ch-cross-tools-binutils strings"> 296 296 <primary sortas="b-strings">strings</primary> 297 297 </indexterm> … … 303 303 <listitem> 304 304 <para>Discards symbols from object files</para> 305 <indexterm zone="ch- system-binutils strip">305 <indexterm zone="ch-cross-tools-binutils strip"> 306 306 <primary sortas="b-strip">strip</primary> 307 307 </indexterm> … … 316 316 <command>strerror</command>, <command>strtol</command>, and 317 317 <command>strtoul</command></para> 318 <indexterm zone="ch- system-binutils libiberty">318 <indexterm zone="ch-cross-tools-binutils libiberty"> 319 319 <primary sortas="c-libiberty">libiberty</primary> 320 320 </indexterm> … … 326 326 <listitem> 327 327 <para>The Binary File Descriptor library</para> 328 <indexterm zone="ch- system-binutils libbfd">328 <indexterm zone="ch-cross-tools-binutils libbfd"> 329 329 <primary sortas="c-libbfd">libbfd</primary> 330 330 </indexterm> … … 339 339 it is used for building utilities like 340 340 <command>objdump</command>.</para> 341 <indexterm zone="ch- system-binutils libopcodes">341 <indexterm zone="ch-cross-tools-binutils libopcodes"> 342 342 <primary sortas="c-libopcodes">libopcodes</primary> 343 343 </indexterm> -
BOOK/cross-tools/common/gcc-final.xml
ra9e389d r6561a0f 147 147 <listitem> 148 148 <para>The C compiler</para> 149 <indexterm zone="ch- system-gcccc">149 <indexterm zone="ch-cross-tools-gcc-final cc"> 150 150 <primary sortas="b-cc">cc</primary> 151 151 </indexterm> … … 158 158 <para>The C preprocessor; it is used by the compiler to expand the 159 159 #include, #define, and similar statements in the source files</para> 160 <indexterm zone="ch- system-gcccpp">160 <indexterm zone="ch-cross-tools-gcc-final cpp"> 161 161 <primary sortas="b-cpp">cpp</primary> 162 162 </indexterm> … … 168 168 <listitem> 169 169 <para>The C++ compiler</para> 170 <indexterm zone="ch- system-gccc">170 <indexterm zone="ch-cross-tools-gcc-final c"> 171 171 <primary sortas="b-c++">c++</primary> 172 172 </indexterm> … … 178 178 <listitem> 179 179 <para>The C++ compiler</para> 180 <indexterm zone="ch- system-gccg">180 <indexterm zone="ch-cross-tools-gcc-final g"> 181 181 <primary sortas="b-g++">g++</primary> 182 182 </indexterm> … … 188 188 <listitem> 189 189 <para>The C compiler</para> 190 <indexterm zone="ch- system-gccgcc">190 <indexterm zone="ch-cross-tools-gcc-final gcc"> 191 191 <primary sortas="b-gcc">gcc</primary> 192 192 </indexterm> … … 198 198 <listitem> 199 199 <para>A shell script used to help create useful bug reports</para> 200 <indexterm zone="ch- system-gccgccbug">200 <indexterm zone="ch-cross-tools-gcc-final gccbug"> 201 201 <primary sortas="b-gccbug">gccbug</primary> 202 202 </indexterm> … … 209 209 <para>A coverage testing tool; it is used to analyze programs to 210 210 determine where optimizations will have the most effect</para> 211 <indexterm zone="ch- system-gccgcov">211 <indexterm zone="ch-cross-tools-gcc-final gcov"> 212 212 <primary sortas="b-gcov">gcov</primary> 213 213 </indexterm> … … 219 219 <listitem> 220 220 <para>Contains run-time support for <command>gcc</command></para> 221 <indexterm zone="ch- system-gcclibgcc">221 <indexterm zone="ch-cross-tools-gcc-final libgcc"> 222 222 <primary sortas="c-libgcc*">libgcc*</primary> 223 223 </indexterm> … … 230 230 <para>The libmudflap libraries are used by GCC for instrumenting 231 231 pointer and array dereferencing operations.</para> 232 <indexterm zone="ch- system-gcclibmudflap">232 <indexterm zone="ch-cross-tools-gcc-final libmudflap"> 233 233 <primary sortas="c-libmudflap*">libmudflap*</primary> 234 234 </indexterm> … … 240 240 <listitem> 241 241 <para>The standard C++ library</para> 242 <indexterm zone="ch- system-gcclibstdc">242 <indexterm zone="ch-cross-tools-gcc-final libstdc"> 243 243 <primary sortas="c-libstdc++">libstdc++</primary> 244 244 </indexterm> … … 251 251 <para>Provides supporting routines for the C++ programming 252 252 language</para> 253 <indexterm zone="ch- system-gcclibsupc">253 <indexterm zone="ch-cross-tools-gcc-final libsupc"> 254 254 <primary sortas="c-libsupc++">libsupc++</primary> 255 255 </indexterm> -
BOOK/cross-tools/x86/uclibc.xml
ra9e389d r6561a0f 78 78 </seglistitem> 79 79 </segmentedlist> 80 80 <!-- 81 81 <variablelist> 82 82 <bridgehead renderas="sect3">Short Descriptions</bridgehead> … … 84 84 <?dbhtml list-presentation="table"?> 85 85 86 <!--<varlistentry id="uclibc">86 <varlistentry id="uclibc"> 87 87 <term><filename 88 88 class="headerfile">/usr/include/{asm,linux}/*.h</filename></term> … … 95 95 </listitem> 96 96 </varlistentry> 97 </variablelist> 97 98 --> 98 </variablelist>99 99 100 100 </sect2>
Note:
See TracChangeset
for help on using the changeset viewer.