getStdLibInfo

Class: coder.BuildConfig
Package: coder

Get standard library information

Syntax

[linkLibPath,linkLibExt,execLibExt,libPrefix]= bldcfg.getStdLibInfo()

Description

[linkLibPath,linkLibExt,execLibExt,libPrefix]= bldcfg.getStdLibInfo() returns character vectors representing the:

  • Standard MATLAB® architecture-specific library path

  • Platform-specific library file extension for use at link time

  • Platform-specific library file extension for use at run time

  • Standard architecture-specific library name prefix

Input Arguments

bldcfg

coder.BuildConfig object.

Output Arguments

linkLibPath

Standard MATLAB architecture-specific library path specified as a character vector. The character vector can be empty.

linkLibExt

Platform-specific library file extension for use at link time, specified as a character vector. The value is one of '.lib','.dylib','.so', ''.

execLibExt

Platform-specific library file extension for use at run time, specified as a character vector. The value is one of '.dll','.dylib','.so', ''.

linkPrefix

Standard architecture-specific library name prefix, specified as a character vector. The character vector can be empty.