Next | Prev | Up | Top | Contents | Index
Linking Assembly Language Programs
The assembler driver (as) does not run the linker. To link a program written in assembly language, use one of these procedures:
- Assemble and link using one of the other driver commands (cc, for example). The .s suffix of the assembly language source file causes the driver to invoke the assembler.
- Assemble the file using as; then link the resulting object file with the ld command.
Next | Prev | Up | Top | Contents | Index