qc_set_default_target_uri qc_set_default_compiler navigation bar

Table of Contents

qc_get_default_compiler

Returns the default compiler for the given target type.

Syntax

compiler = qc_get_default_compiler(target_type)  % compiler for specified target
compiler = qc_get_default_compiler               % compiler for default target
    

Description

Returns the default compiler used with the specified QUARC target type. If no target type is provided then it uses the default target type.

Parameters

target_type

An optional string argument containing a valid QUARC target type e.g. 'linux_verdex'.

Outputs

compiler

A string containing the default compiler for the given target type.

Examples

compiler = qc_get_default_compiler('linux_verdex'); % Returns default compiler for the linux_verdex target
    

See Also

 

navigation bar