Constructs alternate program names for compiler components. The program and directory path specified by this option is used in place of the regular compiler component or program.
>>- -q--path--=--+-c-+--:--path-------------------------------->< +-b-+ +-p-+ +-a-+ +-I-+ +-L-+ '-l-'
where the available compiler component and program names are:
Program | Description |
---|---|
c | Compiler front end |
b | Compiler back end |
p | Compiler preprocessor |
a | Assembler |
I | Interprocedural analysis - compile phase |
L | Interprocedural analysis - link phase |
l | Linkage editor |
The -qpath option overrides the -Fconfig_file, -t, and -B options.
To compile myprogram.C using a substitute xlc++ compiler in /lib/tmp/mine/ enter:
xlc++ myprogram.C -qpath=c:/lib/tmp/mine/
To compile myprogram.C using a substitute linker in /lib/tmp/mine/, enter:
xlc++ myprogram.C -qpath=l:/lib/tmp/mine/
Related information