68000 Toolchain Options > Linker tab

Disable warnings

Disables warnings from the linker.

Extract common vars from libraries

Interpret uninitialized global variables defined with XCOM as definitions rather than references when processing libraries. Equivalent to -cd.

Do not create __ghs_begin symbols

Avoids outputting the COFF special symbols which are defined in the linker. Equivalent to -S7.

Relocatable program

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

No INTEGRITY shared objs

INTEGRITY specific: do not use shared objects (libraries are statically linked into each AddressSpace).

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.

Generate map file

Generate a link map file showing where symbols are located. Equivalent to the -map command line option.

Generate cross reference file

Generate a file containing cross-reference information. Equivalent to the -Mx command line option.

Sort symbols by address

Sorts symbols in the link map by address. Equivalent to the -Mn command line option.

Map file name

Specifies the filename of the output map file. Equivalent to using the -map=name command line option.

Cref file name

Specifies the filename of the output cross-reference information.

Map and cref directory

Specifies the directory in which the cross-reference and map files will be created.


Previous

Next



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