qc_get_target_types qc_get_uri_dialog navigation bar

Table of Contents

qc_get_compilers

Returns a cell array of valid compilers for the given target type.

Syntax

list = qc_get_compilers(target_type)  % get compilers for specified target
list = qc_get_compilers               % get compilers for default target
    

Description

Returns a cell array of strings containing valid compilers for the given target type. If no target type is provided then it uses the default target type. Note that the values it returns may vary depending on the version of MATLAB and which compilers are actually installed on the system.

Parameters

target_type

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

Outputs

list

A cell array of strings containing valid compilers for the given target type.

Examples

list = qc_get_compilers('linux_verdex'); % Returns a list of valid compilers for the linux_verdex target
    

See Also

 

navigation bar