Page 7
A number of modifiers (mod) may immediately follow the p keyletter, to specify variations on an operation's behavior, as follows:
SEE ALSO binutils entry in info; The GNU Binary Utilities, Roland H. Pesch (October 1991); nm(1), anlib(1) COPYING Copyright " 1991 Free Software Foundation, Inc. Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be included in translations approved by the Free Software Foundation instead of in the original English. Cygnus Support, 5 November 1991 Page 8 archarchPrint architecture SYNOPSIS arch DESCRIPTION arch displays machine architecture type. SEE ALSO uname(1), uname(2) Debian GNU/Linux, 15 January 1994 GNU asGNU asThe portable GNU assembler SYNOPSISas [ _a | _al | -as ][_D ][_f ][_I path ][_K ][_L ][_o objfile ][_R ][_v ][_w ][__\|\ files ...] i960-only options: [ _ACA| _ACA A | _ACB | _ACC| _AKA| _AKB | _AKC| _AMC][_b ][_no-relax ] m680x0-only options: [ _l ][_mc68000| _mc68010| _mc68020] DESCRIPTION GNU as is really a family of assemblers. If you use (or have used) the GNU assembler on one architecture, you should find a fairly similar environment when you use it on another architecture. Each version has much in common with the others, including object file formats, most assembler directives (often called pseudo-ops) and assembler syntax. For information on the syntax and pseudo-ops used by GNU as, see as entry in info (or the manual Using as: The GNU Assembler). as is primarily intended to assemble the output of the GNU C compiler gcc for use by the linker ld. Nevertheless, we've tried to make as assemble correctly everything that the native assembler would. This doesn't mean as always uses the same syntax as another assembler for the same architecture; for example, we know of several incompatible versions of 680x0 assembly language syntax. Each time you run as, it assembles exactly one source program. The source program is made up of one or more files. (The standard input is also a file.) If as is given no filenames, it attempts to read one input file from the as standard input, which is normally your terminal. You may have to type Ctrl-D to tell as there is no more program to assemble. Use __ if you need to explicitly name the standard input file in your command line. as may write warnings and error messages to the standard error file (usually your terminal). This should not happen when as is run automatically by a compiler. Warnings report an assumption made so that as could keep assembling a flawed program; errors report a grave problem that stops the assembly. |