Unix Toolchain Options > Linker tab

Relocatable program

Generates an output file which is both relocatable and executable. Equivalent to using the -r and -a command line options.

No shared objects

Prevent shared objects from resolving library references of the form -lname.

Undefined symbols

Place these symbols as an undefined symbol in the symbol table. This is generally used to force the loading of a library symbol that otherwise might not be loaded. Equivalent to the -u sym command line option.

Abs objects to link against

Use only the symbols from these objects and do not include the contents of any sections from these objects in the output file. Equivalent to the -A objs command line option.

General linker options

These options are passed through to the linker.

Map file name

Specifies the file name for the link map file. Equivalent to the -map=name command line option.

Map file directory

Specifies the directory where the link map file will be generated.


Previous

Next



Copyright © 1999, Green Hills Software. All rights reserved.