Main Content

coder.make.BuildConfiguration.info

Class: coder.make.BuildConfiguration
Namespace: coder.make

Get information about build configuration

Syntax

h.info
OutputInfo = h.info

Description

h.info displays information about the coder.make.BuildConfiguration object in the MATLAB® Command Window.

OutputInfo = h.info returns information about the coder.make.BuildConfiguration object

Input Arguments

expand all

BuildConfiguration handle, specified as a coder.make.BuildConfiguration object.

Example: h

Output Arguments

expand all

Build configuration information, returned as a character vector.

Examples

The intel_tc.m file from Add Custom Toolchains to MATLAB® Coder™ Build Process, uses the following lines to display information about the BuildConfiguration property:

tc = intel_tc
cfg = tc.getBuildConfiguration('Faster Builds');
cfg.info
##############################################
# Build Configuration : Faster Builds
# Description         : Default settings for faster compile/link of code
##############################################

ARFLAGS              = /nologo 
CFLAGS               = $(cflags) $(CVARSFLAG) $(CFLAGS_ADDITIONAL) /c /Od 
CPPFLAGS             = $(cflags) $(CVARSFLAG) $(CPPFLAGS_ADDITIONAL) /c /Od 
DOWNLOAD_FLAGS        = 
EXECUTE_FLAGS         = 
LDFLAGS              = $(ldebug) $(conflags) $(LIBS_TOOLCHAIN) 
MEX_CFLAGS            = 
MEX_LDFLAGS           = 
MAKE_FLAGS           = -f $(MAKEFILE) 
SHAREDLIB_LDFLAGS    = $(ldebug) $(conflags) $(LIBS_TOOLCHAIN) -dll -def:$(DEF_FILE) 

Version History

Introduced in R2013a