-t

Category

Compiler customization

@PROCESS

None.

Purpose

Applies the prefix specified by the -B option to the designated components.

Syntax

Read syntax diagramSkip visual syntax diagram
        .-------.   
        V       |   
>>- -t----+-a-+-+----------------------------------------------><
          +-b-+     
          +-c-+     
          +-d-+     
          +-E-+     
          +-F-+     
          +-h-+     
          +-I-+     
          +-l-+     
          '-z-'     

Defaults

The default paths for all of the compiler components are defined in the compiler configuration file.

Parameters

The following table shows the correspondence between -t parameters and the component names:

Parameter Description Component name
a The assembler as
b The low-level optimizer xlfcode
c The compiler front end xlfentry
d The disassembler dis
E The CreateExportList utility CreateExportList
F The C preprocessor cpp
h The array language optimizer xlfhot
I (uppercase i) The high-level optimizer, compile step ipa
l (lowercase L) The linker ld
z The binder bolt

Usage

Use this option with the -Bprefix option.

Examples

To compile myprogram.f so that the name /u/newones/compilers/ is prefixed to the compiler and assembler program names, enter:
xlf myprogram.f -B/u/newones/compilers/ -tca

Related information