Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

as_ia(1) [hpux man page]

as_ia(1)						      General Commands Manual							  as_ia(1)

NAME
as_ia: as - assembler for Integrity systems SYNOPSIS
outfile] [file] Remarks This manpage describes on Integrity systems. For on PA-RISC systems, see as_pa(1). DESCRIPTION
assembles the named source file file, or the standard input if file is not specified. The output of the assembler is an ELF relocatable object file that must be processed by before it can be executed. Assembler output is stored in file outfile. If the option is not specified, the assembler constructs a default name. If no source file is specified, outfile will be otherwise the suffix (if present) is stripped from the name of the source file and is appended to it. Any directory names are removed from the name so that the object file is always written to the current directory. does not not perform any macro processing. Standard C preprocessor constructs can be used if the assembler is invoked through the C com- piler. Options recognizes the following options: Specify that the source file contains 32-bit ABI targeted code. This option is overridden by the assembler directive in the source file. The object file is a 32-bit ELF file by default. Specify that the source file contains 64-bit ABI targeted code. This option is overridden by the assembler directive in the source file. The object file is a 64-bit ELF file by default. Permit an unlimited number of errors to be tolerated before the assembly process is abandoned. By default, one hundred errors are allowed before the assembler aborts. Specify that the object file should be 32-bit ELF. This is the default (see also Note that it is valid to write 64-bit ABI targeted code to a 32-bit ELF file. All 32-bit addresses in the object file are zero-extended to 64-bit upon loading. Zero-extension, however, may invalidate any negative addresses (such as with relocations). Specify that the object file should be 64-bit ELF (see also See See Set dependency checking. lvl must be one of the following: or what must be one of the following: or Produce an output object file with the name outfile instead of constructing a default name. Print the version information to stderr before assembling the input. Suppress the specified warning messages. Promote the specified warning messages to errors. Suppress all warning messages. EXTERNAL INFLUENCES
Environment Variables determines the location of the message catalog for the processing of controls which assembler to invoke and enables support for multiple (cross-) development kits. The variable points to the root of a spe- cific SDK. No provision has been made to validate the value of the variable or the suitability of the assembler that's being invoked. International Code Set Support Single- and multi-byte character code sets are supported. WARNINGS
The assembler does not check dependencies. DIAGNOSTICS
When syntactic or semantic errors occur, a single-line diagnostic is displayed on standard error, together with the line number and the file name in which it occurred. FILES
assembler error message catalog default assembler output file SEE ALSO
cc(1), ld(1), elf(3E). Integrity Systems Only as_ia(1)

Check Out this Related Man Page

size(1) 						      General Commands Manual							   size(1)

NAME
size - print section sizes of object files SYNOPSIS
files DESCRIPTION
produces section size information for each section in the object files. The size of the text, data and bss (uninitialized data) sections are printed along with the total size of the object file. If an archive file is input to the command, the information for all archive mem- bers is displayed. Options recognizes the following options: Print sizes in decimal. This is the default. Print sizes in octal. Print sizes in hexadecimal. Print version information about the command. Print a verbose list of the subspaces in the object files. Each subspace is listed on a separate line with its size, physical address, and virtual address. Print the size of each allocatable section (ELF only). Print the size and permission bits of each loadable segment (ELF only). Print the sizes of non loadable segments or non allocatable sections (ELF only). Print the usage menu. EXTERNAL INFLUENCES
Environment Variables The following internationalization variables affect the execution of Determines the locale category for native language, local customs and coded character set in the absence of and other environment variables. If is not specified or is set to the empty string, a default of (see lang(5)) is used instead of Determines the values for all locale categories and has precedence over and other environment variables. Determines the locale that should be used to affect the format and contents of diagnostic messages written to standard error. Determines the locale category for numeric formatting. Determines the locale category for character handling functions. Determines the location of message catalogues for the processing of If any internationalization variable contains an invalid setting, behaves as if all internationalization variables are set to See envi- ron(5). International Code Set Support Single- and multi-byte character code sets are supported. DIAGNOSTICS
name cannot be read. name is not an appropriate object file. EXAMPLES
Compare the sizes of the text, data, and bss sections for two versions of a program: SEE ALSO
System Tools: as(1) translate assembly code to machine code cc(1) invoke the HP-UX C compiler ld(1) invoke the link editor Miscellaneous: a.out(4) assembler, compiler, and linker output ar(4) archive format STANDARDS CONFORMANCE
size(1)
Man Page