xcc (1) --- compile a C program with Prime compiler 08/27/84 | _U_s_a_g_e | xcc [-c] [-b[]] [-l[]] | _D_e_s_c_r_i_p_t_i_o_n | 'Xcc' compiles the C program in with Prime's C | compiler. The ".c" suffix on the source file name is | optional, although 'xcc' requires that the source code | reside in a file named with a ".c" suffix. If the source | file name specified in does not have a ".c" | suffix, 'xcc' will append a ".c" and attempt to process a | file with that name. The object code is stored in | ".b". If the "-b" command-line argument specifies | , 'xcc' stores the object code in a file with | that name. | A full description of the C language is beyond the scope of | this document. For complete information, refer to _T_h_e _C | _P_r_o_g_r_a_m_m_i_n_g _L_a_n_g_u_a_g_e by Brian W. Kernighan and Dennis M. | Ritchie (Prentice-Hall, 1978). | The following options are available: | -b Compile the source code into the object file named | "". 'Xcc' places the object code into | the file ".b" if this option or | is unspecified. | -c Invoke the "-CHECKOUT" option. This option causes | the compiler to parse the source code without | producing object code. This option suppresses the | "-b" and "-l" options. | -l Produce a listing in the file ".l". | If is unspecified, 'xcc' places the | listing in the file named ".l". | _E_x_a_m_p_l_e_s | xcc file.c | xcc prog.c -l prog_list -b bonzo.b | xcc test.c -c -l | _M_e_s_s_a_g_e_s | Numerous and self-explanatory. | _B_u_g_s | There is no way to tell Prime C programs about the Subsytem | standard input/output ports. xcc (1) - 1 - xcc (1) xcc (1) --- compile a C program with Prime compiler 08/27/84 | Does not give full access to the all the options available | with Prime's C compiler. | _S_e_e _A_l_s_o | ld (1), xccl (1), bind (3) xcc (1) - 2 - xcc (1)