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.
Creates an output file which is both relocatable and executable. Equivalent to using the -r and -a command line options.
INTEGRITY specific: do not use shared objects (libraries are statically linked into each AddressSpace).
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.
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.
These options are passed through to the linker.
Generate a link map file showing where symbols are located. Equivalent to the -map command line option.
Generate a file containing cross-reference information. Equivalent to the -Mx command line option.
Sorts symbols in the link map by address. Equivalent to the -Mn command line option.
Specifies the filename of the output map file. Equivalent to using the -map=name command line option.
Specifies the filename of the output cross-reference information.
Specifies the directory in which the cross-reference and map files will be created.