Class: coder.make.BuildConfiguration
Package: coder.make
Get information about build configuration
h.info
OutputInfo = h.info
displays information
about the h
.infocoder.make.BuildConfiguration
object in
the MATLAB® Command Window.
OutputInfo =
returns
information about the h
.infocoder.make.BuildConfiguration
object
The intel_tc.m
file from Adding a Custom Toolchain, 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)